AniseF commited on
Commit
5f84799
·
verified ·
1 Parent(s): 8a7d023

Update config.py

Browse files
Files changed (1) hide show
  1. config.py +7 -4
config.py CHANGED
@@ -1,9 +1,12 @@
1
  # Certifique-se de que os nomes estão em MAIÚSCULAS e exatamente assim:
2
- SYNTAX_DOC_URL = "https://docs.google.com/document/d/1gxQbsAIek9CMDPa1Q0GICq-fmi-WRrS69_yEx6b206U/export?format=txt"
3
- MORPHOLOGY_DOC_URL = "https://docs.google.com/document/d/1hIal621Gso9BqfqKfB0ws8g8pBZSX-LBSTrge3M6pBM/export?format=txt"
4
- SEMANTICS_DOC_URL = "https://docs.google.com/document/d/1d_nFnKgF0siA0CxYHoDkmnWab3bszEn3_6AXXNLrzqM/export?format=txt"
5
 
6
- # Caso o seu código ainda peça estas variáveis por causa do estilo do Thomas:
 
 
 
 
 
 
7
  MODEL_PRIORITY = ["anthropic/claude-3.5-sonnet", "openai/gpt-4o", "google/gemini-flash-1.5"]
8
  OPENROUTER_API_URL = "https://openrouter.ai/api/v1/chat/completions"
9
 
 
1
  # Certifique-se de que os nomes estão em MAIÚSCULAS e exatamente assim:
 
 
 
2
 
3
+ # URLs dos documentos do Google (Exportação em TXT)
4
+ DOCS = {
5
+ "SYNTAX": "https://docs.google.com/document/d/1gxQbsAIek9CMDPalQOGlCq-fmi-WRrS69_yEx6b206U/export?format=txt",
6
+ "MORPHOLOGY": "https://docs.google.com/document/d/1hIal62lGso9BqfqKfB0ws8g8pBZsX-LBSTrge3M6pBM/export?format=txt",
7
+ "SEMANTICS": "https://docs.google.com/document/d/1d_nFnKgFOsiAoCxYHoDkmnWab3bszEn3_6AXXNLrzqM/export?format=txt"
8
+ }
9
+ # Caso o seu código ainda peça estas variáveis por causa do estilo do Thomas:
10
  MODEL_PRIORITY = ["anthropic/claude-3.5-sonnet", "openai/gpt-4o", "google/gemini-flash-1.5"]
11
  OPENROUTER_API_URL = "https://openrouter.ai/api/v1/chat/completions"
12