Typesense · Schema
ConversationModel
Full-Text SearchOpen SourceSearch EngineTypo ToleranceVector Search
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the conversation model. |
| model_name | string | Name of the LLM model. |
| system_prompt | string | System prompt for the model. |
| max_bytes | integer | Maximum context bytes. |
| history_collection | string | Collection storing conversation history. |
| ttl | integer | TTL for conversation history. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ConversationModel",
"title": "ConversationModel",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the conversation model."
},
"model_name": {
"type": "string",
"description": "Name of the LLM model."
},
"system_prompt": {
"type": "string",
"description": "System prompt for the model."
},
"max_bytes": {
"type": "integer",
"description": "Maximum context bytes."
},
"history_collection": {
"type": "string",
"description": "Collection storing conversation history."
},
"ttl": {
"type": "integer",
"description": "TTL for conversation history."
}
}
}