Skip to content
Merged
Changes from all commits
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
15 changes: 15 additions & 0 deletions fern/apis/fai/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -6261,6 +6261,21 @@
],
"description": "The model to use for the chat completion"
},
"max_tokens": {
"anyOf": [
{
"type": "integer",
"maximum": 1000.0,
"minimum": 100.0
},
{
"type": "null"
}
],
"title": "Max Tokens",
"description": "The maximum number of tokens to generate. Defaults to 1000. Note: setting a token count lower than 400 may result in incomplete responses. You can add a custom system prompt to let the model know the maximum token count it can use.",
"default": 1000
},
"system_prompt": {
"anyOf": [
{
Expand Down