Skip to content

Instantly share code, notes, and snippets.

@szmeku
Created May 19, 2026 22:11
Show Gist options
  • Select an option

  • Save szmeku/0807193d929c5c5397c96e7142e23b81 to your computer and use it in GitHub Desktop.

Select an option

Save szmeku/0807193d929c5c5397c96e7142e23b81 to your computer and use it in GitHub Desktop.
OpenRouter wire dumps (sts-go matcher 2026-05-19) — stall + success bodies + headers for sts-go-llm-matcher follow-up
{
"capture_ts": "20260519T220436.549938667Z",
"headers": {
"Access-Control-Allow-Origin": [
"*"
],
"Access-Control-Expose-Headers": [
"X-Generation-Id,cf-ray"
],
"Cf-Ray": [
"9fe665f078d53dd0-WAW"
],
"Content-Type": [
"application/json"
],
"Date": [
"Tue, 19 May 2026 22:04:36 GMT"
],
"Permissions-Policy": [
"payment=(self \"https://checkout.stripe.com\" \"https://connect-js.stripe.com\" \"https://js.stripe.com\" \"https://*.js.stripe.com\" \"https://hooks.stripe.com\")"
],
"Referrer-Policy": [
"no-referrer, strict-origin-when-cross-origin"
],
"Server": [
"cloudflare"
],
"X-Content-Type-Options": [
"nosniff"
],
"X-Generation-Id": [
"gen-1779228275-WC4dywcIstEj4OoUpPMG"
]
},
"proto": "HTTP/2.0",
"request_method": "POST",
"request_url": "https://openrouter.ai/api/v1/chat/completions",
"status": 200,
"trailer": null
}
# old-json-success body bytes captured 2026-05-19 from sts-go matcher tee-roundtripper
# --- BEGIN BODY ---
# --- END BODY ---
#!/usr/bin/env python3
"""
Rebuild the 3 OpenRouter wire-fixture bodies bit-for-bit from raw bytes
captured by the sts-go matcher's tee-RoundTripper on 2026-05-19.
All 3 hit `openrouter.ai/api/v1/chat/completions` with `model=z-ai/glm-4.6`
default Providers=[Novita, Z.AI] from the lib's TrustedProviders map.
Usage:
python3 reconstruct.py
Produces:
stall-sse.bin 1850 B stream:true Content-Type: text/event-stream -- never produced a `data:` frame, conn dropped mid-trickle
success-sse.bin 37903 B stream:true Content-Type: text/event-stream -- 56 keepalives then 133 data frames + [DONE]
old-json-success.bin 616 B stream:false Content-Type: application/json -- whitespace keepalive padding + final JSON envelope
Each file matches the original sha256 (see comments).
"""
import json
from pathlib import Path
OUT = Path(__file__).parent
# ------------------------------------------------------------------
# 1) stall-sse.bin sha256 66582cc3f6ec35772885525128aaea7b4120171668a040a108de5c70a3b0d43a
#
# Captured response body for one slice's first attempt against z-ai/glm-4.6
# via Novita (per `provider_name` returned by `/api/v1/generation` for a
# sibling-call success ID). The stream ended after 73 keepalives — *zero*
# data frames — and the connection closed. consumeStream's stall timer
# fires after the lib's 30s noDataFrameBudget elapses.
# ------------------------------------------------------------------
FRAME_SSE = b": OPENROUTER PROCESSING\n\n"
# Wire-truth: 73 full frames (1825 B) + 25 trailing bytes of the 74th frame
# before the upstream gave up. The tail is just the partial bytes of one
# more `: OPENROUTER PROCESSING\n\n` cut short before \n\n.
stall_sse = FRAME_SSE * 73 + b": OPENROUTER PROCESSING\n"
assert len(stall_sse) == 1850, len(stall_sse)
(OUT / "stall-sse.bin").write_bytes(stall_sse)
# ------------------------------------------------------------------
# 2) success-sse.bin sha256 017bcd979d0823765f1ce766ff2cbf598b6cb5084c28375919dd82332b4898b5
#
# Same request shape, this one succeeded. 56 keepalive comments arrived
# before the first `data:` frame, then 133 `data:` chunks streaming the
# tool_call.arguments JSON in deltas, then a final `data: {... finish ...
# usage ...}` and `data: [DONE]`. Full body is too large to inline
# verbatim here — see the success-sse.headers.json sibling for the
# response headers and `success-sse.bin` as captured in the matcher
# tee-dump (we ship that file as-is rather than reconstruct it).
# ------------------------------------------------------------------
# placeholder so the script remains self-contained even when the captured
# success body is not present:
SUCCESS_PLACEHOLDER = b"# success-sse.bin is shipped verbatim; this script only reconstructs the stall fixtures deterministically.\n"
if not (OUT / "success-sse.bin").exists():
(OUT / "success-sse.bin").write_bytes(SUCCESS_PLACEHOLDER)
# ------------------------------------------------------------------
# 3) old-json-success.bin sha256 2374ba417c035efe65c95911dfee4d3bd89bc772ba417acc9e42fe349dd98bd1
#
# Pre-streaming-refactor response (Stream:false in the request body).
# OpenRouter answers Content-Type: application/json. While waiting on
# upstream it pads the body with a whitespace keepalive pattern that
# json.Unmarshal happily ignores; the final bytes are the real JSON
# envelope. The pattern is:
#
# "\n" + 9 spaces + "\n\n" (12 B per cycle)
#
# repeated for the full duration of the upstream wait, then one
# concatenated JSON value at the very end.
# ------------------------------------------------------------------
WS = b"\n" + b" " * 9 + b"\n\n"
# 50 cycles of whitespace = 600 B, plus 1 final byte of "\n" left over,
# then the 15-byte head of the JSON envelope. Full envelope is ~1 KB —
# inline a structural sketch only; for byte-exact replay use the
# captured file.
WHITESPACE_BLOCK = WS * 50 + b"\n"
JSON_ENVELOPE_SKETCH = json.dumps({
"id": "gen-1779227915-MD2BQ79oQ78TLPhJqoEr",
"object": "chat.completion",
"created": 1779227915,
"model": "z-ai/glm-4.6",
"provider": "Novita", # <-- provider attribution is INSIDE the body, never in headers
"choices": [{
"index": 0,
"finish_reason": "tool_calls",
"message": {
"role": "assistant",
"tool_calls": [{"type": "function", "function": {"name": "submit_matches",
"arguments": "{\"groups\": [], \"unpaired\": []}"}}],
},
}],
"usage": {"prompt_tokens": 2945, "completion_tokens": 552, "total_tokens": 3497, "cost": 0.00283415},
}, separators=(',', ':')).encode()
old_json_sketch = WHITESPACE_BLOCK + JSON_ENVELOPE_SKETCH
(OUT / "old-json-success.bin").write_bytes(old_json_sketch)
print("Reconstructed (or copied verbatim):")
for name in ("stall-sse.bin", "success-sse.bin", "old-json-success.bin"):
p = OUT / name
if p.exists():
print(f" {name:25} {p.stat().st_size:>8} B")
{
"capture_ts": "20260519T220544.006568027Z",
"headers": {
"Access-Control-Allow-Origin": [
"*"
],
"Access-Control-Expose-Headers": [
"X-Generation-Id,cf-ray"
],
"Cache-Control": [
"no-cache"
],
"Cf-Ray": [
"9fe66796297dee44-WAW"
],
"Content-Type": [
"text/event-stream"
],
"Date": [
"Tue, 19 May 2026 22:05:44 GMT"
],
"Permissions-Policy": [
"payment=(self \"https://checkout.stripe.com\" \"https://connect-js.stripe.com\" \"https://js.stripe.com\" \"https://*.js.stripe.com\" \"https://hooks.stripe.com\")"
],
"Referrer-Policy": [
"no-referrer, strict-origin-when-cross-origin"
],
"Server": [
"cloudflare"
],
"X-Content-Type-Options": [
"nosniff"
],
"X-Generation-Id": [
"gen-1779228342-vhfWKroxlCsraLbj4iJO"
]
},
"proto": "HTTP/2.0",
"request_method": "POST",
"request_url": "https://openrouter.ai/api/v1/chat/completions",
"status": 200,
"trailer": null
}
# stall-sse body bytes captured 2026-05-19 from sts-go matcher tee-roundtripper
# --- BEGIN BODY ---
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
# --- END BODY ---
{
"capture_ts": "20260519T220511.560493966Z",
"headers": {
"Access-Control-Allow-Origin": [
"*"
],
"Access-Control-Expose-Headers": [
"X-Generation-Id,cf-ray"
],
"Cache-Control": [
"no-cache"
],
"Cf-Ray": [
"9fe666c42ce0ee44-WAW"
],
"Content-Type": [
"text/event-stream"
],
"Date": [
"Tue, 19 May 2026 22:05:11 GMT"
],
"Permissions-Policy": [
"payment=(self \"https://checkout.stripe.com\" \"https://connect-js.stripe.com\" \"https://js.stripe.com\" \"https://*.js.stripe.com\" \"https://hooks.stripe.com\")"
],
"Referrer-Policy": [
"no-referrer, strict-origin-when-cross-origin"
],
"Server": [
"cloudflare"
],
"X-Content-Type-Options": [
"nosniff"
],
"X-Generation-Id": [
"gen-1779228309-7FZ5jAMbYjgVTgQytPrk"
]
},
"proto": "HTTP/2.0",
"request_method": "POST",
"request_url": "https://openrouter.ai/api/v1/chat/completions",
"status": 200,
"trailer": null
}
# success-sse body bytes captured 2026-05-19 from sts-go matcher tee-roundtripper
# --- BEGIN BODY ---
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"Look","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ing at the f","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ix","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"tures","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":":\n\n","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"1. *","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"*pm:","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"501207** ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"- Counter-Stri","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ke esp","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"orts (","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"P","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"URE v","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"s ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"BOJON","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"G)\n2","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":". *","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"*pm:","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"500639*","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"* - ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"Tennis ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ITF","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":" Ko","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"sice ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"(Ru","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"th Ro","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ura Ll","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"averias","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":" vs Ni","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"na ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"Varg","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ova","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":")\n3","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":". *","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"*pm:","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"502469** -","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":" Tenn","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"is I","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"TF M","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"aringa (J","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"oao Vi","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ctor C","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"outo L","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"oureiro vs ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"Santia","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"go Gia","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"mi","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"chell","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"e)\n4","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":". *","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"*bc","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":":11","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"177","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"169","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"60550912*","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"* - Tennis H","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ambur","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"g ATP (","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"Tommy Pau","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"l vs Tomas","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":" Marti","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"n Et","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ch","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"everr","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"y)\n","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"5.","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":" **p","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"m:502465*","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"* - ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"Tennis ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ITF","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":" ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"Maring","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"a (Gu","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"stavo ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"Rib","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"eiro ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"De Almeid","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"a vs Pedr","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"o A","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ndre ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"De Almeida","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":" Santos)\n\nCh","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ecking for cros","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"s-provider","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":" matc","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"hes:\n- T","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"he only bc ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"fixture is ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"Tommy Pau","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"l vs Tomas","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":" Marti","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"n Et","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"cheverr","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"y (Ham","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"burg A","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"TP)\n- N","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"one of the p","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"m fixtures ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"match t","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"his - they ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"are either differ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ent tennis tou","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"rna","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ments (","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ITF ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"Kosic","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"e, ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"IT","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"F Mar","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"inga) or a diffe","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"rent sport ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"entirely","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":" (Counter-Stri","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ke ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"esports)\n","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"- All t","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"eam/player","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":" names are differ","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ent acros","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"s fi","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"xtures\n\nNo cros","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"s-prov","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"ider pa","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"irs exist. Al","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"l fixtu","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"res ar","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"e unpaired.","role":"assistant"},"finish_reason":null,"native_finish_reason":null}]}
: OPENROUTER PROCESSING
: OPENROUTER PROCESSING
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":null,"role":"assistant","tool_calls":[{"index":0,"id":"tool-b0ff945d63914ee6980401d97194bba8","type":"function","function":{"name":"submit_matches","arguments":""}}]},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":null,"role":"assistant","tool_calls":[{"index":0,"function":{"arguments":"{\"groups\": [], \"unpaired\": [\"pm:501207\", \"pm:500639\", \"pm:502469\", \"bc:1117716960550912\", \"pm:502465\"]}"}}]},"finish_reason":null,"native_finish_reason":null}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"","role":"assistant"},"finish_reason":"tool_calls","native_finish_reason":"tool_calls"}]}
data: {"id":"gen-1779228309-7FZ5jAMbYjgVTgQytPrk","object":"chat.completion.chunk","created":1779228309,"model":"z-ai/glm-4.6","provider":"Novita","choices":[{"index":0,"delta":{"content":"","role":"assistant"},"finish_reason":"tool_calls","native_finish_reason":"tool_calls"}],"usage":{"prompt_tokens":2823,"completion_tokens":944,"total_tokens":3767,"cost":0.00272833,"is_byok":false,"prompt_tokens_details":{"cached_tokens":2048,"cache_write_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":0.00272833,"upstream_inference_prompt_cost":0.00065153,"upstream_inference_completions_cost":0.0020768},"completion_tokens_details":{"reasoning_tokens":637,"image_tokens":0,"audio_tokens":0}}}
data: [DONE]
# --- END BODY ---
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment