Compare commits
3 Commits
feature/at
...
main
| Author | SHA1 | Date |
|---|---|---|
|
|
d241f04009 | |
|
|
cebebd906a | |
|
|
5fb2269f18 |
|
|
@ -11,6 +11,7 @@ __pycache__/
|
||||||
dist/
|
dist/
|
||||||
build/
|
build/
|
||||||
.eggs/
|
.eggs/
|
||||||
|
worktrees/
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
# Environment & Secrets
|
# Environment & Secrets
|
||||||
|
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
# Tarefa: Tradução e Revisão de Standards
|
|
||||||
|
|
||||||
Lista de arquivos de standards identificados em inglês que necessitam de tradução para PT-BR.
|
|
||||||
|
|
||||||
## Arquivos em `src/knowledge/standards/`
|
|
||||||
|
|
||||||
- [x] `business_standards.md`
|
|
||||||
- [x] `code_hygiene_standards.md`
|
|
||||||
- [x] `corporate_crisis_standards.md`
|
|
||||||
- [x] `customer_success_standards.md`
|
|
||||||
- [x] `database_standards.md`
|
|
||||||
- [x] `docker_standards.md`
|
|
||||||
- [x] `documentation_standards.md`
|
|
||||||
- [x] `execution_standards.md`
|
|
||||||
- [x] `git_standards.md`
|
|
||||||
- [x] `observability_standards.md`
|
|
||||||
- [x] `performance_standards.md`
|
|
||||||
- [x] `planning_standards.md`
|
|
||||||
- [x] `python_tool_standards.md`
|
|
||||||
- [x] `research_standards.md`
|
|
||||||
- [x] `sales_standards.md`
|
|
||||||
- [x] `security_standards.md`
|
|
||||||
- [x] `tech_incident_standards.md`
|
|
||||||
- [x] `triage_standards.md`
|
|
||||||
- [x] `ui_ux_standards.md`
|
|
||||||
- [x] `verification_standards.md`
|
|
||||||
|
|
@ -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/"
|
||||||
Loading…
Reference in New Issue