From 5fb2269f18443bcd298e946e2070aca1a0473e67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pedro=20Toledo?= Date: Thu, 8 Jan 2026 22:29:00 -0300 Subject: [PATCH] =?UTF-8?q?feat(athena):=20adicionar=20arquivo=20de=20conf?= =?UTF-8?q?igura=C3=A7=C3=A3o=20geral?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/athena.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/config/athena.py 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/"