GPT-5
Text Generation • OpenAIOpenAI's model excelling at coding, writing, and reasoning.
| Model Info | |
|---|---|
| Context Window ↗ | 128,000 tokens |
| Terms and License | link ↗ |
| More information | link ↗ |
| Zero data retention | Yes |
| Request formats | Responses, Chat Completions |
| Pricing | View pricing in the Cloudflare dashboard ↗ |
Usage
const response = await env.AI.run( 'openai/gpt-5', { messages: [{ content: 'What are the three laws of thermodynamics?', role: 'user' }] },)console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/v1/chat/completions \ --header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \ --header "Content-Type: application/json" \ --data '{ "model": "openai/gpt-5", "messages": [ { "content": "What are the three laws of thermodynamics?", "role": "user" } ]}'- First law (energy conservation): The change in a system’s internal energy equals the heat added to the system minus the work done by the system. In symbols: ΔU = Q − W (with W defined as work done by the system). - Second law (entropy increase): In any real process, the total entropy of an isolated system never decreases (ΔS ≥ 0). Equivalently, heat flows spontaneously from hot to cold and no heat engine can be 100% efficient. - Third law (absolute zero/entropy): As temperature approaches 0 K, the entropy of a perfect crystalline substance approaches zero, and absolute zero cannot be reached in a finite number of steps. Note: There is also a “zeroth law,” which defines temperature via thermal equilibrium.
{ "id": "chatcmpl-DpLAeLKqEscvTBF6Cy8PzvroAyj7Q", "object": "chat.completion", "created": 1781128480, "model": "gpt-5-2025-08-07", "choices": [ { "index": 0, "message": { "role": "assistant", "content": "- First law (energy conservation): The change in a system’s internal energy equals the heat added to the system minus the work done by the system. In symbols: ΔU = Q − W (with W defined as work done by the system).\n\n- Second law (entropy increase): In any real process, the total entropy of an isolated system never decreases (ΔS ≥ 0). Equivalently, heat flows spontaneously from hot to cold and no heat engine can be 100% efficient.\n\n- Third law (absolute zero/entropy): As temperature approaches 0 K, the entropy of a perfect crystalline substance approaches zero, and absolute zero cannot be reached in a finite number of steps.\n\nNote: There is also a “zeroth law,” which defines temperature via thermal equilibrium.", "refusal": null, "annotations": [] }, "finish_reason": "stop" } ], "usage": { "prompt_tokens": 15, "completion_tokens": 550, "total_tokens": 565, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 }, "completion_tokens_details": { "reasoning_tokens": 384, "audio_tokens": 0, "accepted_prediction_tokens": 0, "rejected_prediction_tokens": 0 } }, "service_tier": "default", "system_fingerprint": null, "gatewayMetadata": { "keySource": "Unified" }}Examples
With System Message — Using a system message to set context
const response = await env.AI.run( 'openai/gpt-5', { messages: [ { content: 'You are a helpful coding assistant specializing in Python.', role: 'system' }, { content: 'How do I read a JSON file in Python?', role: 'user' }, ], },)console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/v1/chat/completions \ --header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \ --header "Content-Type: application/json" \ --data '{ "model": "openai/gpt-5", "messages": [ { "content": "You are a helpful coding assistant specializing in Python.", "role": "system" }, { "content": "How do I read a JSON file in Python?", "role": "user" } ]}'The built-in json module is the standard way.
Basic: read an entire JSON file into a Python object (dict/list)
import json
with open('data.json', 'r', encoding='utf-8') as f:
data = json.load(f)
# Use it
# e.g., if data is a dict:
# print(data['some_key'])
From a JSON string instead of a file
import json
s = '{"a": 1, "b": [1, 2, 3]}'
data = json.loads(s)
Robust version with error handling
import json
from pathlib import Path
path = Path('data.json')
try:
with path.open('r', encoding='utf-8') as f:
data = json.load(f)
except FileNotFoundError:
print(f"File not found: {path}")
except json.JSONDecodeError as e:
print(f"Bad JSON at line {e.lineno}, col {e.colno}: {e.msg}")
Notes and variants:
- Encoding: JSON is UTF-8 by default; specify encoding='utf-8' to be explicit.
- Large files: json.load reads the whole file into memory. For very large JSON, consider streaming parsers like ijson:
import ijson
with open('big.json', 'r', encoding='utf-8') as f:
for item in ijson.items(f, 'items.item'): # adjust prefix to your structure
process(item)
- JSON Lines (NDJSON): one JSON object per line
import json
with open('data.jsonl', 'r', encoding='utf-8') as f:
for line in f:
line = line.strip()
if line:
obj = json.loads(line)
process(obj)
- With pathlib without json.load (alternative style)
from pathlib import Path
import json
data = json.loads(Path('data.json').read_text(encoding='utf-8'))
- Pandas (tabular data)
import pandas as pd
df = pd.read_json('data.json') # for array-of-objects
# or for JSON Lines:
df = pd.read_json('data.jsonl', lines=True)
Common pitfalls:
- Trailing commas or comments are not valid JSON. If you must handle commented JSON, look at json5 or commentjson. { "id": "chatcmpl-DpLApEjnJrCwFeYGPMnwKoqO9Xpby", "object": "chat.completion", "created": 1781128491, "model": "gpt-5-2025-08-07", "choices": [ { "index": 0, "message": { "role": "assistant", "content": "The built-in json module is the standard way.\n\nBasic: read an entire JSON file into a Python object (dict/list)\nimport json\n\nwith open('data.json', 'r', encoding='utf-8') as f:\n data = json.load(f)\n\n# Use it\n# e.g., if data is a dict:\n# print(data['some_key'])\n\nFrom a JSON string instead of a file\nimport json\n\ns = '{\"a\": 1, \"b\": [1, 2, 3]}'\ndata = json.loads(s)\n\nRobust version with error handling\nimport json\nfrom pathlib import Path\n\npath = Path('data.json')\ntry:\n with path.open('r', encoding='utf-8') as f:\n data = json.load(f)\nexcept FileNotFoundError:\n print(f\"File not found: {path}\")\nexcept json.JSONDecodeError as e:\n print(f\"Bad JSON at line {e.lineno}, col {e.colno}: {e.msg}\")\n\nNotes and variants:\n- Encoding: JSON is UTF-8 by default; specify encoding='utf-8' to be explicit.\n- Large files: json.load reads the whole file into memory. For very large JSON, consider streaming parsers like ijson:\n import ijson\n with open('big.json', 'r', encoding='utf-8') as f:\n for item in ijson.items(f, 'items.item'): # adjust prefix to your structure\n process(item)\n- JSON Lines (NDJSON): one JSON object per line\n import json\n with open('data.jsonl', 'r', encoding='utf-8') as f:\n for line in f:\n line = line.strip()\n if line:\n obj = json.loads(line)\n process(obj)\n- With pathlib without json.load (alternative style)\n from pathlib import Path\n import json\n data = json.loads(Path('data.json').read_text(encoding='utf-8'))\n- Pandas (tabular data)\n import pandas as pd\n df = pd.read_json('data.json') # for array-of-objects\n # or for JSON Lines:\n df = pd.read_json('data.jsonl', lines=True)\n\nCommon pitfalls:\n- Trailing commas or comments are not valid JSON. If you must handle commented JSON, look at json5 or commentjson.", "refusal": null, "annotations": [] }, "finish_reason": "stop" } ], "usage": { "prompt_tokens": 30, "completion_tokens": 1143, "total_tokens": 1173, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 }, "completion_tokens_details": { "reasoning_tokens": 640, "audio_tokens": 0, "accepted_prediction_tokens": 0, "rejected_prediction_tokens": 0 } }, "service_tier": "default", "system_fingerprint": null, "gatewayMetadata": { "keySource": "Unified" }}Multi-turn Conversation — Continuing a conversation with context
const response = await env.AI.run( 'openai/gpt-5', { max_completion_tokens: 8192, messages: [ { content: 'I need help planning a road trip from San Francisco to Los Angeles.', role: 'user', }, { content: "I'd be happy to help! The drive is about 380 miles and takes roughly 5-6 hours. Would you like suggestions for scenic routes or interesting stops along the way?", role: 'assistant', }, { content: 'Yes, what are some good places to stop?', role: 'user' }, ], },)console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/v1/chat/completions \ --header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \ --header "Content-Type: application/json" \ --data '{ "model": "openai/gpt-5", "max_completion_tokens": 8192, "messages": [ { "content": "I need help planning a road trip from San Francisco to Los Angeles.", "role": "user" }, { "content": "I'\''d be happy to help! The drive is about 380 miles and takes roughly 5-6 hours. Would you like suggestions for scenic routes or interesting stops along the way?", "role": "assistant" }, { "content": "Yes, what are some good places to stop?", "role": "user" } ]}'Great question! There are three main ways to go from SF to LA, each with different types of stops. Here are top picks by route, plus a couple sample itineraries. Fastest (I-5) - Harris Ranch (Coalinga): Classic steakhouse, big rest stop, EV chargers. - Kettleman City: Food options (In-N-Out, Bravo Farms), large restrooms, EV superchargers. - Fort Tejon State Historic Park (near Lebec): Stretch your legs among oak woodlands and historic barracks. - Pyramid Lake Vista Point (north of Santa Clarita): Quick scenic stop before the final stretch. Balanced coastal (US-101) - San Luis Obispo: Charming downtown; Madonna Inn for a quirky snack/photo stop. - Pismo Beach: Pier, clams, Monarch Butterfly Grove (seasonal: late Oct–Feb). - Edna Valley or Paso Robles: Easy-access wineries for tastings (designate a driver). - Solvang: Danish village vibes, pastries, windmills; Pea Soup Andersen’s in nearby Buellton. - Santa Barbara: Mission, Funk Zone wineries/breweries, waterfront and Stearns Wharf. - Ventura/Carpinteria: Carpinteria Bluffs and Tar Pits Park; mellow beaches. Most scenic (Highway 1 / Pacific Coast Highway) - Half Moon Bay or Santa Cruz: Coffee/beach walk to kick off the coast route. - Monterey & Pacific Grove: Cannery Row, Monterey Bay Aquarium, 17‑Mile Drive, Lovers Point. - Point Lobos State Natural Reserve: Short world‑class coastal hikes; arrive early for parking. - Big Sur highlights: Bixby Creek Bridge overlook; Garrapata State Park pullouts; Pfeiffer Big Sur State Park (valley trails); Pfeiffer Beach (purple sand/keyhole rock, narrow access road); Nepenthe or Big Sur Bakery for views/food. - Julia Pfeiffer Burns SP: McWay Falls overlook (iconic). - San Simeon & Cambria: Elephant Seal Vista Point at Piedras Blancas; Hearst Castle (reserve tours); Moonstone Beach boardwalk. - Morro Bay: Embarcadero and Morro Rock; sea otters often visible. - Pismo/Oceano: Dunes, beach towns. - Santa Barbara and Malibu: Finish with beaches like El Matador, Point Dume. Sample one-day coastal highlight (long day) - SF → Monterey (breakfast + quick 17‑Mile Drive/Point Lobos) → Big Sur (Bixby, McWay Falls, lunch) → Elephant seals → Santa Barbara (dinner) → LA. Relaxed two-day coastal trip - Day 1: SF → Monterey/Carmel → Big Sur hikes/lookouts → Overnight in Cambria, San Simeon, or San Luis Obispo. - Day 2: Pismo → Solvang pastry stop → Santa Barbara lunch/beach → Malibu sunset → LA. Tips - Check Highway 1 conditions (landslides/closures are common in Big Sur): Caltrans QuickMap before you go. - Start early for parking at Point Lobos/Big Sur stops; cell service is spotty in Big Sur. - Book Hearst Castle tours and Big Sur/SLO lodging ahead, especially weekends/holidays. - Bring layers; coastal weather changes fast. Fuel up before Big Sur—few gas stations. If you tell me: - Which route you prefer (I-5 speed, 101 balance, or Hwy 1 scenery), - How many days you have, - Interests (hikes, food/wine, beaches, kid-friendly, pet-friendly), I’ll map a tailored stop-by-stop plan with drive times.
{ "id": "chatcmpl-DpLBM7b0Zf6BIFOThPdIAnUziVmcV", "object": "chat.completion", "created": 1781128524, "model": "gpt-5-2025-08-07", "choices": [ { "index": 0, "message": { "role": "assistant", "content": "Great question! There are three main ways to go from SF to LA, each with different types of stops. Here are top picks by route, plus a couple sample itineraries.\n\nFastest (I-5)\n- Harris Ranch (Coalinga): Classic steakhouse, big rest stop, EV chargers.\n- Kettleman City: Food options (In-N-Out, Bravo Farms), large restrooms, EV superchargers.\n- Fort Tejon State Historic Park (near Lebec): Stretch your legs among oak woodlands and historic barracks.\n- Pyramid Lake Vista Point (north of Santa Clarita): Quick scenic stop before the final stretch.\n\nBalanced coastal (US-101)\n- San Luis Obispo: Charming downtown; Madonna Inn for a quirky snack/photo stop.\n- Pismo Beach: Pier, clams, Monarch Butterfly Grove (seasonal: late Oct–Feb).\n- Edna Valley or Paso Robles: Easy-access wineries for tastings (designate a driver).\n- Solvang: Danish village vibes, pastries, windmills; Pea Soup Andersen’s in nearby Buellton.\n- Santa Barbara: Mission, Funk Zone wineries/breweries, waterfront and Stearns Wharf.\n- Ventura/Carpinteria: Carpinteria Bluffs and Tar Pits Park; mellow beaches.\n\nMost scenic (Highway 1 / Pacific Coast Highway)\n- Half Moon Bay or Santa Cruz: Coffee/beach walk to kick off the coast route.\n- Monterey & Pacific Grove: Cannery Row, Monterey Bay Aquarium, 17‑Mile Drive, Lovers Point.\n- Point Lobos State Natural Reserve: Short world‑class coastal hikes; arrive early for parking.\n- Big Sur highlights: Bixby Creek Bridge overlook; Garrapata State Park pullouts; Pfeiffer Big Sur State Park (valley trails); Pfeiffer Beach (purple sand/keyhole rock, narrow access road); Nepenthe or Big Sur Bakery for views/food.\n- Julia Pfeiffer Burns SP: McWay Falls overlook (iconic).\n- San Simeon & Cambria: Elephant Seal Vista Point at Piedras Blancas; Hearst Castle (reserve tours); Moonstone Beach boardwalk.\n- Morro Bay: Embarcadero and Morro Rock; sea otters often visible.\n- Pismo/Oceano: Dunes, beach towns.\n- Santa Barbara and Malibu: Finish with beaches like El Matador, Point Dume.\n\nSample one-day coastal highlight (long day)\n- SF → Monterey (breakfast + quick 17‑Mile Drive/Point Lobos) → Big Sur (Bixby, McWay Falls, lunch) → Elephant seals → Santa Barbara (dinner) → LA.\n\nRelaxed two-day coastal trip\n- Day 1: SF → Monterey/Carmel → Big Sur hikes/lookouts → Overnight in Cambria, San Simeon, or San Luis Obispo.\n- Day 2: Pismo → Solvang pastry stop → Santa Barbara lunch/beach → Malibu sunset → LA.\n\nTips\n- Check Highway 1 conditions (landslides/closures are common in Big Sur): Caltrans QuickMap before you go.\n- Start early for parking at Point Lobos/Big Sur stops; cell service is spotty in Big Sur.\n- Book Hearst Castle tours and Big Sur/SLO lodging ahead, especially weekends/holidays.\n- Bring layers; coastal weather changes fast. Fuel up before Big Sur—few gas stations.\n\nIf you tell me:\n- Which route you prefer (I-5 speed, 101 balance, or Hwy 1 scenery),\n- How many days you have,\n- Interests (hikes, food/wine, beaches, kid-friendly, pet-friendly),\nI’ll map a tailored stop-by-stop plan with drive times.", "refusal": null, "annotations": [] }, "finish_reason": "stop" } ], "usage": { "prompt_tokens": 76, "completion_tokens": 1926, "total_tokens": 2002, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 }, "completion_tokens_details": { "reasoning_tokens": 1152, "audio_tokens": 0, "accepted_prediction_tokens": 0, "rejected_prediction_tokens": 0 } }, "service_tier": "default", "system_fingerprint": null, "gatewayMetadata": { "keySource": "Unified" }}Creative Writing — Longer completion for creative output
const response = await env.AI.run( 'openai/gpt-5', { max_completion_tokens: 8192, messages: [ { content: 'Write a short story opening about a detective finding an unusual clue.', role: 'user', }, ], },)console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/v1/chat/completions \ --header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \ --header "Content-Type: application/json" \ --data '{ "model": "openai/gpt-5", "max_completion_tokens": 8192, "messages": [ { "content": "Write a short story opening about a detective finding an unusual clue.", "role": "user" } ]}'The diner on Maple had the sort of dawn that came with mop water and an apology. Lemon and old fry oil hung in the air; the neon COFFEE sign in the front window had sputtered itself into a coma sometime before three. Someone had left the door propped with a folded phone book. Someone else had left fingerprints everywhere you could put a hand to steady yourself. “Mr. Hale?” The manager’s voice came out thin. He was a man who wore his keys like medals, ring clinking against the register as if noise could keep the room from thinking about what had happened in the stockroom. He kept rubbing a clean spot on the Formica with the heel of his palm. “They said not to touch anything. But, uh, someone’s going to have to… You know. She’s back there.” “I know.” I did not look back there yet. The living are easier to talk to than the dead. The living lie worse, too. It wasn’t my first crime scene in a place that sold coffee by the gallon, but it was the first time time itself had been sitting on the counter. Right in the dead center of the service line, between the sugar pourer and a pitcher lipped with milk, stood an hourglass. Not the novelty kind with pink sand and a smiley face, but two clean bulbs pinched at the waist and sealed with a brass cap, the sort of thing you buy for seventeen dollars at a shop that also sells candles that smell like foreign countries. The stuff pouring through it wasn’t sand. Dark grit eased from the top bulb to the bottom in a slow, stubborn ribbon. The grounds were too coarse for espresso, too fine for the diner’s clumsy metal basket. I leaned in and the smell of chicory lifted and slid clean into my head. Coffee with teeth. Not something Maple Street Diner served, not in the ten years I’d been stopping in for grilled cheese on Tuesdays. They brewed what came in five-pound bricks with promises on the bag and regrets in the cup. The hourglass sat in a perfect ring of coffee, the way a drink leaves its mark if you lift it and set it down, lift it and set it down, chasing conversation. Only the ring was too clean, too even. Not slapped there by accident but drawn, like a target. “Don’t they come with sand?” the manager said, as if I’d stock tips on timepieces. He had the kind of face you wanted to put directions on. He kept glancing toward the hallway where the kitchen started. “Who would bring that here?” “Somebody who wanted us to see it.” I bent until the glass filled my whole world, the way a thing does when you’re trying not to see a bigger thing behind it. Grounds slid down and hit the bottom with tiny clicks, a sound you feel more than hear. The top bulb was half-empty. The bottom was making a little hill that would slump and start again, brown avalanches inside a winter globe. There were four notch marks on the counter by the hourglass, burned in with something hot. A cigarette, maybe, or a soldering iron. Not long lines, just ticks where a thumbnail might count. The fugitive smell of something singed lived there. I put a finger near one and felt the edge of the scorch under the polish of a thousand elbows. Not fresh. But made last night, if the way they were crisping under the fluorescent hum meant anything. I didn’t touch the glass. I touched the ring instead, lightly, because that’s what people notice if you don’t. It was tacky. It left the faint outline of my fingertip when I lifted it away. The coffee in the ring had been thick when it went down, not drip-thin but almost syrup, like someone boiled it down on the stovetop. Old trick for buzzing cheap liquor. Or for drawing with. “Chicory,” I said, mostly to the hourglass. The manager blinked at me, like I’d just named my favorite constellation. “Is that… good?” “If you’re homesick for New Orleans and don’t mind lying to yourself,” I said. It wasn’t a Maple Street thing. It was nowhere-on-this-block thing. There was a place on Luzerne that sold blue crab on Sundays and tobacco under the counter on every day that ended in Y; they stocked cans with a fleur-de-lis on the label behind a curtain you had to ask to see. People who bought it were a certain kind of precise. They liked their mornings with a habit in them. Someone had clocked her in the stockroom, the call had said, a quick violence that made a long problem. Someone had propped the door so the sirens wouldn’t have to rattle the handle. Someone had time to leave me a prop that wasn’t a prop at all. “Do me a favor,” I said. “Don’t let anyone touch this. Or sneeze on it. Or breathe enthusiastically.” The manager nodded as if those were the rules we’d been living by all along. He made himself small, backing away without looking away, like the hourglass might leap off the counter and bite him. I watched grounds fall through the neck. When they hit the bottom, they rolled a little and settled. The top empties, the bottom fills. After a certain point, if you don’t turn it over, it’s done. Four notches. A ring drawn too carefully to have happened on accident. Chicory where there shouldn’t be chicory. I counted in my head with the tiny rain of grit, not minutes, because those stretch and snap, but beats. The hourglass bled its coffee heart out with a drummer’s stubbornness—two hundred and forty by the time the hill slumped over and smoothed into itself. Four flips. Four songs at two minutes each. Four smoke breaks. Four chances to wait and see if someone came through the side door with a soft apology and a reason. I didn’t know, not yet, what the someone had been timing. Grief. Guts. The moment the street went quiet enough for them to walk. A message for anybody who could read taste and habit like handwriting. All I knew was that the glass didn’t belong here and neither did its smell. The clue wasn’t unusual because it was clever. It was unusual because it was kind. Somebody, standing in a cheap-lit diner with lemon in their nose and something ruinous at their back, had thought to leave me time that I could tip over with a wrist. Time I could see. I wish the dead had names like that. I wish they all came with something you could hold up to the light and say, here, this is how long it took. This is where it started; this is where it ran out. “Mr. Hale?” The manager had drifted back. He’d taken off his keys and set them in a neat circle beside the register, a little hourglass of his own. He had a voice that was trying to be a whisper but kept smarting into sound. “Do you want to—should I—” “In a minute,” I said. The coffee ring had started to skin over. The grounds made a small mountain inside their bottle. I lowered my head until I could see the thin seam in the brass cap that sealed it, a tiny imperfection in a factory finish. Someone had pried it open once with a butter knife and tamped the top with a thumb. It had a dent in it, a crescent like the side of a bitten moon. Sometimes the city gives you a map. Sometimes it just gives you a circle and tells you to stand inside it until the world narrows down to what fits. I straightened, and the room got bigger. “Okay,” I said. “Let’s go look at the thing we’re not looking at.”
{ "id": "chatcmpl-DpLK1cHoQaButs3hdRNv4w58l1y8J", "object": "chat.completion", "created": 1781129061, "model": "gpt-5-2025-08-07", "choices": [ { "index": 0, "message": { "role": "assistant", "content": "The diner on Maple had the sort of dawn that came with mop water and an apology. Lemon and old fry oil hung in the air; the neon COFFEE sign in the front window had sputtered itself into a coma sometime before three. Someone had left the door propped with a folded phone book. Someone else had left fingerprints everywhere you could put a hand to steady yourself.\n\n“Mr. Hale?” The manager’s voice came out thin. He was a man who wore his keys like medals, ring clinking against the register as if noise could keep the room from thinking about what had happened in the stockroom. He kept rubbing a clean spot on the Formica with the heel of his palm. “They said not to touch anything. But, uh, someone’s going to have to… You know. She’s back there.”\n\n“I know.” I did not look back there yet. The living are easier to talk to than the dead. The living lie worse, too.\n\nIt wasn’t my first crime scene in a place that sold coffee by the gallon, but it was the first time time itself had been sitting on the counter.\n\nRight in the dead center of the service line, between the sugar pourer and a pitcher lipped with milk, stood an hourglass. Not the novelty kind with pink sand and a smiley face, but two clean bulbs pinched at the waist and sealed with a brass cap, the sort of thing you buy for seventeen dollars at a shop that also sells candles that smell like foreign countries.\n\nThe stuff pouring through it wasn’t sand.\n\nDark grit eased from the top bulb to the bottom in a slow, stubborn ribbon. The grounds were too coarse for espresso, too fine for the diner’s clumsy metal basket. I leaned in and the smell of chicory lifted and slid clean into my head. Coffee with teeth. Not something Maple Street Diner served, not in the ten years I’d been stopping in for grilled cheese on Tuesdays. They brewed what came in five-pound bricks with promises on the bag and regrets in the cup.\n\nThe hourglass sat in a perfect ring of coffee, the way a drink leaves its mark if you lift it and set it down, lift it and set it down, chasing conversation. Only the ring was too clean, too even. Not slapped there by accident but drawn, like a target.\n\n“Don’t they come with sand?” the manager said, as if I’d stock tips on timepieces. He had the kind of face you wanted to put directions on. He kept glancing toward the hallway where the kitchen started. “Who would bring that here?”\n\n“Somebody who wanted us to see it.” I bent until the glass filled my whole world, the way a thing does when you’re trying not to see a bigger thing behind it. Grounds slid down and hit the bottom with tiny clicks, a sound you feel more than hear. The top bulb was half-empty. The bottom was making a little hill that would slump and start again, brown avalanches inside a winter globe.\n\nThere were four notch marks on the counter by the hourglass, burned in with something hot. A cigarette, maybe, or a soldering iron. Not long lines, just ticks where a thumbnail might count. The fugitive smell of something singed lived there. I put a finger near one and felt the edge of the scorch under the polish of a thousand elbows. Not fresh. But made last night, if the way they were crisping under the fluorescent hum meant anything.\n\nI didn’t touch the glass. I touched the ring instead, lightly, because that’s what people notice if you don’t. It was tacky. It left the faint outline of my fingertip when I lifted it away. The coffee in the ring had been thick when it went down, not drip-thin but almost syrup, like someone boiled it down on the stovetop. Old trick for buzzing cheap liquor. Or for drawing with.\n\n“Chicory,” I said, mostly to the hourglass. The manager blinked at me, like I’d just named my favorite constellation.\n\n“Is that… good?”\n\n“If you’re homesick for New Orleans and don’t mind lying to yourself,” I said. It wasn’t a Maple Street thing. It was nowhere-on-this-block thing. There was a place on Luzerne that sold blue crab on Sundays and tobacco under the counter on every day that ended in Y; they stocked cans with a fleur-de-lis on the label behind a curtain you had to ask to see. People who bought it were a certain kind of precise. They liked their mornings with a habit in them.\n\nSomeone had clocked her in the stockroom, the call had said, a quick violence that made a long problem. Someone had propped the door so the sirens wouldn’t have to rattle the handle. Someone had time to leave me a prop that wasn’t a prop at all.\n\n“Do me a favor,” I said. “Don’t let anyone touch this. Or sneeze on it. Or breathe enthusiastically.”\n\nThe manager nodded as if those were the rules we’d been living by all along. He made himself small, backing away without looking away, like the hourglass might leap off the counter and bite him.\n\nI watched grounds fall through the neck. When they hit the bottom, they rolled a little and settled. The top empties, the bottom fills. After a certain point, if you don’t turn it over, it’s done.\n\nFour notches. A ring drawn too carefully to have happened on accident. Chicory where there shouldn’t be chicory. I counted in my head with the tiny rain of grit, not minutes, because those stretch and snap, but beats. The hourglass bled its coffee heart out with a drummer’s stubbornness—two hundred and forty by the time the hill slumped over and smoothed into itself.\n\nFour flips. Four songs at two minutes each. Four smoke breaks. Four chances to wait and see if someone came through the side door with a soft apology and a reason.\n\nI didn’t know, not yet, what the someone had been timing. Grief. Guts. The moment the street went quiet enough for them to walk. A message for anybody who could read taste and habit like handwriting.\n\nAll I knew was that the glass didn’t belong here and neither did its smell. The clue wasn’t unusual because it was clever. It was unusual because it was kind. Somebody, standing in a cheap-lit diner with lemon in their nose and something ruinous at their back, had thought to leave me time that I could tip over with a wrist. Time I could see.\n\nI wish the dead had names like that. I wish they all came with something you could hold up to the light and say, here, this is how long it took. This is where it started; this is where it ran out.\n\n“Mr. Hale?” The manager had drifted back. He’d taken off his keys and set them in a neat circle beside the register, a little hourglass of his own. He had a voice that was trying to be a whisper but kept smarting into sound. “Do you want to—should I—”\n\n“In a minute,” I said. The coffee ring had started to skin over. The grounds made a small mountain inside their bottle. I lowered my head until I could see the thin seam in the brass cap that sealed it, a tiny imperfection in a factory finish. Someone had pried it open once with a butter knife and tamped the top with a thumb. It had a dent in it, a crescent like the side of a bitten moon.\n\nSometimes the city gives you a map. Sometimes it just gives you a circle and tells you to stand inside it until the world narrows down to what fits. I straightened, and the room got bigger.\n\n“Okay,” I said. “Let’s go look at the thing we’re not looking at.”", "refusal": null, "annotations": [] }, "finish_reason": "stop" } ], "usage": { "prompt_tokens": 19, "completion_tokens": 4961, "total_tokens": 4980, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 }, "completion_tokens_details": { "reasoning_tokens": 3328, "audio_tokens": 0, "accepted_prediction_tokens": 0, "rejected_prediction_tokens": 0 } }, "service_tier": "default", "system_fingerprint": null, "gatewayMetadata": { "keySource": "Unified" }}Streaming Response — Enable streaming for real-time output
const response = await env.AI.run( 'openai/gpt-5', { messages: [{ content: 'Explain the concept of recursion with a simple example.', role: 'user' }], stream: true, stream_options: { include_usage: true }, },)console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/v1/chat/completions \ --header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \ --header "Content-Type: application/json" \ --data '{ "model": "openai/gpt-5", "messages": [ { "content": "Explain the concept of recursion with a simple example.", "role": "user" } ], "stream": true, "stream_options": { "include_usage": true }}'Recursion is when a function solves a problem by calling itself on a smaller version of the same problem, stopping at a simple “base case.”
Simple example: factorial
- Definition: n! (n factorial) is n × (n−1) × (n−2) × … × 1, and 0! = 1.
- Recursive idea: n! = n × (n−1)! with base case 0! = 1.
How factorial(4) works:
- fact(4) = 4 × fact(3)
- fact(3) = 3 × fact(2)
- fact(2) = 2 × fact(1)
- fact(1) = 1 × fact(0)
- fact(0) = 1 ← base case
- Unwinding: 1 → 1 → 2 → 6 → 24, so fact(4) = 24.
Tiny Python version:
def fact(n):
if n == 0: # base case
return 1
return n * fact(n-1) # recursive step
Key points:
- Always have a base case to stop.
- Each call must move toward the base case (smaller/simpler input).
- Missing either leads to infinite recursion (and a crash). [ { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "role": "assistant", "content": "", "refusal": null }, "finish_reason": null } ], "usage": null, "obfuscation": "SbmWVVEKFF" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "Rec" }, "finish_reason": null } ], "usage": null, "obfuscation": "779H6FdPD" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "ursion" }, "finish_reason": null } ], "usage": null, "obfuscation": "jbwZfF" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " is" }, "finish_reason": null } ], "usage": null, "obfuscation": "uDdyFpajU" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " when" }, "finish_reason": null } ], "usage": null, "obfuscation": "NeGi6lk" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " a" }, "finish_reason": null } ], "usage": null, "obfuscation": "slqVc1F68S" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " function" }, "finish_reason": null } ], "usage": null, "obfuscation": "Gaq" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " solves" }, "finish_reason": null } ], "usage": null, "obfuscation": "hRw6Y" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " a" }, "finish_reason": null } ], "usage": null, "obfuscation": "RvDBBcrYyO" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " problem" }, "finish_reason": null } ], "usage": null, "obfuscation": "KPCm" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " by" }, "finish_reason": null } ], "usage": null, "obfuscation": "sESAdIIU9" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " calling" }, "finish_reason": null } ], "usage": null, "obfuscation": "V48e" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " itself" }, "finish_reason": null } ], "usage": null, "obfuscation": "T5MK6" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " on" }, "finish_reason": null } ], "usage": null, "obfuscation": "QfIW8sIHJ" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " a" }, "finish_reason": null } ], "usage": null, "obfuscation": "KbRpqdMjp8" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " smaller" }, "finish_reason": null } ], "usage": null, "obfuscation": "mVgd" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " version" }, "finish_reason": null } ], "usage": null, "obfuscation": "GQBu" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " of" }, "finish_reason": null } ], "usage": null, "obfuscation": "U1P7pZcpy" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " the" }, "finish_reason": null } ], "usage": null, "obfuscation": "HTsLcwUY" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " same" }, "finish_reason": null } ], "usage": null, "obfuscation": "DAtUJq1" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " problem" }, "finish_reason": null } ], "usage": null, "obfuscation": "gJ3w" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "," }, "finish_reason": null } ], "usage": null, "obfuscation": "DFX6INzS0DQ" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " stopping" }, "finish_reason": null } ], "usage": null, "obfuscation": "iP2" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " at" }, "finish_reason": null } ], "usage": null, "obfuscation": "Eedp4NZDb" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " a" }, "finish_reason": null } ], "usage": null, "obfuscation": "4IZhiX9qXF" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " simple" }, "finish_reason": null } ], "usage": null, "obfuscation": "zaGGu" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " “" }, "finish_reason": null } ], "usage": null, "obfuscation": "TS6VxlsamS" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "base" }, "finish_reason": null } ], "usage": null, "obfuscation": "q5pHK8qp" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " case" }, "finish_reason": null } ], "usage": null, "obfuscation": "HFQlfNn" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ".”\n\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "ynmRNf" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "Simple" }, "finish_reason": null } ], "usage": null, "obfuscation": "FmvoWQ" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " example" }, "finish_reason": null } ], "usage": null, "obfuscation": "iATL" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ":" }, "finish_reason": null } ], "usage": null, "obfuscation": "1BcWMQxrpeX" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " factorial" }, "finish_reason": null } ], "usage": null, "obfuscation": "2v" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "eaoJLWkwBI" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "-" }, "finish_reason": null } ], "usage": null, "obfuscation": "R8UKIXUgLNq" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " Definition" }, "finish_reason": null } ], "usage": null, "obfuscation": "o" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ":" }, "finish_reason": null } ], "usage": null, "obfuscation": "4BSNuQmHWCK" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " n" }, "finish_reason": null } ], "usage": null, "obfuscation": "wjhwLU88m1" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "!" }, "finish_reason": null } ], "usage": null, "obfuscation": "4bqlbzjGiTR" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " (" }, "finish_reason": null } ], "usage": null, "obfuscation": "XQODDivDNe" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "n" }, "finish_reason": null } ], "usage": null, "obfuscation": "M39kFdV2XM2" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " factorial" }, "finish_reason": null } ], "usage": null, "obfuscation": "wI" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")" }, "finish_reason": null } ], "usage": null, "obfuscation": "lLVar92KM3L" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " is" }, "finish_reason": null } ], "usage": null, "obfuscation": "DfISRvWyg" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " n" }, "finish_reason": null } ], "usage": null, "obfuscation": "J33kwsDR9a" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " ×" }, "finish_reason": null } ], "usage": null, "obfuscation": "d4lwpXZSIY" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " (" }, "finish_reason": null } ], "usage": null, "obfuscation": "r4DiXNdp2y" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "n" }, "finish_reason": null } ], "usage": null, "obfuscation": "INvZ1sYJZ5b" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "−" }, "finish_reason": null } ], "usage": null, "obfuscation": "uVaHpO69Vgw" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "bOTvy8avyXa" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")" }, "finish_reason": null } ], "usage": null, "obfuscation": "APaT1yIDxtx" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " ×" }, "finish_reason": null } ], "usage": null, "obfuscation": "pCNNkhbo1v" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " (" }, "finish_reason": null } ], "usage": null, "obfuscation": "lqFHEdD4ZD" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "n" }, "finish_reason": null } ], "usage": null, "obfuscation": "bo52czF98Uw" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "−" }, "finish_reason": null } ], "usage": null, "obfuscation": "VjYqzATxGga" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "2" }, "finish_reason": null } ], "usage": null, "obfuscation": "SFyCMn1l3Oz" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")" }, "finish_reason": null } ], "usage": null, "obfuscation": "WchCLqPfW4x" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " ×" }, "finish_reason": null } ], "usage": null, "obfuscation": "qkYiglQSUV" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " …" }, "finish_reason": null } ], "usage": null, "obfuscation": "FROgTFotRV" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " ×" }, "finish_reason": null } ], "usage": null, "obfuscation": "Tgc0XG3pr1" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "ibFYtekJjhS" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "90AeKkzJzMf" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "," }, "finish_reason": null } ], "usage": null, "obfuscation": "fPg4Ar5dnyv" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " and" }, "finish_reason": null } ], "usage": null, "obfuscation": "S399eTC5" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "N1y1RKKHCDm" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "0" }, "finish_reason": null } ], "usage": null, "obfuscation": "MvaH8qbGq0L" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "!" }, "finish_reason": null } ], "usage": null, "obfuscation": "QxC9NLLQfve" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " =" }, "finish_reason": null } ], "usage": null, "obfuscation": "nDMNSIOpVg" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "WZNxsafGWy4" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "qLSSEGm5y6S" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ".\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "MOmlmkwv8" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "-" }, "finish_reason": null } ], "usage": null, "obfuscation": "jRIaoiRR7K8" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " Recursive" }, "finish_reason": null } ], "usage": null, "obfuscation": "8P" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " idea" }, "finish_reason": null } ], "usage": null, "obfuscation": "xDor6lq" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ":" }, "finish_reason": null } ], "usage": null, "obfuscation": "EhTl8dKcX3A" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " n" }, "finish_reason": null } ], "usage": null, "obfuscation": "SSKwNGgn3V" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "!" }, "finish_reason": null } ], "usage": null, "obfuscation": "PApdkuhDdxe" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " =" }, "finish_reason": null } ], "usage": null, "obfuscation": "JucbZJBCr6" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " n" }, "finish_reason": null } ], "usage": null, "obfuscation": "b3dhnni9yW" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " ×" }, "finish_reason": null } ], "usage": null, "obfuscation": "qnm7y06Wtz" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " (" }, "finish_reason": null } ], "usage": null, "obfuscation": "DsdoyNPBHL" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "n" }, "finish_reason": null } ], "usage": null, "obfuscation": "NBESVh45ZgF" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "−" }, "finish_reason": null } ], "usage": null, "obfuscation": "FhI8FCOHkGP" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "ltLkFJQWwZx" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")!" }, "finish_reason": null } ], "usage": null, "obfuscation": "tgWvEDWiDo" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " with" }, "finish_reason": null } ], "usage": null, "obfuscation": "AGSPcGu" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " base" }, "finish_reason": null } ], "usage": null, "obfuscation": "atUVilS" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " case" }, "finish_reason": null } ], "usage": null, "obfuscation": "DJ6HQlq" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "EyhQ55MRCep" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "0" }, "finish_reason": null } ], "usage": null, "obfuscation": "QsfgppJTyp8" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "!" }, "finish_reason": null } ], "usage": null, "obfuscation": "ZG2kRoHxCr0" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " =" }, "finish_reason": null } ], "usage": null, "obfuscation": "G7nJX43hVF" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "UlluHDwCDgP" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "oYO9Nh1ZwBd" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ".\n\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "fJSHGyj" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "How" }, "finish_reason": null } ], "usage": null, "obfuscation": "hsgTOZTOk" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " factorial" }, "finish_reason": null } ], "usage": null, "obfuscation": "Qj" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(" }, "finish_reason": null } ], "usage": null, "obfuscation": "E0QxxqRbFa0" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "4" }, "finish_reason": null } ], "usage": null, "obfuscation": "BHFAL5y1jxP" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")" }, "finish_reason": null } ], "usage": null, "obfuscation": "ltsy5pVdbtD" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " works" }, "finish_reason": null } ], "usage": null, "obfuscation": "YMLEb4" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ":\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "glzTmMjud" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "-" }, "finish_reason": null } ], "usage": null, "obfuscation": "uFynnWeKCQA" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " fact" }, "finish_reason": null } ], "usage": null, "obfuscation": "RZFtUYb" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(" }, "finish_reason": null } ], "usage": null, "obfuscation": "fRHTJ0W0WwB" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "4" }, "finish_reason": null } ], "usage": null, "obfuscation": "LiRqXJMz92z" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")" }, "finish_reason": null } ], "usage": null, "obfuscation": "y8ZB7Ia5X4o" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " =" }, "finish_reason": null } ], "usage": null, "obfuscation": "rQCYqaW9tf" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "LogQVr10vJn" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "4" }, "finish_reason": null } ], "usage": null, "obfuscation": "aBd3lljBKEb" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " ×" }, "finish_reason": null } ], "usage": null, "obfuscation": "JZUMKOj4ou" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " fact" }, "finish_reason": null } ], "usage": null, "obfuscation": "R61OZ86" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(" }, "finish_reason": null } ], "usage": null, "obfuscation": "Wben0dumiFv" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "3" }, "finish_reason": null } ], "usage": null, "obfuscation": "FfySHJSdJO8" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "yZaelXoy5" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "-" }, "finish_reason": null } ], "usage": null, "obfuscation": "6yrQxLp3Zzf" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " fact" }, "finish_reason": null } ], "usage": null, "obfuscation": "RNadH9y" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(" }, "finish_reason": null } ], "usage": null, "obfuscation": "BkfDjhrpGVT" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "3" }, "finish_reason": null } ], "usage": null, "obfuscation": "p2caBOTFyNu" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")" }, "finish_reason": null } ], "usage": null, "obfuscation": "kP7nIg13wvM" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " =" }, "finish_reason": null } ], "usage": null, "obfuscation": "7RJElxRH26" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "kTblbtPtTgD" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "3" }, "finish_reason": null } ], "usage": null, "obfuscation": "iXPZjinpRLg" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " ×" }, "finish_reason": null } ], "usage": null, "obfuscation": "wJz2DmfmgJ" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " fact" }, "finish_reason": null } ], "usage": null, "obfuscation": "wz1Aa4A" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(" }, "finish_reason": null } ], "usage": null, "obfuscation": "2tWfEVVLNrU" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "2" }, "finish_reason": null } ], "usage": null, "obfuscation": "6KQIfoGdZuE" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "N1zxxu9u1" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "-" }, "finish_reason": null } ], "usage": null, "obfuscation": "RXCHAQOXjPu" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " fact" }, "finish_reason": null } ], "usage": null, "obfuscation": "UQ6nZQ9" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(" }, "finish_reason": null } ], "usage": null, "obfuscation": "QNbJSRyueNW" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "2" }, "finish_reason": null } ], "usage": null, "obfuscation": "b4Ib0VGOXdK" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")" }, "finish_reason": null } ], "usage": null, "obfuscation": "uBHpMR09D2X" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " =" }, "finish_reason": null } ], "usage": null, "obfuscation": "MxQVsqoFLA" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "TRccDVxk43S" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "2" }, "finish_reason": null } ], "usage": null, "obfuscation": "pa7XeaM2tl6" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " ×" }, "finish_reason": null } ], "usage": null, "obfuscation": "lbs6AVNU4F" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " fact" }, "finish_reason": null } ], "usage": null, "obfuscation": "WZ1WeRr" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(" }, "finish_reason": null } ], "usage": null, "obfuscation": "7d3qDsHvuw4" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "Y3FSu0p6A5P" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "GGEd3KUm7" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "-" }, "finish_reason": null } ], "usage": null, "obfuscation": "ylXrcyDLkAz" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " fact" }, "finish_reason": null } ], "usage": null, "obfuscation": "RnDVOof" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(" }, "finish_reason": null } ], "usage": null, "obfuscation": "9VBwcdoT1Jr" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "Yb59AoJXXgC" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")" }, "finish_reason": null } ], "usage": null, "obfuscation": "2mN2n5IS1UG" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " =" }, "finish_reason": null } ], "usage": null, "obfuscation": "LYvXXSGjJa" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "rn7Gcx0xi7A" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "CrwvJdiLPmF" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " ×" }, "finish_reason": null } ], "usage": null, "obfuscation": "our7wjPOE6" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " fact" }, "finish_reason": null } ], "usage": null, "obfuscation": "N5drnLY" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(" }, "finish_reason": null } ], "usage": null, "obfuscation": "hhLeABZQl9A" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "0" }, "finish_reason": null } ], "usage": null, "obfuscation": "9EdWvrxQp3M" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "WnyMRZt6g" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "-" }, "finish_reason": null } ], "usage": null, "obfuscation": "yHM6CPbIf2P" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " fact" }, "finish_reason": null } ], "usage": null, "obfuscation": "6HNtUG2" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(" }, "finish_reason": null } ], "usage": null, "obfuscation": "vDlw9NUqmO0" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "0" }, "finish_reason": null } ], "usage": null, "obfuscation": "EqaLzxhQqA5" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")" }, "finish_reason": null } ], "usage": null, "obfuscation": "wxKik9bQsyE" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " =" }, "finish_reason": null } ], "usage": null, "obfuscation": "26FwFULyAI" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "XSAa2cESgwi" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "dkZbhcjmu3a" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "UrYSGcYQa3M" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " ←" }, "finish_reason": null } ], "usage": null, "obfuscation": "ohiXheaFxp" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " base" }, "finish_reason": null } ], "usage": null, "obfuscation": "xClvdxU" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " case" }, "finish_reason": null } ], "usage": null, "obfuscation": "jClax0X" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "A1NbnLDS3A" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "-" }, "finish_reason": null } ], "usage": null, "obfuscation": "1F9ykKvNSd9" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " Un" }, "finish_reason": null } ], "usage": null, "obfuscation": "ND9gkKaNs" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "w" }, "finish_reason": null } ], "usage": null, "obfuscation": "YK3BSTc8jfy" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "inding" }, "finish_reason": null } ], "usage": null, "obfuscation": "bw7Q0z" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ":" }, "finish_reason": null } ], "usage": null, "obfuscation": "HYOM4o1yi4p" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "mu80EyygnVS" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "cYevBZ2dPHS" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " →" }, "finish_reason": null } ], "usage": null, "obfuscation": "1ENNeOSpoJ" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "NpPYuVyKnhR" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "6W7zCd5Ap0F" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " →" }, "finish_reason": null } ], "usage": null, "obfuscation": "MRlrOurmqg" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "EhSahB1vsoQ" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "2" }, "finish_reason": null } ], "usage": null, "obfuscation": "HIVLzK8Ugjd" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " →" }, "finish_reason": null } ], "usage": null, "obfuscation": "oToYE8B7ZD" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "uRL8sTCRnk3" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "6" }, "finish_reason": null } ], "usage": null, "obfuscation": "yHkxCmfEgpH" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " →" }, "finish_reason": null } ], "usage": null, "obfuscation": "RhVpDVjqWt" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "rQiVmemwZK6" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "24" }, "finish_reason": null } ], "usage": null, "obfuscation": "aM6aBtbBzr" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "," }, "finish_reason": null } ], "usage": null, "obfuscation": "dm4HTQHIYfB" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " so" }, "finish_reason": null } ], "usage": null, "obfuscation": "kUDd1Xkbs" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " fact" }, "finish_reason": null } ], "usage": null, "obfuscation": "LVnDlN2" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(" }, "finish_reason": null } ], "usage": null, "obfuscation": "mqjsF5TAAMG" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "4" }, "finish_reason": null } ], "usage": null, "obfuscation": "GZWCRPsIEuq" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")" }, "finish_reason": null } ], "usage": null, "obfuscation": "zcPqXYDOrYB" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " =" }, "finish_reason": null } ], "usage": null, "obfuscation": "AOmRIomkh0" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "HnwUQnbBmfP" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "24" }, "finish_reason": null } ], "usage": null, "obfuscation": "itK52ihAXk" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ".\n\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "Bi4FA9X" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "Tiny" }, "finish_reason": null } ], "usage": null, "obfuscation": "p9KFX3yX" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " Python" }, "finish_reason": null } ], "usage": null, "obfuscation": "jNN1i" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " version" }, "finish_reason": null } ], "usage": null, "obfuscation": "3EgB" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ":\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "LrJ5o8KDH" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "def" }, "finish_reason": null } ], "usage": null, "obfuscation": "y6JAiQtQL" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " fact" }, "finish_reason": null } ], "usage": null, "obfuscation": "7tAd4W6" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(n" }, "finish_reason": null } ], "usage": null, "obfuscation": "Z9gpnAdbVp" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "):\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "jVyk1QTy" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "rz4ueAEex" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " if" }, "finish_reason": null } ], "usage": null, "obfuscation": "XIwctLlOF" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " n" }, "finish_reason": null } ], "usage": null, "obfuscation": "hPq8EudR6t" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " ==" }, "finish_reason": null } ], "usage": null, "obfuscation": "L8sOGc8bK" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "wNKhp3Qp0hN" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "0" }, "finish_reason": null } ], "usage": null, "obfuscation": "dfbBwDtG4cF" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ":" }, "finish_reason": null } ], "usage": null, "obfuscation": "4fZdVsJRj7s" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "sGw" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " #" }, "finish_reason": null } ], "usage": null, "obfuscation": "mkKghG7fDq" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " base" }, "finish_reason": null } ], "usage": null, "obfuscation": "PMaEByQ" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " case" }, "finish_reason": null } ], "usage": null, "obfuscation": "i83PqDb" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "g7T90rVK8V" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "CDNoX" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " return" }, "finish_reason": null } ], "usage": null, "obfuscation": "MrIpF" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "eubArFNjAE9" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "OSTAvlP4Sj9" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "xBvIFBAvjY" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "P2Y8oWvw0" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " return" }, "finish_reason": null } ], "usage": null, "obfuscation": "1awHr" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " n" }, "finish_reason": null } ], "usage": null, "obfuscation": "4zCOtaWzHx" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " *" }, "finish_reason": null } ], "usage": null, "obfuscation": "sMoihigbGz" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " fact" }, "finish_reason": null } ], "usage": null, "obfuscation": "mPiqhXh" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "(n" }, "finish_reason": null } ], "usage": null, "obfuscation": "U4YdbVcKT3" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "-" }, "finish_reason": null } ], "usage": null, "obfuscation": "GnnwSWXr4Xh" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "1" }, "finish_reason": null } ], "usage": null, "obfuscation": "7Y0t3OfDBCY" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")" }, "finish_reason": null } ], "usage": null, "obfuscation": "OVH5yJeQ2mo" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " " }, "finish_reason": null } ], "usage": null, "obfuscation": "arEkZAlSlm7" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " #" }, "finish_reason": null } ], "usage": null, "obfuscation": "PLSZyeDDiz" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " recursive" }, "finish_reason": null } ], "usage": null, "obfuscation": "mF" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " step" }, "finish_reason": null } ], "usage": null, "obfuscation": "X0IJ6eV" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "\n\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "srVqfVFc" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "Key" }, "finish_reason": null } ], "usage": null, "obfuscation": "jxgOvrP9a" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " points" }, "finish_reason": null } ], "usage": null, "obfuscation": "xBOXa" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ":\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "Fxxn0bdHq" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "-" }, "finish_reason": null } ], "usage": null, "obfuscation": "HGUrwJ2rJH8" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " Always" }, "finish_reason": null } ], "usage": null, "obfuscation": "iZ1l0" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " have" }, "finish_reason": null } ], "usage": null, "obfuscation": "gEuKp8o" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " a" }, "finish_reason": null } ], "usage": null, "obfuscation": "zaEvS3Icbd" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " base" }, "finish_reason": null } ], "usage": null, "obfuscation": "PCz4gLx" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " case" }, "finish_reason": null } ], "usage": null, "obfuscation": "TdTsyTi" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " to" }, "finish_reason": null } ], "usage": null, "obfuscation": "A11d5StiB" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " stop" }, "finish_reason": null } ], "usage": null, "obfuscation": "JaJ90jN" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ".\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "ZVGvWzz0z" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "-" }, "finish_reason": null } ], "usage": null, "obfuscation": "zq3IXpm4OWA" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " Each" }, "finish_reason": null } ], "usage": null, "obfuscation": "QDqqxhq" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " call" }, "finish_reason": null } ], "usage": null, "obfuscation": "0Me3ew0" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " must" }, "finish_reason": null } ], "usage": null, "obfuscation": "VKphqX9" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " move" }, "finish_reason": null } ], "usage": null, "obfuscation": "cyywxyR" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " toward" }, "finish_reason": null } ], "usage": null, "obfuscation": "BHCi8" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " the" }, "finish_reason": null } ], "usage": null, "obfuscation": "TdbcDKzL" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " base" }, "finish_reason": null } ], "usage": null, "obfuscation": "36lSvzw" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " case" }, "finish_reason": null } ], "usage": null, "obfuscation": "f5NtI8r" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " (" }, "finish_reason": null } ], "usage": null, "obfuscation": "u6q8VZUoaP" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "sm" }, "finish_reason": null } ], "usage": null, "obfuscation": "GXxFTvkjXg" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "aller" }, "finish_reason": null } ], "usage": null, "obfuscation": "6gfrpNF" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "/s" }, "finish_reason": null } ], "usage": null, "obfuscation": "rEZ28KgsMF" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "impl" }, "finish_reason": null } ], "usage": null, "obfuscation": "rs1docrG" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "er" }, "finish_reason": null } ], "usage": null, "obfuscation": "zRvQxynF1V" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " input" }, "finish_reason": null } ], "usage": null, "obfuscation": "DMJ0og" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ").\n" }, "finish_reason": null } ], "usage": null, "obfuscation": "vMKqyj1C" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "-" }, "finish_reason": null } ], "usage": null, "obfuscation": "ExJ7syi4wrO" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " Missing" }, "finish_reason": null } ], "usage": null, "obfuscation": "Ljv0" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " either" }, "finish_reason": null } ], "usage": null, "obfuscation": "JHwkg" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " leads" }, "finish_reason": null } ], "usage": null, "obfuscation": "1b1bMe" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " to" }, "finish_reason": null } ], "usage": null, "obfuscation": "P4zGSjdNz" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " infinite" }, "finish_reason": null } ], "usage": null, "obfuscation": "S3v" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " recursion" }, "finish_reason": null } ], "usage": null, "obfuscation": "gM" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " (" }, "finish_reason": null } ], "usage": null, "obfuscation": "Y8UnviTOTj" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": "and" }, "finish_reason": null } ], "usage": null, "obfuscation": "xH8Q1FTii" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " a" }, "finish_reason": null } ], "usage": null, "obfuscation": "6ubGrzZ6ot" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": " crash" }, "finish_reason": null } ], "usage": null, "obfuscation": "oyK5bK" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": { "content": ")." }, "finish_reason": null } ], "usage": null, "obfuscation": "Iz6gokAy2V" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [ { "index": 0, "delta": {}, "finish_reason": "stop" } ], "usage": null, "obfuscation": "Mnxw6O" }, { "id": "chatcmpl-DpLF5wgUn4piBACWXAMIcVeY5hgvW", "object": "chat.completion.chunk", "created": 1781128755, "model": "gpt-5-2025-08-07", "service_tier": "default", "system_fingerprint": null, "choices": [], "usage": { "prompt_tokens": 16, "completion_tokens": 797, "total_tokens": 813, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 }, "completion_tokens_details": { "reasoning_tokens": 512, "audio_tokens": 0, "accepted_prediction_tokens": 0, "rejected_prediction_tokens": 0 } }, "obfuscation": "FQ6Wmta" }]Parameters
▶input
one ofrequiredinstructions
stringtemperature
numberminimum: 0maximum: 2max_output_tokens
numberexclusiveMinimum: 0top_p
numberminimum: 0maximum: 1stream
boolean▶tools[]
arraytool_choice
▶text{}
object▶reasoning{}
object▶messages[]
arrayrequiredtemperature
numberminimum: 0maximum: 2max_tokens
numberexclusiveMinimum: 0max_completion_tokens
numberexclusiveMinimum: 0top_p
numberminimum: 0maximum: 1frequency_penalty
numberminimum: -2maximum: 2presence_penalty
numberminimum: -2maximum: 2stream
boolean▶stream_options{}
object▶tools[]
arraytool_choice
response_format
▶modalities[]
array▶audio{}
objectid
stringobject
stringconst: responsecreated_at
numbermodel
string▶output[]
arrayoutput_text
stringstatus
stringenum: in_progress, completed, failed, incomplete▶usage{}
objectid
stringobject
stringcreated
numbermodel
string▶choices[]
array▶usage{}
object