mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
ca5c6a1866
- Rename chat module to conversation with flow-based architecture - Move channelidentities into channel/identities subpackage - Add channel/route for routing logic - Add message service with event hub - Add MCP providers: container, directory, schedule - Refactor Feishu/Telegram adapters with directory and stream support - Add platform management page and channel badges in web UI - Update database schema for conversations, messages and channel routes - Add @memoh/shared package for cross-package type definitions
25 lines
834 B
Go
25 lines
834 B
Go
package settings
|
|
|
|
const (
|
|
DefaultMaxContextLoadTime = 24 * 60
|
|
DefaultLanguage = "auto"
|
|
)
|
|
|
|
type Settings struct {
|
|
ChatModelID string `json:"chat_model_id"`
|
|
MemoryModelID string `json:"memory_model_id"`
|
|
EmbeddingModelID string `json:"embedding_model_id"`
|
|
MaxContextLoadTime int `json:"max_context_load_time"`
|
|
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"`
|
|
MaxContextLoadTime *int `json:"max_context_load_time,omitempty"`
|
|
Language string `json:"language,omitempty"`
|
|
AllowGuest *bool `json:"allow_guest,omitempty"`
|
|
}
|