47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
# bot.conf – КОНФИГ БОТА-КЛИЕНТА
|
||
|
||
# XMPP
|
||
jid: "metabot@domain.ru"
|
||
password_env: "XMPP_PASSWORD"
|
||
resource: "bot"
|
||
|
||
# Адрес RAG-сервера (обязательно!)
|
||
rag_server_url: "http://localhost:8080"
|
||
|
||
# Статус
|
||
status_message: "📐 Методолог (ГОСТы, стандарты) готов"
|
||
|
||
# Администраторы
|
||
admin_jids:
|
||
- "admin@domain.ru"
|
||
|
||
# Промпты (пути относительно каталога профиля)
|
||
prompts:
|
||
system: "prompts/system.txt"
|
||
synthesis: "prompts/synthesis.txt"
|
||
intent: "prompts/intent_classify.txt"
|
||
expand: "prompts/expand.txt"
|
||
metrics: "prompts/metrics_extract.txt"
|
||
summary: "prompts/smart_summary.txt"
|
||
hierarchical_summary: "prompts/hierarchical_summary.txt"
|
||
consistency: "prompts/consistency_check.txt"
|
||
critique: "prompts/self_critique.txt"
|
||
spellcheck: "prompts/spellcheck.txt"
|
||
quality: "prompts/quality_criteria.txt"
|
||
generate_document: "prompts/generate_document.txt"
|
||
|
||
# Функции
|
||
features:
|
||
surgical_replace: true
|
||
voice_recognition: true
|
||
vision: true
|
||
archive_support: true
|
||
ocr: true
|
||
enable_intent_classification: true
|
||
enable_self_critique: true
|
||
mention_keyword: "методолог"
|
||
|
||
# Настройки динамических примеров (few-shot)
|
||
fewshot:
|
||
max_examples: 5 # для бота-методолога можно больше
|
||
examples_file: "data/fewshot_examples.json" |