GET
/
{baseId}
/
ai
/
config
shell
curl --request GET \
  --url https://app.teable.ai/api/%7BbaseId%7D/ai/config \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "llmProviders": [],
  "embeddingModel": "<string>",
  "translationModel": "<string>",
  "chatModel": {
    "lg": "<string>",
    "md": "<string>",
    "sm": "<string>",
    "ability": {
      "image": true,
      "pdf": true,
      "webSearch": true
    }
  },
  "capabilities": {
    "disableActions": [
      "<string>"
    ]
  },
  "modelDefinationMap": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

baseId
string
required

Response

200 - application/json

Returns the configuration of ai.

llmProviders
object[]
embeddingModel
string
translationModel
string
chatModel
object
capabilities
object
modelDefinationMap
object