AniseF commited on
Commit
d48a281
·
verified ·
1 Parent(s): 76ab379

Upload config.py

Browse files
Files changed (1) hide show
  1. config.py +19 -0
config.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # URLs dos documentos do Google (Exportação em TXT)
2
+ DOCS = {
3
+ "SYNTAX": "https://docs.google.com/document/d/1gxQbsAIek9CMDPalQOGlCq-fmi-WRrS69_yEx6b206U/export?format=txt",
4
+ "MORPHOLOGY": "https://docs.google.com/document/d/1hIal62lGso9BqfqKfB0ws8g8pBZsX-LBSTrge3M6pBM/export?format=txt",
5
+ "SEMANTICS": "https://docs.google.com/document/d/1d_nFnKgFOsiAoCxYHoDkmnWab3bszEn3_6AXXNLrzqM/export?format=txt"
6
+ }
7
+
8
+ # Listas de Fallback (OpenRouter)
9
+ MODEL_PRIORITY_A = [
10
+ "anthropic/claude-3.5-sonnet",
11
+ "openai/gpt-4o",
12
+ "google/gemini-pro-1.5"
13
+ ]
14
+
15
+ MODEL_PRIORITY_B = [
16
+ "google/gemini-flash-1.5",
17
+ "cohere/command-r",
18
+ "mistralai/mistral-nemo"
19
+ ]