Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -10,29 +10,30 @@ KEYS = [os.getenv(f"OR_KEY_{i}") for i in range(1, 16)]
|
|
| 10 |
KEYS = [k for k in KEYS if k and k.strip()]
|
| 11 |
|
| 12 |
# --- MAPEAMENTO UNIFICADO (Dicionário de Tradução) ---
|
| 13 |
-
#
|
| 14 |
MODEL_MAP = {
|
|
|
|
| 15 |
"aria_med": "google/gemini-2.5-pro:free",
|
| 16 |
-
"aria_logic": "qwen/
|
| 17 |
-
"aria_vision": "nvidia/nemotron-nano-12b-2-vl:free",
|
| 18 |
"aria_brain": "meta-llama/llama-3.3-70b-instruct:free",
|
| 19 |
-
"aria_default": "
|
| 20 |
}
|
| 21 |
|
| 22 |
@app.get("/", response_class=HTMLResponse)
|
| 23 |
async def root():
|
| 24 |
-
# Painel de controlo visual
|
| 25 |
status_color = "#00ff88" if KEYS else "#ff4444"
|
| 26 |
status_text = "🟢 SISTEMA OPERACIONAL" if KEYS else "🔴 FALHA NAS CHAVES"
|
| 27 |
|
| 28 |
return f"""
|
| 29 |
<body style='background:#0a0a0a; color:{status_color}; font-family:sans-serif; text-align:center; padding-top:50px;'>
|
| 30 |
-
<div style='border: 2px solid {status_color}; display:inline-block; padding:30px; border-radius:15px;'>
|
| 31 |
-
<h1>ARIA SOVEREIGN SHIELD V2.5</h1>
|
| 32 |
<p style='font-size:1.5em;'>Chaves Ativas: <strong>{len(KEYS)}</strong></p>
|
| 33 |
<p style='color:#777;'>Localização: Beira, Sofala, Moçambique</p>
|
| 34 |
-
<hr style='border:0.5px solid #333;'>
|
| 35 |
-
<p style='font-weight:bold;'>Status: {status_text}</p>
|
|
|
|
| 36 |
</div>
|
| 37 |
</body>
|
| 38 |
"""
|
|
@@ -40,43 +41,44 @@ async def root():
|
|
| 40 |
@app.post("/v1/chat/completions")
|
| 41 |
async def proxy(request: Request):
|
| 42 |
if not KEYS:
|
| 43 |
-
return Response(content='{{"error": "CEO, as
|
| 44 |
|
| 45 |
try:
|
| 46 |
body = await request.json()
|
| 47 |
model_requested = body.get("model", "")
|
| 48 |
|
| 49 |
-
# 1. LIMPEZA: Remove o prefixo "fortune/" se ele
|
| 50 |
clean_model = model_requested.replace("fortune/", "")
|
| 51 |
|
| 52 |
-
# 2. TRADUÇÃO: Busca o ID real no mapa ou usa o nome
|
| 53 |
target_model = MODEL_MAP.get(clean_model, clean_model)
|
| 54 |
body["model"] = target_model
|
| 55 |
|
| 56 |
-
# 3. ROTAÇÃO: Escolhe uma das 15 chaves aleatoriamente para evitar
|
| 57 |
selected_key = random.choice(KEYS)
|
| 58 |
|
| 59 |
headers = {
|
| 60 |
"Authorization": f"Bearer {selected_key}",
|
| 61 |
-
"HTTP-Referer": "https://github.com/Fortnee/Ariaaa",
|
|
|
|
| 62 |
"Content-Type": "application/json"
|
| 63 |
}
|
| 64 |
|
| 65 |
-
# 4.
|
| 66 |
async with httpx.AsyncClient() as client:
|
| 67 |
response = await client.post(
|
| 68 |
"https://openrouter.ai/api/v1/chat/completions",
|
| 69 |
json=body,
|
| 70 |
headers=headers,
|
| 71 |
-
timeout=
|
| 72 |
)
|
| 73 |
return Response(content=response.content, status_code=response.status_code)
|
| 74 |
|
| 75 |
except Exception as e:
|
| 76 |
-
return Response(content=f'{{"error": "Falha na Ponte: {str(e)}"}}', status_code=500)
|
| 77 |
|
| 78 |
-
# --- IGNIÇÃO DO SERVIDOR
|
| 79 |
-
#
|
| 80 |
if __name__ == "__main__":
|
| 81 |
-
print("🚀 Iniciando Escudo Soberano da Aria...")
|
| 82 |
uvicorn.run(app, host="0.0.0.0", port=7860)
|
|
|
|
| 10 |
KEYS = [k for k in KEYS if k and k.strip()]
|
| 11 |
|
| 12 |
# --- MAPEAMENTO UNIFICADO (Dicionário de Tradução) ---
|
| 13 |
+
# Tradução dos apelidos de comando para os IDs oficiais do OpenRouter
|
| 14 |
MODEL_MAP = {
|
| 15 |
+
"aria_air": "z-ai/glm-4.5-air:free",
|
| 16 |
"aria_med": "google/gemini-2.5-pro:free",
|
| 17 |
+
"aria_logic": "qwen/qwen-3-coder-480b:free",
|
|
|
|
| 18 |
"aria_brain": "meta-llama/llama-3.3-70b-instruct:free",
|
| 19 |
+
"aria_default": "z-ai/glm-4.5-air:free" # GLM 4.5 Air definido como padrão
|
| 20 |
}
|
| 21 |
|
| 22 |
@app.get("/", response_class=HTMLResponse)
|
| 23 |
async def root():
|
| 24 |
+
# Painel de controlo visual
|
| 25 |
status_color = "#00ff88" if KEYS else "#ff4444"
|
| 26 |
status_text = "🟢 SISTEMA OPERACIONAL" if KEYS else "🔴 FALHA NAS CHAVES"
|
| 27 |
|
| 28 |
return f"""
|
| 29 |
<body style='background:#0a0a0a; color:{status_color}; font-family:sans-serif; text-align:center; padding-top:50px;'>
|
| 30 |
+
<div style='border: 2px solid {status_color}; display:inline-block; padding:30px; border-radius:15px; background: rgba(0,0,0,0.5);'>
|
| 31 |
+
<h1 style='letter-spacing: 2px;'>ARIA SOVEREIGN SHIELD V2.5.1</h1>
|
| 32 |
<p style='font-size:1.5em;'>Chaves Ativas: <strong>{len(KEYS)}</strong></p>
|
| 33 |
<p style='color:#777;'>Localização: Beira, Sofala, Moçambique</p>
|
| 34 |
+
<hr style='border:0.5px solid #333; margin: 20px 0;'>
|
| 35 |
+
<p style='font-weight:bold; font-size:1.2em;'>Status: {status_text}</p>
|
| 36 |
+
<p style='color:#555; font-size:0.9em;'>Motor Padrão: GLM 4.5 Air (131K Context)</p>
|
| 37 |
</div>
|
| 38 |
</body>
|
| 39 |
"""
|
|
|
|
| 41 |
@app.post("/v1/chat/completions")
|
| 42 |
async def proxy(request: Request):
|
| 43 |
if not KEYS:
|
| 44 |
+
return Response(content='{{"error": "CEO, as chaves do arsenal não foram detetadas!"}}', status_code=500)
|
| 45 |
|
| 46 |
try:
|
| 47 |
body = await request.json()
|
| 48 |
model_requested = body.get("model", "")
|
| 49 |
|
| 50 |
+
# 1. LIMPEZA: Remove o prefixo "fortune/" se ele for enviado pela Aria
|
| 51 |
clean_model = model_requested.replace("fortune/", "")
|
| 52 |
|
| 53 |
+
# 2. TRADUÇÃO: Busca o ID real no mapa (como aria_air) ou usa o nome direto
|
| 54 |
target_model = MODEL_MAP.get(clean_model, clean_model)
|
| 55 |
body["model"] = target_model
|
| 56 |
|
| 57 |
+
# 3. ROTAÇÃO: Escolhe uma das 15 chaves aleatoriamente para evitar Rate Limits
|
| 58 |
selected_key = random.choice(KEYS)
|
| 59 |
|
| 60 |
headers = {
|
| 61 |
"Authorization": f"Bearer {selected_key}",
|
| 62 |
+
"HTTP-Referer": "https://github.com/Fortnee/Ariaaa",
|
| 63 |
+
"X-Title": "Aria Sovereign System",
|
| 64 |
"Content-Type": "application/json"
|
| 65 |
}
|
| 66 |
|
| 67 |
+
# 4. EXECUÇÃO: Envia o pedido para o OpenRouter
|
| 68 |
async with httpx.AsyncClient() as client:
|
| 69 |
response = await client.post(
|
| 70 |
"https://openrouter.ai/api/v1/chat/completions",
|
| 71 |
json=body,
|
| 72 |
headers=headers,
|
| 73 |
+
timeout=120.0 # Timeout estendido para o contexto de 131K
|
| 74 |
)
|
| 75 |
return Response(content=response.content, status_code=response.status_code)
|
| 76 |
|
| 77 |
except Exception as e:
|
| 78 |
+
return Response(content=f'{{"error": "Falha crítica na Ponte: {str(e)}"}}', status_code=500)
|
| 79 |
|
| 80 |
+
# --- IGNIÇÃO DO SERVIDOR ---
|
| 81 |
+
# Garante que o servidor uvicorn permaneça ativo na porta padrão do Hugging Face
|
| 82 |
if __name__ == "__main__":
|
| 83 |
+
print("🚀 Iniciando Escudo Soberano da Aria (Edição GLM Air)...")
|
| 84 |
uvicorn.run(app, host="0.0.0.0", port=7860)
|