Letta · Schema
ProviderCheck
AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| provider_type | object | The type of the provider. |
| api_key | string | API key or secret key used for requests to the provider. |
| access_key | object | Access key used for requests to the provider. |
| region | object | Region used for requests to the provider. |
| base_url | object | Base URL used for requests to the provider. |
| api_version | object | API version used for requests to the provider. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProviderCheck",
"title": "ProviderCheck",
"properties": {
"provider_type": {
"$ref": "#/components/schemas/ProviderType",
"description": "The type of the provider."
},
"api_key": {
"type": "string",
"title": "Api Key",
"description": "API key or secret key used for requests to the provider."
},
"access_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Access Key",
"description": "Access key used for requests to the provider."
},
"region": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Region",
"description": "Region used for requests to the provider."
},
"base_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Base Url",
"description": "Base URL used for requests to the provider."
},
"api_version": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Api Version",
"description": "API version used for requests to the provider."
}
},
"type": "object",
"required": [
"provider_type",
"api_key"
]
}