Spaces:
Sleeping
Sleeping
| # 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 = [ | |
| "google/gemini-flash-1.5", | |
| "google/gemini-pro-1.5", # Fallback para o Pro caso o Flash falhe | |
| "mistralai/mistral-7b-instruct" | |
| ] | |
| OPENROUTER_API_URL = "https://openrouter.ai/api/v1/chat/completions" |