AniseF commited on
Commit
b340cbe
·
verified ·
1 Parent(s): 44091c5

Update config.py

Browse files
Files changed (1) hide show
  1. config.py +6 -11
config.py CHANGED
@@ -1,19 +1,12 @@
1
- # Certifique-se de que os nomes estão em MAIÚSCULAS e exatamente assim:
2
-
3
  # config.py
 
 
4
  DOCS = {
5
  "Syntax": "https://docs.google.com/document/d/1gxQbsAIek9CMDPa1Q0GICq-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_nFnKgF0siA0CxYHoDkmnWab3bszEn3_6AXXNLrzqM/export?format=txt"
8
  }
9
 
10
- MODEL_PRIORITY_A = ["anthropic/claude-3.5-sonnet", "openai/gpt-4o"]
11
- MODEL_PRIORITY_B = ["google/gemini-flash-1.5", "mistralai/mistral-7b-instruct"]
12
- }
13
- # Caso o seu código ainda peça estas variáveis por causa do estilo do Thomas:
14
- # MODEL_PRIORITY = ["anthropic/claude-3.5-sonnet", "openai/gpt-4o", "google/gemini-flash-1.5"]
15
- # OPENROUTER_API_URL = "https://openrouter.ai/api/v1/chat/completions"
16
-
17
  # Listas de Fallback (OpenRouter)
18
  MODEL_PRIORITY_A = [
19
  "anthropic/claude-3.5-sonnet",
@@ -25,4 +18,6 @@ MODEL_PRIORITY_B = [
25
  "google/gemini-flash-1.5",
26
  "cohere/command-r",
27
  "mistralai/mistral-nemo"
28
- ]
 
 
 
 
 
1
  # config.py
2
+
3
+ # URLs dos documentos do Google (Exportação em TXT)
4
  DOCS = {
5
  "Syntax": "https://docs.google.com/document/d/1gxQbsAIek9CMDPa1Q0GICq-fmi-WRrS69_yEx6b206U/export?format=txt",
6
+ "Morphology": "https://docs.google.com/document/d/1hIal621Gso9BqfqKfB0ws8g8pBZSX-LBSTrge3M6pBM/export?format=txt",
7
  "Semantics": "https://docs.google.com/document/d/1d_nFnKgF0siA0CxYHoDkmnWab3bszEn3_6AXXNLrzqM/export?format=txt"
8
  }
9
 
 
 
 
 
 
 
 
10
  # Listas de Fallback (OpenRouter)
11
  MODEL_PRIORITY_A = [
12
  "anthropic/claude-3.5-sonnet",
 
18
  "google/gemini-flash-1.5",
19
  "cohere/command-r",
20
  "mistralai/mistral-nemo"
21
+ ]
22
+
23
+ OPENROUTER_API_URL = "https://openrouter.ai/api/v1/chat/completions"