| 138 | |
| 139 | @dataclass |
| 140 | class StorageBehaviorConfig: |
| 141 | store_anonymous: bool = True |
| 142 | max_conversations_per_thread: int = 100 |
| 143 | max_threads_per_user: int = 1000 |
| 144 | retention_days: int = 365 |
| 145 | compute_embeddings: bool = True |
| 146 | batch_size: int = 100 |
| 147 | enable_search: bool = True |
| 148 | auto_migrate_on_login: bool = True |
| 149 | max_migrate_conversations: int = 500 |
| 150 | |
| 151 | class AppConfig: |
| 152 | config_paths = ["config.yaml", "config_llm.yaml", "config_embedding.yaml", "config_retrieval.yaml", |
no outgoing calls
no test coverage detected