Spaces:
Sleeping
Sleeping
File size: 22,571 Bytes
503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd 503d0e3 56972cd | 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | import os
import json
import time
import uuid
import asyncio
import httpx
from fastapi import FastAPI, Request
from fastapi.responses import JSONResponse, Response, StreamingResponse
from starlette.requests import ClientDisconnect
app = FastAPI()
# =====================================================
# CONFIG
# =====================================================
MASTER_API_KEY = os.getenv("MASTER_API_KEY", "olla")
# Default CF Workers AI model (can override via request body)
DEFAULT_CF_MODEL = os.getenv("DEFAULT_CF_MODEL", "@cf/meta/llama-3.3-70b-instruct-fp8-fast")
# =====================================================
# LOAD CF CREDENTIALS
# Format env: CF_1=account_id,api_key
# =====================================================
CF_ACCOUNTS = [] # list of {"account_id": ..., "api_key": ...}
for i in range(1, 101):
raw = os.getenv(f"CF_{i}")
if not raw:
continue
parts = raw.split(",", 1)
if len(parts) != 2:
print(f"[WARN] CF_{i} format invalid, expected 'account_id,api_key' β skipped")
continue
account_id, api_key = parts[0].strip(), parts[1].strip()
if account_id and api_key:
CF_ACCOUNTS.append({"account_id": account_id, "api_key": api_key})
if not CF_ACCOUNTS:
print("[WARN] No CF credentials found, inserting dummy")
CF_ACCOUNTS.append({"account_id": "dummy", "api_key": "dummy"})
# =====================================================
# KEY STATUS
# =====================================================
key_status = {}
for idx, acc in enumerate(CF_ACCOUNTS, 1):
kid = acc["account_id"]
key_status[kid] = {
"index": idx,
"healthy": True,
"busy": False,
"success": 0,
"fail": 0,
}
rr_index = 0
_key_lock = asyncio.Lock()
# =====================================================
# HELPERS
# =====================================================
def log(x):
print(f"[{time.strftime('%H:%M:%S')}] {x}", flush=True)
def sse(obj):
return "data: " + json.dumps(obj, ensure_ascii=False) + "\n\n"
def auth_ok(req: Request):
token = req.headers.get("Authorization", "").replace("Bearer ", "")
return token == MASTER_API_KEY
CF_AI_BASE = "https://api.cloudflare.com/client/v4/accounts/{account_id}/ai/v1"
def cf_base(account_id: str) -> str:
return CF_AI_BASE.format(account_id=account_id)
async def get_key(exclude=None):
global rr_index
if exclude is None:
exclude = set()
async with _key_lock:
for _ in range(len(CF_ACCOUNTS)):
rr_index = (rr_index + 1) % len(CF_ACCOUNTS)
acc = CF_ACCOUNTS[rr_index]
kid = acc["account_id"]
st = key_status[kid]
if st["healthy"] and not st["busy"] and kid not in exclude:
st["busy"] = True
return acc
return None
async def release_key(acc):
async with _key_lock:
kid = acc["account_id"]
if kid in key_status:
key_status[kid]["busy"] = False
async def mark_fail(acc):
async with _key_lock:
kid = acc["account_id"]
if kid in key_status:
key_status[kid]["fail"] += 1
async def mark_ok(acc):
async with _key_lock:
kid = acc["account_id"]
if kid in key_status:
key_status[kid]["success"] += 1
key_status[kid]["fail"] = 0
async def wait_for_free_key(exclude=None, max_wait=30.0, interval=0.3):
elapsed = 0.0
while elapsed < max_wait:
acc = await get_key(exclude)
if acc:
return acc
await asyncio.sleep(interval)
elapsed += interval
return None
def is_rate_limited_status(status_code: int) -> bool:
"""Cek rate limit hanya dari HTTP status code."""
return status_code == 429
def is_rate_limited_error_body(text: str) -> bool:
"""
Cek rate limit dari body HTTP error response.
HANYA dipakai pada non-200 HTTP response body atau JSON error object
β BUKAN pada token output model (supaya tidak false positive).
"""
t = text.lower()
return "rate limit" in t or "too many requests" in t or "usage limit" in t
def parse_sse_chunk(raw: str):
"""
Parse satu SSE data chunk dari CF (OpenAI-compatible format).
Return: (token, is_cf_error, error_text)
- token : string content untuk di-stream ke client (bisa "" kalau thinking/kosong)
- is_cf_error: True kalau chunk ini adalah error dari CF API, bukan output model
- error_text : teks error kalau is_cf_error=True
"""
try:
j = json.loads(raw)
except json.JSONDecodeError:
# Non-JSON β kemungkinan error text plain dari CF
return None, True, raw
# JSON dengan "error" key dan tanpa "choices" β error dari CF API
if "error" in j and "choices" not in j:
return None, True, json.dumps(j)
# Normal OpenAI delta chunk
choices = j.get("choices", [])
if not choices:
return "", False, ""
delta = choices[0].get("delta", {})
# content utama (None selama thinking phase di beberapa model)
content = delta.get("content") or ""
# Beberapa model thinking (Kimi K2, DeepSeek R1, dll) pakai reasoning_content
# untuk thinking tokens β ikutkan supaya thinking juga ke-stream
reasoning = delta.get("reasoning_content") or delta.get("reasoning") or ""
return reasoning + content, False, ""
# =====================================================
# ROOT
# =====================================================
@app.get("/")
async def root():
async with _key_lock:
safe = {}
for kid, v in key_status.items():
masked = kid[:6] + "****" + kid[-4:]
safe[masked] = {
"index": v["index"],
"healthy": v["healthy"],
"busy": v["busy"],
"success": v["success"],
"fail": v["fail"],
}
return {
"status": "ok",
"accounts": len(CF_ACCOUNTS),
"default_model": DEFAULT_CF_MODEL,
"detail": safe
}
# =====================================================
# /v1/models β live proxy langsung ke CF
# =====================================================
@app.get("/v1/models")
async def models(req: Request):
if not auth_ok(req):
return JSONResponse({"error": "Unauthorized"}, status_code=401)
acc = None
async with _key_lock:
for a in CF_ACCOUNTS:
if key_status[a["account_id"]]["healthy"]:
acc = a
break
if not acc:
return JSONResponse({"error": "No healthy accounts"}, status_code=503)
try:
async with httpx.AsyncClient(timeout=30) as client:
r = await client.get(
f"{cf_base(acc['account_id'])}/models",
headers={"Authorization": f"Bearer {acc['api_key']}"}
)
if r.status_code != 200:
return JSONResponse({"error": f"CF returned {r.status_code}: {r.text}"}, status_code=r.status_code)
return Response(content=r.content, media_type="application/json")
except Exception as e:
log(f"[/v1/models] exception: {e}")
return JSONResponse({"error": str(e)}, status_code=500)
# =====================================================
# /v1/chat/completions β OpenAI-compatible endpoint
# =====================================================
@app.post("/v1/chat/completions")
async def chat(req: Request):
if not auth_ok(req):
return JSONResponse({"error": "Unauthorized"}, status_code=401)
try:
body = await req.json()
except Exception:
return JSONResponse({"error": "Bad JSON"}, status_code=400)
is_stream = body.get("stream", False)
model = body.get("model", DEFAULT_CF_MODEL)
cf_body = {**body, "model": model}
# -----------------------------------------
# NON STREAM
# -----------------------------------------
if not is_stream:
tried = set()
for _ in range(len(CF_ACCOUNTS)):
acc = await wait_for_free_key(exclude=tried)
if not acc:
break
tried.add(acc["account_id"])
try:
async with httpx.AsyncClient(timeout=180) as client:
r = await client.post(
f"{cf_base(acc['account_id'])}/chat/completions",
json=cf_body,
headers={
"Authorization": f"Bearer {acc['api_key']}",
"Content-Type": "application/json",
}
)
# FIX: cek rate limit hanya dari HTTP status/error body, bukan dari model output
if is_rate_limited_status(r.status_code) or (
r.status_code != 200 and is_rate_limited_error_body(r.text)
):
log(f"Account {acc['account_id'][:8]}... rate limited (non-stream), trying next")
await mark_fail(acc)
continue
if r.status_code != 200:
log(f"Account {acc['account_id'][:8]}... HTTP {r.status_code}, trying next")
await mark_fail(acc)
continue
await mark_ok(acc)
return Response(content=r.content, media_type="application/json")
except Exception as e:
log(f"Account {acc['account_id'][:8]}... exception: {e}")
await mark_fail(acc)
finally:
await release_key(acc)
return JSONResponse({"error": "All accounts failed"}, status_code=500)
# -----------------------------------------
# STREAM β pipe OpenAI SSE langsung ke client
# -----------------------------------------
async def gen():
tried = set()
for _ in range(len(CF_ACCOUNTS)):
acc = await wait_for_free_key(exclude=tried)
if not acc:
break
tried.add(acc["account_id"])
try:
async with httpx.AsyncClient(timeout=None) as client:
async with client.stream(
"POST",
f"{cf_base(acc['account_id'])}/chat/completions",
json=cf_body,
headers={
"Authorization": f"Bearer {acc['api_key']}",
"Content-Type": "application/json",
}
) as r:
# FIX: hanya cek status code untuk rate limit di sini
if is_rate_limited_status(r.status_code):
log(f"Account {acc['account_id'][:8]}... rate limited (stream), trying next")
await mark_fail(acc)
continue
if r.status_code != 200:
log(f"Account {acc['account_id'][:8]}... HTTP {r.status_code} (stream), trying next")
await mark_fail(acc)
continue
hit_limit = False
async for line in r.aiter_lines():
if not line:
continue
if line.strip() == "data: [DONE]":
break
raw = line[6:] if line.startswith("data: ") else line
# FIX: gunakan parse_sse_chunk, cek error hanya pada CF error object
# β jangan cek kata "rate limit" pada konten model
_, is_cf_err, err_text = parse_sse_chunk(raw)
if is_cf_err and is_rate_limited_error_body(err_text):
log(f"Account {acc['account_id'][:8]}... mid-stream CF error, switching key")
hit_limit = True
break
yield line + "\n\n"
if hit_limit:
await mark_fail(acc)
continue
yield "data: [DONE]\n\n"
await mark_ok(acc)
return
except Exception as e:
log(f"Account {acc['account_id'][:8]}... stream exception: {e}")
await mark_fail(acc)
finally:
await release_key(acc)
yield sse({"error": "All accounts failed"})
yield "data: [DONE]\n\n"
return StreamingResponse(gen(), media_type="text/event-stream")
# =====================================================
# /v1/messages β Anthropic-compatible endpoint
# Konversi Anthropic format β CF OpenAI-compatible
# =====================================================
@app.post("/v1/messages")
async def anthropic(req: Request):
if not auth_ok(req):
return JSONResponse({"error": "Unauthorized"}, status_code=401)
try:
body = await req.json()
except ClientDisconnect:
return Response(status_code=499)
except Exception:
return JSONResponse({"error": "Bad JSON"}, status_code=400)
stream = body.get("stream", False)
model = body.get("model", DEFAULT_CF_MODEL)
max_tokens = body.get("max_tokens", 2048)
# Konversi Anthropic messages β OpenAI format
messages = []
if body.get("system"):
messages.append({"role": "system", "content": body["system"]})
for m in body.get("messages", []):
content = m.get("content", "")
if isinstance(content, list):
txt = "".join(x.get("text", "") for x in content if x.get("type") == "text")
content = txt
messages.append({"role": m["role"], "content": content})
cf_body = {
"model": model,
"messages": messages,
"max_tokens": max_tokens,
"stream": stream,
}
# -----------------------------------------
# NON STREAM
# -----------------------------------------
if not stream:
tried = set()
for _ in range(len(CF_ACCOUNTS)):
acc = await wait_for_free_key(exclude=tried)
if not acc:
break
tried.add(acc["account_id"])
try:
async with httpx.AsyncClient(timeout=180) as client:
r = await client.post(
f"{cf_base(acc['account_id'])}/chat/completions",
json=cf_body,
headers={
"Authorization": f"Bearer {acc['api_key']}",
"Content-Type": "application/json",
}
)
# FIX: cek rate limit hanya dari HTTP status/error body
if is_rate_limited_status(r.status_code) or (
r.status_code != 200 and is_rate_limited_error_body(r.text)
):
log(f"Account {acc['account_id'][:8]}... rate limited (anthropic non-stream), trying next")
await mark_fail(acc)
continue
if r.status_code != 200:
log(f"Account {acc['account_id'][:8]}... HTTP {r.status_code}, trying next")
await mark_fail(acc)
continue
data = r.json()
content_text = data["choices"][0]["message"]["content"] or ""
usage = data.get("usage", {})
out = {
"id": "msg_" + uuid.uuid4().hex[:10],
"type": "message",
"role": "assistant",
"model": model,
"content": [{"type": "text", "text": content_text}],
"stop_reason": "end_turn",
"stop_sequence": None,
"usage": {
"input_tokens": usage.get("prompt_tokens", 0),
"output_tokens": usage.get("completion_tokens", 0),
}
}
await mark_ok(acc)
return JSONResponse(out)
except Exception as e:
log(f"Account {acc['account_id'][:8]}... exception: {e}")
await mark_fail(acc)
finally:
await release_key(acc)
return JSONResponse({"error": "All accounts failed"}, status_code=500)
# -----------------------------------------
# STREAM β CF kirim OpenAI SSE, kita konversi ke Anthropic SSE
# -----------------------------------------
async def agen():
tried = set()
msg_id = "msg_" + uuid.uuid4().hex[:10]
envelope_sent = False
for _ in range(len(CF_ACCOUNTS)):
acc = await wait_for_free_key(exclude=tried)
if not acc:
break
tried.add(acc["account_id"])
try:
async with httpx.AsyncClient(timeout=None) as client:
async with client.stream(
"POST",
f"{cf_base(acc['account_id'])}/chat/completions",
json=cf_body,
headers={
"Authorization": f"Bearer {acc['api_key']}",
"Content-Type": "application/json",
}
) as r:
# FIX: hanya cek status code untuk rate limit
if is_rate_limited_status(r.status_code):
log(f"Account {acc['account_id'][:8]}... rate limited (anthropic stream), trying next")
await mark_fail(acc)
continue
if r.status_code != 200:
log(f"Account {acc['account_id'][:8]}... HTTP {r.status_code} (anthropic stream), trying next")
await mark_fail(acc)
continue
# Kirim Anthropic envelope hanya sekali
if not envelope_sent:
envelope_sent = True
yield sse({
"type": "message_start",
"message": {
"id": msg_id,
"type": "message",
"role": "assistant",
"model": model,
"content": [],
"stop_reason": None,
"stop_sequence": None,
"usage": {"input_tokens": 0, "output_tokens": 0}
}
})
# FIX: tambah "text": "" sesuai spec Anthropic
yield sse({
"type": "content_block_start",
"index": 0,
"content_block": {"type": "text", "text": ""}
})
hit_limit = False
async for line in r.aiter_lines():
if not line:
continue
if line.strip() == "data: [DONE]":
break
raw = line[6:] if line.startswith("data: ") else line
# =============================================
# FIX UTAMA: parse chunk dulu, baru cek error
# JANGAN cek is_rate_limited pada teks model!
# Ini penyebab response berhenti di tengah karena
# model nulis kata "rate limit" / "too many requests"
# dalam output / thinking-nya.
# =============================================
token, is_cf_err, err_text = parse_sse_chunk(raw)
if is_cf_err:
if is_rate_limited_error_body(err_text):
log(f"Account {acc['account_id'][:8]}... mid-stream CF rate limit, switching key")
hit_limit = True
else:
log(f"Account {acc['account_id'][:8]}... mid-stream CF error: {err_text[:120]}")
break
# token "" β thinking phase tanpa content, skip saja
if token:
yield sse({
"type": "content_block_delta",
"index": 0,
"delta": {"type": "text_delta", "text": token}
})
if hit_limit:
await mark_fail(acc)
continue
await mark_ok(acc)
break
except Exception as e:
log(f"Account {acc['account_id'][:8]}... agen exception: {e}")
await mark_fail(acc)
finally:
await release_key(acc)
# Tutup Anthropic SSE envelope
# Edge case: semua account gagal sebelum sempat kirim envelope
if not envelope_sent:
yield sse({
"type": "message_start",
"message": {
"id": msg_id, "type": "message", "role": "assistant",
"model": model, "content": [], "stop_reason": None,
"stop_sequence": None, "usage": {"input_tokens": 0, "output_tokens": 0}
}
})
yield sse({"type": "content_block_start", "index": 0, "content_block": {"type": "text", "text": ""}})
yield sse({"type": "content_block_stop", "index": 0})
yield sse({
"type": "message_delta",
"delta": {"stop_reason": "end_turn", "stop_sequence": None},
"usage": {"output_tokens": 0}
})
yield sse({"type": "message_stop"})
return StreamingResponse(agen(), media_type="text/event-stream") |