File size: 853 Bytes
599c0f8
5f84799
cb9a05d
 
 
599c0f8
 
d48a281
 
 
 
 
 
 
a283791
d48a281
9fdc1fa
 
 
 
 
 
b340cbe
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# config.py
DOCS = {
    "Syntax": "https://docs.google.com/document/d/1gxQbsAIek9CMDPalQOGlCq-fmi-WRrS69_yEx6b206U/export?format=txt",
    "Morphology": "https://docs.google.com/document/d/1hIal62lGso9BqfqKfB0ws8g8pBZsX-LBSTrge3M6pBM/export?format=txt",
    "Semantics": "https://docs.google.com/document/d/1d_nFnKgFOsiAoCxYHoDkmnWab3bszEn3_6AXXNLrzqM/export?format=txt"
}

# Listas de Fallback (OpenRouter)
MODEL_PRIORITY_A = [
    "anthropic/claude-3.5-sonnet", 
    "openai/gpt-4o",
    "google/gemini-pro-1.5"
]

# No config.py, mude a lista B para:
MODEL_PRIORITY_B = [
    "anthropic/claude-3-haiku",
    "openai/gpt-3.5-turbo",
    "nousresearch/nous-hermes-2-mistral",
    "meta-llama/llama-3-8b-instruct",
    "mistralai/mistral-7b-instruct",
    "gryphe/mythomax-l2-13b"
]

OPENROUTER_API_URL = "https://openrouter.ai/api/v1/chat/completions"