mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
c591af14b0
* feat: bot inbox * feat: unified header * fix: missing tool_call usage * feat: add group name in header
32 lines
1.2 KiB
Go
32 lines
1.2 KiB
Go
package settings
|
|
|
|
const (
|
|
DefaultMaxContextLoadTime = 24 * 60
|
|
DefaultMaxInboxItems = 50
|
|
DefaultLanguage = "auto"
|
|
)
|
|
|
|
type Settings struct {
|
|
ChatModelID string `json:"chat_model_id"`
|
|
MemoryModelID string `json:"memory_model_id"`
|
|
EmbeddingModelID string `json:"embedding_model_id"`
|
|
SearchProviderID string `json:"search_provider_id"`
|
|
MaxContextLoadTime int `json:"max_context_load_time"`
|
|
MaxContextTokens int `json:"max_context_tokens"`
|
|
MaxInboxItems int `json:"max_inbox_items"`
|
|
Language string `json:"language"`
|
|
AllowGuest bool `json:"allow_guest"`
|
|
}
|
|
|
|
type UpsertRequest struct {
|
|
ChatModelID string `json:"chat_model_id,omitempty"`
|
|
MemoryModelID string `json:"memory_model_id,omitempty"`
|
|
EmbeddingModelID string `json:"embedding_model_id,omitempty"`
|
|
SearchProviderID string `json:"search_provider_id,omitempty"`
|
|
MaxContextLoadTime *int `json:"max_context_load_time,omitempty"`
|
|
MaxContextTokens *int `json:"max_context_tokens,omitempty"`
|
|
MaxInboxItems *int `json:"max_inbox_items,omitempty"`
|
|
Language string `json:"language,omitempty"`
|
|
AllowGuest *bool `json:"allow_guest,omitempty"`
|
|
}
|