Letta · Schema
ProviderUpdate
AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| 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/ProviderUpdate",
"title": "ProviderUpdate",
"properties": {
"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."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"api_key"
]
}