diff --git a/src/config/athena.py b/src/config/athena.py new file mode 100644 index 0000000..3a100e7 --- /dev/null +++ b/src/config/athena.py @@ -0,0 +1,15 @@ + +""" +Athena Configuration Constants +Centralizes configuration for the Athena system. +""" + +# Routing Thresholds +ROUTING_THRESHOLD = 0.75 # Limiar para detecção de Out-of-Domain +RAG_CONFIDENCE_THRESHOLD = 0.6 # Limiar para evitar alucinação/respostas de baixa confiança + +# Models +SAFETY_MODEL = "llama-guard-3" + +# Paths +PATH_GAP_LOGS = ".gemini/knowledge_gaps/"