File size: 16,134 Bytes
a98fd5a | 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 | """OpenAI-compatible proxy server for chat.z.ai."""
from __future__ import annotations
import asyncio
import json
import os
import time
import uuid
from contextlib import asynccontextmanager
import uvicorn
from fastapi import FastAPI, Request
from fastapi.responses import JSONResponse, StreamingResponse
from main import ZaiClient
# ββ Session Pool βββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _env_float(name: str, default: float) -> float:
raw = os.getenv(name)
if raw is None:
return default
try:
return float(raw)
except ValueError:
return default
AUTH_REFRESH_MIN_INTERVAL_SECONDS = _env_float(
"ZAI_AUTH_REFRESH_MIN_INTERVAL_SECONDS", 2.0
)
class SessionPool:
"""Manages a single ZaiClient instance with automatic auth refresh."""
def __init__(self) -> None:
self._client = ZaiClient()
self._lock = asyncio.Lock()
self._authed = False
self._last_auth_refresh_at = 0.0
self._refresh_min_interval = max(0.0, AUTH_REFRESH_MIN_INTERVAL_SECONDS)
async def close(self) -> None:
await self._client.close()
async def ensure_auth(self) -> None:
"""Authenticate if not already done."""
if self._authed:
return
async with self._lock:
if self._authed:
return
await self._client.auth_as_guest()
self._authed = True
self._last_auth_refresh_at = time.monotonic()
async def refresh_auth(self, *, force: bool = False) -> None:
"""Refresh the guest token with single-flight behavior."""
now = time.monotonic()
if (
not force
and self._authed
and now - self._last_auth_refresh_at < self._refresh_min_interval
):
return
async with self._lock:
now = time.monotonic()
if (
not force
and self._authed
and now - self._last_auth_refresh_at < self._refresh_min_interval
):
return
await self._client.auth_as_guest()
self._authed = True
self._last_auth_refresh_at = time.monotonic()
async def get_models(self) -> list | dict:
await self.ensure_auth()
return await self._client.get_models()
async def create_chat(self, user_message: str, model: str) -> dict:
await self.ensure_auth()
return await self._client.create_chat(user_message, model)
def chat_completions(
self,
chat_id: str,
messages: list[dict],
prompt: str,
*,
model: str,
tools: list[dict] | None = None,
):
return self._client.chat_completions(
chat_id=chat_id,
messages=messages,
prompt=prompt,
model=model,
tools=tools,
)
pool = SessionPool()
# ββ FastAPI app ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@asynccontextmanager
async def lifespan(_app: FastAPI):
await pool.ensure_auth()
yield
await pool.close()
app = FastAPI(lifespan=lifespan)
# ββ Helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _make_id() -> str:
return f"chatcmpl-{uuid.uuid4().hex[:29]}"
def _openai_chunk(
completion_id: str,
model: str,
*,
content: str | None = None,
reasoning_content: str | None = None,
finish_reason: str | None = None,
) -> dict:
delta: dict = {}
if content is not None:
delta["content"] = content
if reasoning_content is not None:
delta["reasoning_content"] = reasoning_content
return {
"id": completion_id,
"object": "chat.completion.chunk",
"created": int(time.time()),
"model": model,
"choices": [
{
"index": 0,
"delta": delta,
"finish_reason": finish_reason,
}
],
}
def _openai_completion(
completion_id: str,
model: str,
content: str,
reasoning_content: str,
) -> dict:
message: dict = {"role": "assistant", "content": content}
if reasoning_content:
message["reasoning_content"] = reasoning_content
return {
"id": completion_id,
"object": "chat.completion",
"created": int(time.time()),
"model": model,
"choices": [
{
"index": 0,
"message": message,
"finish_reason": "stop",
}
],
"usage": {
"prompt_tokens": 0,
"completion_tokens": 0,
"total_tokens": 0,
},
}
# ββ /v1/models βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/v1/models")
async def list_models():
models_resp = await pool.get_models()
# Normalize to list
if isinstance(models_resp, dict) and "data" in models_resp:
models_list = models_resp["data"]
elif isinstance(models_resp, list):
models_list = models_resp
else:
models_list = []
data = []
for m in models_list:
mid = m.get("id") or m.get("name", "unknown")
data.append(
{
"id": mid,
"object": "model",
"created": 0,
"owned_by": "z.ai",
}
)
return {"object": "list", "data": data}
# ββ /v1/chat/completions ββββββββββββββββββββββββββββββββββββββββββββ
async def _do_request(
messages: list[dict],
model: str,
prompt: str,
tools: list[dict] | None = None,
):
"""Create a new chat and return (chat_id, async generator).
Raises on Zai errors so the caller can retry.
"""
chat = await pool.create_chat(prompt, model)
chat_id = chat["id"]
gen = pool.chat_completions(
chat_id=chat_id,
messages=messages,
prompt=prompt,
model=model,
tools=tools,
)
return chat_id, gen
async def _stream_response(
messages: list[dict],
model: str,
prompt: str,
tools: list[dict] | None = None,
):
"""SSE generator with one retry on error."""
completion_id = _make_id()
retried = False
while True:
try:
_chat_id, gen = await _do_request(messages, model, prompt, tools)
# Send initial role chunk
role_chunk = {
"id": completion_id,
"object": "chat.completion.chunk",
"created": int(time.time()),
"model": model,
"choices": [
{
"index": 0,
"delta": {"role": "assistant"},
"finish_reason": None,
}
],
}
yield f"data: {json.dumps(role_chunk, ensure_ascii=False)}\n\n"
tool_call_idx = 0
async for data in gen:
phase = data.get("phase", "")
delta = data.get("delta_content", "")
# Tool call events from Zai
if data.get("tool_calls"):
for tc in data["tool_calls"]:
tc_chunk = {
"id": completion_id,
"object": "chat.completion.chunk",
"created": int(time.time()),
"model": model,
"choices": [
{
"index": 0,
"delta": {
"tool_calls": [
{
"index": tool_call_idx,
"id": tc.get("id", f"call_{uuid.uuid4().hex[:24]}"),
"type": "function",
"function": {
"name": tc.get("function", {}).get("name", ""),
"arguments": tc.get("function", {}).get("arguments", ""),
},
}
]
},
"finish_reason": None,
}
],
}
yield f"data: {json.dumps(tc_chunk, ensure_ascii=False)}\n\n"
tool_call_idx += 1
elif phase == "thinking" and delta:
chunk = _openai_chunk(
completion_id, model, reasoning_content=delta
)
yield f"data: {json.dumps(chunk, ensure_ascii=False)}\n\n"
elif phase == "answer" and delta:
chunk = _openai_chunk(completion_id, model, content=delta)
yield f"data: {json.dumps(chunk, ensure_ascii=False)}\n\n"
elif phase == "done":
break
# Send finish chunk
finish_reason = "tool_calls" if tool_call_idx > 0 else "stop"
finish_chunk = _openai_chunk(
completion_id, model, finish_reason=finish_reason
)
yield f"data: {json.dumps(finish_chunk, ensure_ascii=False)}\n\n"
yield "data: [DONE]\n\n"
return
except Exception:
if retried:
# Already retried once β yield error and stop
error = {
"error": {
"message": "Upstream Zai error after retry",
"type": "server_error",
}
}
yield f"data: {json.dumps(error)}\n\n"
yield "data: [DONE]\n\n"
return
retried = True
await pool.refresh_auth()
# Loop back and retry
async def _sync_response(
messages: list[dict],
model: str,
prompt: str,
tools: list[dict] | None = None,
) -> dict:
"""Non-streaming response with one retry on error."""
completion_id = _make_id()
for attempt in range(2):
try:
_chat_id, gen = await _do_request(messages, model, prompt, tools)
content_parts: list[str] = []
reasoning_parts: list[str] = []
tool_calls: list[dict] = []
async for data in gen:
phase = data.get("phase", "")
delta = data.get("delta_content", "")
if data.get("tool_calls"):
for tc in data["tool_calls"]:
tool_calls.append(
{
"id": tc.get("id", f"call_{uuid.uuid4().hex[:24]}"),
"type": "function",
"function": {
"name": tc.get("function", {}).get("name", ""),
"arguments": tc.get("function", {}).get("arguments", ""),
},
}
)
elif phase == "thinking" and delta:
reasoning_parts.append(delta)
elif phase == "answer" and delta:
content_parts.append(delta)
elif phase == "done":
break
if tool_calls:
message: dict = {"role": "assistant", "content": None, "tool_calls": tool_calls}
if reasoning_parts:
message["reasoning_content"] = "".join(reasoning_parts)
return {
"id": completion_id,
"object": "chat.completion",
"created": int(time.time()),
"model": model,
"choices": [
{
"index": 0,
"message": message,
"finish_reason": "tool_calls",
}
],
"usage": {
"prompt_tokens": 0,
"completion_tokens": 0,
"total_tokens": 0,
},
}
return _openai_completion(
completion_id,
model,
"".join(content_parts),
"".join(reasoning_parts),
)
except Exception:
if attempt == 0:
await pool.refresh_auth()
continue
return {
"error": {
"message": "Upstream Zai error after retry",
"type": "server_error",
}
}
# Unreachable, but satisfy type checker
return {"error": {"message": "Unexpected error", "type": "server_error"}}
@app.post("/v1/chat/completions")
async def chat_completions(request: Request):
body = await request.json()
model: str = body.get("model", "glm-5")
messages: list[dict] = body.get("messages", [])
stream: bool = body.get("stream", False)
tools: list[dict] | None = body.get("tools")
# Extract the last user message as the prompt for signature
prompt = ""
for msg in reversed(messages):
if msg.get("role") == "user":
content = msg.get("content", "")
if isinstance(content, str):
prompt = content
elif isinstance(content, list):
# Handle multimodal content array
prompt = " ".join(
p.get("text", "")
for p in content
if isinstance(p, dict) and p.get("type") == "text"
)
break
# Zai ignores multi-turn context β flatten all messages into a single
# user message with <ROLE> tags so the model sees the full conversation.
parts: list[str] = []
for msg in messages:
role = msg.get("role", "user")
content = msg.get("content", "") or ""
parts.append(f"<{role.upper()}>{content}</{role.upper()}>")
flat_content = "\n".join(parts)
messages = [{"role": "user", "content": flat_content}]
if not prompt:
return JSONResponse(
status_code=400,
content={
"error": {
"message": "No user message found in messages",
"type": "invalid_request_error",
}
},
)
if stream:
return StreamingResponse(
_stream_response(messages, model, prompt, tools),
media_type="text/event-stream",
headers={
"Cache-Control": "no-cache",
"Connection": "keep-alive",
"X-Accel-Buffering": "no",
},
)
else:
result = await _sync_response(messages, model, prompt, tools)
if "error" in result:
return JSONResponse(status_code=502, content=result)
return result
# ββ Entry point ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)
|