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 = [ | |
| "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" |