The Input Schema defines the structure of the data passed to your AI/ML model during inference. This ensures that inputs sent from your business applications or workflows match the format expected by your model endpoint. AI Squared provides a no-code interface to configure input fields, set value types, and ensure compatibility with model requirements.Documentation Index
Fetch the complete documentation index at: https://docs.squared.ai/llms.txt
Use this file to discover all available pages before exploring further.
Why Input Schema Matters
- Ensures data integrity before reaching the model
- Maps business inputs to model parameters
- Prevents inference failures due to malformed payloads
- Enables dynamic or static parameter configuration
Defining Input Fields
Each input field includes the following:| Field | Description |
|---|---|
| Name | The key name expected in your model’s request payload |
| Type | The data type: String, Integer, Float, or Boolean |
| Value Type | Dynamic (changes with each query/request) or Static (fixed value) |
Static vs. Dynamic Values
- Static: Hardcoded values used for all model requests. Example:
country: "US" - Dynamic: Values sourced from the business application or runtime context. Example:
user_idpassed from Salesforce record