Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,120 changes: 1,076 additions & 44 deletions docs/snippets/schemas/v3/index.schema.mdx

Large diffs are not rendered by default.

1,120 changes: 1,076 additions & 44 deletions docs/snippets/schemas/v3/languageModel.schema.mdx

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions docs/snippets/schemas/v3/shared.schema.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,49 @@
}
},
"additionalProperties": false
},
"LanguageModelHeaders": {
"type": "object",
"description": "Optional headers to use with the model.",
"patternProperties": {
"^[a-zA-Z0-9_-]+$": {
"anyOf": [
{
"type": "string"
},
{
"anyOf": [
{
"type": "object",
"properties": {
"secret": {
"type": "string",
"description": "The name of the secret that contains the token."
}
},
"required": [
"secret"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"env": {
"type": "string",
"description": "The name of the environment variable that contains the token. Only supported in declarative connection configs."
}
},
"required": [
"env"
],
"additionalProperties": false
}
]
}
]
}
}
}
}
}
Expand Down
Loading