diff --git a/crates/coverage-report/src/requests_expected_differences.json b/crates/coverage-report/src/requests_expected_differences.json index e7d3f8ad..bf1c1316 100644 --- a/crates/coverage-report/src/requests_expected_differences.json +++ b/crates/coverage-report/src/requests_expected_differences.json @@ -236,6 +236,54 @@ "skip": true, "reason": "Image media_type normalization artifact" }, + { + "testCase": "imageUrlMimeTypeFallbackParam", + "source": "ChatCompletions", + "target": "Responses", + "fields": [ + { "pattern": "messages[*].content[*].media_type", "reason": "Google-backed image URL MIME inference normalizes null media_type to image/jpeg" } + ] + }, + { + "testCase": "imageUrlMimeTypeFallbackParam", + "source": "Google", + "target": "ChatCompletions", + "fields": [ + { "pattern": "messages[*].content[*].media_type", "reason": "OpenAI ChatCompletions image URLs do not preserve inferred MIME type on plain HTTPS URLs" } + ] + }, + { + "testCase": "imageUrlMimeTypeFallbackParam", + "source": "*", + "target": "Anthropic", + "fields": [ + { "pattern": "messages[*].content.length", "reason": "Anthropic request path drops the image URL block for this case, leaving only the text part" } + ] + }, + { + "testCase": "imageUrlMimeTypeFallbackParam", + "source": "*", + "target": "Bedrock", + "fields": [ + { "pattern": "messages[*].content.length", "reason": "Bedrock Anthropic-compatible request path drops the image URL block for this case, leaving only the text part" } + ] + }, + { + "testCase": "imageUrlMimeTypeFallbackParam", + "source": "*", + "target": "Bedrock Anthropic", + "fields": [ + { "pattern": "messages[*].content.length", "reason": "Bedrock Anthropic-compatible request path drops the image URL block for this case, leaving only the text part" } + ] + }, + { + "testCase": "imageUrlMimeTypeFallbackParam", + "source": "*", + "target": "Vertex Anthropic", + "fields": [ + { "pattern": "messages[*].content.length", "reason": "Vertex Anthropic-compatible request path drops the image URL block for this case, leaving only the text part" } + ] + }, { "testCase": "instructionsParam", "source": "ChatCompletions", diff --git a/crates/lingua/src/providers/google/convert.rs b/crates/lingua/src/providers/google/convert.rs index cf6e76c0..a06b721e 100644 --- a/crates/lingua/src/providers/google/convert.rs +++ b/crates/lingua/src/providers/google/convert.rs @@ -30,7 +30,7 @@ use crate::universal::request::{ }; use crate::universal::response::{FinishReason, UniversalUsage}; use crate::universal::tools::{BuiltinToolProvider, UniversalTool, UniversalToolType}; -use crate::util::media::parse_base64_data_url; +use crate::util::media::{parse_base64_data_url, parse_file_metadata_from_url}; /// Prefix for synthetic tool call IDs generated when Google omits them. const SYNTHETIC_CALL_ID_PREFIX: &str = "call_"; @@ -55,6 +55,74 @@ fn text_part(text: String) -> GooglePart { } } +fn mime_type_from_url(url: &str) -> String { + if let Some(metadata) = parse_file_metadata_from_url(url) { + if let Some(content_type) = metadata.content_type { + return content_type; + } + + if let Some((_, extension)) = metadata.filename.rsplit_once('.') { + let mime_type = if extension.eq_ignore_ascii_case("jpg") + || extension.eq_ignore_ascii_case("jpeg") + { + Some("image/jpeg") + } else if extension.eq_ignore_ascii_case("png") { + Some("image/png") + } else if extension.eq_ignore_ascii_case("webp") { + Some("image/webp") + } else if extension.eq_ignore_ascii_case("heic") { + Some("image/heic") + } else if extension.eq_ignore_ascii_case("heif") { + Some("image/heif") + } else if extension.eq_ignore_ascii_case("pdf") { + Some("application/pdf") + } else if extension.eq_ignore_ascii_case("txt") { + Some("text/plain") + } else if extension.eq_ignore_ascii_case("flv") { + Some("video/x-flv") + } else if extension.eq_ignore_ascii_case("mov") { + Some("video/quicktime") + } else if extension.eq_ignore_ascii_case("mpeg") { + Some("video/mpeg") + } else if extension.eq_ignore_ascii_case("mpegs") { + Some("video/mpegs") + } else if extension.eq_ignore_ascii_case("mpg") { + Some("video/mpg") + } else if extension.eq_ignore_ascii_case("wmv") { + Some("video/wmv") + } else if extension.eq_ignore_ascii_case("3gp") + || extension.eq_ignore_ascii_case("3gpp") + { + Some("video/3gpp") + } else if extension.eq_ignore_ascii_case("aac") { + Some("audio/x-aac") + } else if extension.eq_ignore_ascii_case("flac") { + Some("audio/flac") + } else if extension.eq_ignore_ascii_case("mp3") { + Some("audio/mp3") + } else if extension.eq_ignore_ascii_case("m4a") { + Some("audio/m4a") + } else if extension.eq_ignore_ascii_case("mpga") { + Some("audio/mpga") + } else if extension.eq_ignore_ascii_case("ogg") { + Some("audio/ogg") + } else if extension.eq_ignore_ascii_case("pcm") { + Some("audio/pcm") + } else if extension.eq_ignore_ascii_case("wav") { + Some("audio/wav") + } else { + None + }; + + if let Some(mime_type) = mime_type { + return mime_type.to_string(); + } + } + } + + DEFAULT_MIME_TYPE.to_string() +} + fn value_to_map(value: &Value) -> Option> { match value { Value::Object(map) => Some(map.clone()), @@ -419,10 +487,12 @@ impl TryFromLLM for GoogleContent { } else if data.starts_with("http://") || data.starts_with("https://") { + let mime_type = + media_type.unwrap_or_else(|| mime_type_from_url(&data)); converted.push(GooglePart { file_data: Some(GoogleFileData { file_uri: Some(data), - mime_type: media_type, + mime_type: Some(mime_type), }), ..Default::default() }); @@ -1310,6 +1380,45 @@ mod tests { assert!(parts[0].inline_data.is_none()); } + #[test] + fn test_image_url_to_google_file_data_infers_mime_type_from_extension() { + let message = Message::User { + content: UserContent::Array(vec![UserContentPart::Image { + image: Value::String("https://example.com/image.jpg".to_string()), + media_type: None, + provider_options: None, + }]), + }; + + let content = >::try_from(message).unwrap(); + assert_eq!(content.role.as_deref(), Some("user")); + let parts = content.parts.unwrap(); + assert_eq!(parts.len(), 1); + let file_data = parts[0].file_data.as_ref().expect("file_data should exist"); + assert_eq!( + file_data.file_uri.as_deref(), + Some("https://example.com/image.jpg") + ); + assert_eq!(file_data.mime_type.as_deref(), Some("image/jpeg")); + assert!(parts[0].inline_data.is_none()); + } + + #[test] + fn test_image_url_to_google_file_data_falls_back_to_default_mime_type() { + let message = Message::User { + content: UserContent::Array(vec![UserContentPart::Image { + image: Value::String("https://example.com/image".to_string()), + media_type: None, + provider_options: None, + }]), + }; + + let content = >::try_from(message).unwrap(); + let parts = content.parts.unwrap(); + let file_data = parts[0].file_data.as_ref().expect("file_data should exist"); + assert_eq!(file_data.mime_type.as_deref(), Some(DEFAULT_MIME_TYPE)); + } + #[test] fn test_message_to_google_content_assistant() { let message = Message::Assistant { diff --git a/payloads/cases/params.ts b/payloads/cases/params.ts index 95c748dc..65053758 100644 --- a/payloads/cases/params.ts +++ b/payloads/cases/params.ts @@ -97,8 +97,7 @@ export const paramsCases: TestCaseCollection = { }, { type: "input_file", - file_url: - "https://www.berkshirehathaway.com/letters/2024ltr.pdf", + file_url: "https://www.berkshirehathaway.com/letters/2024ltr.pdf", }, ], }, @@ -109,6 +108,49 @@ export const paramsCases: TestCaseCollection = { bedrock: null, }, + imageUrlMimeTypeFallbackParam: { + "chat-completions": { + model: OPENAI_CHAT_COMPLETIONS_MODEL, + messages: [ + { + role: "user", + content: [ + { + type: "text", + text: "Describe this image.", + }, + { + type: "image_url", + image_url: { + url: "https://t3.ftcdn.net/jpg/02/36/99/22/360_F_236992283_sNOxCVQeFLd5pdqaKGh8DRGMZy7P4XKm.jpg", + }, + }, + ], + }, + ], + }, + responses: null, + anthropic: null, + google: { + contents: [ + { + role: "user", + parts: [ + { text: "Describe this image." }, + { + fileData: { + fileUri: + "https://t3.ftcdn.net/jpg/02/36/99/22/360_F_236992283_sNOxCVQeFLd5pdqaKGh8DRGMZy7P4XKm.jpg", + mimeType: "image/jpeg", + }, + }, + ], + }, + ], + }, + bedrock: null, + }, + // === Text Response Configuration === textFormatJsonObjectParam: { diff --git a/payloads/scripts/transforms/__snapshots__/transforms.test.ts.snap b/payloads/scripts/transforms/__snapshots__/transforms.test.ts.snap index 03bed7f2..6ce6a95c 100644 --- a/payloads/scripts/transforms/__snapshots__/transforms.test.ts.snap +++ b/payloads/scripts/transforms/__snapshots__/transforms.test.ts.snap @@ -6616,6 +6616,63 @@ exports[`chat-completions → anthropic > frequencyPenaltyParam > response 1`] = } `; +exports[`chat-completions → anthropic > imageUrlMimeTypeFallbackParam > request 1`] = ` +{ + "max_tokens": 4096, + "messages": [ + { + "content": [ + { + "text": "Describe this image.", + "type": "text", + }, + { + "source": { + "type": "url", + "url": "https://t3.ftcdn.net/jpg/02/36/99/22/360_F_236992283_sNOxCVQeFLd5pdqaKGh8DRGMZy7P4XKm.jpg", + }, + "type": "image", + }, + ], + "role": "user", + }, + ], + "model": "claude-sonnet-4-5-20250929", +} +`; + +exports[`chat-completions → anthropic > imageUrlMimeTypeFallbackParam > response 1`] = ` +{ + "choices": [ + { + "finish_reason": "stop", + "index": 0, + "message": { + "annotations": [], + "content": "This image shows an adorable tabby kitten lying on a light wooden floor with its head tilted to the side in an endearing pose. The kitten has distinctive striped markings in shades of gray and brown, characteristic of a tabby pattern. Its large, expressive yellow-green eyes are gazing directly at the camera, creating an engaging and curious expression. + +The kitten appears to be quite young, with soft fluffy fur, prominent whiskers, and pink-lined ears that are perked up attentively. It's positioned in a relaxed, playful manner with its front paws stretched out in front of it. The background is softly blurred, showing hints of furniture or household items, which helps keep the focus on the kitten. + +The lighting in the photo is bright and natural, highlighting the kitten's fur texture and facial features beautifully. This is a classic, heartwarming pet portrait that captures the playful and charming nature of a young cat.", + "role": "assistant", + }, + }, + ], + "created": 0, + "id": "chatcmpl-01Y5kpsbWFEKAmqXM1jdpiLG", + "model": "claude-sonnet-4-5-20250929", + "object": "chat.completion", + "usage": { + "completion_tokens": 213, + "prompt_tokens": 275, + "prompt_tokens_details": { + "cached_tokens": 0, + }, + "total_tokens": 488, + }, +} +`; + exports[`chat-completions → anthropic > instructionsParam > request 1`] = ` { "max_tokens": 4096, @@ -8951,6 +9008,70 @@ exports[`chat-completions → google > frequencyPenaltyParam > response 1`] = ` } `; +exports[`chat-completions → google > imageUrlMimeTypeFallbackParam > request 1`] = ` +{ + "contents": [ + { + "parts": [ + { + "text": "Describe this image.", + }, + { + "fileData": { + "fileUri": "https://t3.ftcdn.net/jpg/02/36/99/22/360_F_236992283_sNOxCVQeFLd5pdqaKGh8DRGMZy7P4XKm.jpg", + "mimeType": "image/jpeg", + }, + }, + ], + "role": "user", + }, + ], + "model": "gemini-2.5-flash", +} +`; + +exports[`chat-completions → google > imageUrlMimeTypeFallbackParam > response 1`] = ` +{ + "choices": [ + { + "finish_reason": "stop", + "index": 0, + "message": { + "annotations": [], + "content": "This is a charming and close-up portrait of a domestic tabby cat, captured with a shallow depth of field that puts the cat in sharp focus against a soft, blurred background. + +The cat is lying down on a light-colored wooden surface, likely a floor or tabletop. Its head is prominently featured, tilted significantly to its left (the viewer's right), which gives it a highly curious and engaging expression. + +Key features of the cat include: +* **Fur:** It has soft, medium-length fur with classic brown and dark grey tabby stripes and swirls, particularly noticeable on its head, ears, and visible paw. +* **Eyes:** Its most striking features are its large, round, and luminous amber-yellow eyes. The pupils are widely dilated, reflecting bright light sources (possibly windows), which gives it an alert, wide-eyed, and almost surprised or intensely focused look. +* **Nose:** A small, delicate pinkish-brown nose is visible at the center of its face. +* **Whiskers:** Long, prominent white whiskers fan out from its muzzle, adding to its expressiveness. +* **Ears:** Its pointed ears are perked up, further conveying alertness and attention. +* **Paws:** One striped paw is visible in the foreground, resting gently on the wooden surface. + +The background on the left side is a soft, blurry expanse of light blue-grey, suggesting a plain wall. The background on the right is a blur of darker, indistinct shapes and colors, hinting at furniture or shelves in an indoor environment. + +The overall impression is one of adorable curiosity and direct engagement, with the cat's tilted head and wide eyes making it appear deeply interested in something, likely the camera or the viewer.", + "role": "assistant", + }, + }, + ], + "created": 0, + "id": "chatcmpl-transformed", + "model": "gemini-2.5-flash", + "object": "chat.completion", + "usage": { + "completion_tokens": 1475, + "completion_tokens_details": { + "reasoning_tokens": 1109, + }, + "prompt_tokens": 0, + "total_tokens": 1475, + }, +} +`; + exports[`chat-completions → google > instructionsParam > request 1`] = ` { "contents": [ @@ -9462,6 +9583,7 @@ exports[`chat-completions → google > multimodalRequest > request 1`] = ` { "fileData": { "fileUri": "https://t3.ftcdn.net/jpg/02/36/99/22/360_F_236992283_sNOxCVQeFLd5pdqaKGh8DRGMZy7P4XKm.jpg", + "mimeType": "image/jpeg", }, }, ], @@ -11567,6 +11689,67 @@ exports[`chat-completions → responses > frequencyPenaltyParam > response 1`] = } `; +exports[`chat-completions → responses > imageUrlMimeTypeFallbackParam > request 1`] = ` +{ + "input": [ + { + "content": [ + { + "text": "Describe this image.", + "type": "input_text", + }, + { + "image_url": "https://t3.ftcdn.net/jpg/02/36/99/22/360_F_236992283_sNOxCVQeFLd5pdqaKGh8DRGMZy7P4XKm.jpg", + "type": "input_image", + }, + ], + "role": "user", + }, + ], + "model": "gpt-5-nano", +} +`; + +exports[`chat-completions → responses > imageUrlMimeTypeFallbackParam > response 1`] = ` +{ + "choices": [ + { + "finish_reason": "stop", + "index": 0, + "message": { + "annotations": [], + "reasoning": "", + "role": "assistant", + }, + }, + { + "finish_reason": "stop", + "index": 1, + "message": { + "annotations": [], + "content": "A cute tabby cat with striped fur is lying on a warm wooden surface, front paws crossed and head tilted, looking directly at the camera with big amber eyes. Its ears are perked and whiskers are prominent, giving a curious, relaxed expression. The background is softly blurred, suggesting an indoor setting with furniture.", + "role": "assistant", + }, + }, + ], + "created": 0, + "id": "chatcmpl-037275c675122e4e0069f24f93c408819f808282ec47178efe", + "model": "gpt-5-nano-2025-08-07", + "object": "chat.completion", + "usage": { + "completion_tokens": 511, + "completion_tokens_details": { + "reasoning_tokens": 384, + }, + "prompt_tokens": 316, + "prompt_tokens_details": { + "cached_tokens": 0, + }, + "total_tokens": 827, + }, +} +`; + exports[`chat-completions → responses > instructionsParam > request 1`] = ` { "input": [ @@ -14190,6 +14373,65 @@ exports[`google → anthropic > imageConfigParam > response 1`] = ` } `; +exports[`google → anthropic > imageUrlMimeTypeFallbackParam > request 1`] = ` +{ + "max_tokens": 4096, + "messages": [ + { + "content": [ + { + "text": "Describe this image.", + "type": "text", + }, + { + "source": { + "type": "url", + "url": "https://t3.ftcdn.net/jpg/02/36/99/22/360_F_236992283_sNOxCVQeFLd5pdqaKGh8DRGMZy7P4XKm.jpg", + }, + "type": "image", + }, + ], + "role": "user", + }, + ], + "model": "claude-sonnet-4-5-20250929", +} +`; + +exports[`google → anthropic > imageUrlMimeTypeFallbackParam > response 1`] = ` +{ + "candidates": [ + { + "content": { + "parts": [ + { + "text": "This image shows an adorable tabby kitten lying on its side on a light wooden floor. The kitten has distinctive features including: + +- **Striking blue-green or golden eyes** that are looking directly at the camera with an endearing, wide-eyed expression +- **Gray and brown tabby striped fur** with classic markby markings +- **Pink inner ears** that are clearly visible as the kitten's head is tilted +- **White whiskers** extending from its face +- **Small paws** stretched out in front + +The kitten appears to be in a playful, relaxed pose, lying on its side with its head tilted at a charming angle. The background is softly blurred but shows what appears to be an indoor home setting with some furniture visible in the background. The shallow depth of field keeps the focus entirely on the kitten's sweet face and expressive eyes, creating an irresistibly cute portrait that captures the playful innocence of a young cat.", + }, + ], + "role": "model", + }, + "finishReason": "STOP", + "index": 0, + }, + ], + "modelVersion": "claude-sonnet-4-5-20250929", + "usageMetadata": { + "cachedContentTokenCount": 0, + "candidatesTokenCount": 217, + "promptTokenCount": 275, + "totalTokenCount": 492, + }, +} +`; + exports[`google → anthropic > instructionsParam > request 1`] = ` { "max_tokens": 4096, @@ -16436,6 +16678,56 @@ If you’d like a PNG or a different size, let me know the dimensions and format } `; +exports[`google → chat-completions > imageUrlMimeTypeFallbackParam > request 1`] = ` +{ + "messages": [ + { + "content": [ + { + "text": "Describe this image.", + "type": "text", + }, + { + "image_url": { + "url": "https://t3.ftcdn.net/jpg/02/36/99/22/360_F_236992283_sNOxCVQeFLd5pdqaKGh8DRGMZy7P4XKm.jpg", + }, + "type": "image_url", + }, + ], + "role": "user", + }, + ], + "model": "gpt-5-nano", +} +`; + +exports[`google → chat-completions > imageUrlMimeTypeFallbackParam > response 1`] = ` +{ + "candidates": [ + { + "content": { + "parts": [ + { + "text": "A domestic short-haired tabby cat lies on a polished wooden surface, resting its front paws and tilting its head. It has gray-brown striped fur, big amber eyes, a pink nose, and long white whiskers. The background is softly blurred, suggesting an indoor room, giving a cozy, candid moment.", + }, + ], + "role": "model", + }, + "finishReason": "STOP", + "index": 0, + }, + ], + "modelVersion": "gpt-5-nano-2025-08-07", + "usageMetadata": { + "cachedContentTokenCount": 0, + "candidatesTokenCount": 74, + "promptTokenCount": 317, + "thoughtsTokenCount": 384, + "totalTokenCount": 775, + }, +} +`; + exports[`google → chat-completions > instructionsParam > request 1`] = ` { "messages": [ @@ -18568,6 +18860,67 @@ If you had a different size or format in mind (PNG, data URL, etc.), tell me and } `; +exports[`google → responses > imageUrlMimeTypeFallbackParam > request 1`] = ` +{ + "input": [ + { + "content": [ + { + "text": "Describe this image.", + "type": "input_text", + }, + { + "image_url": "https://t3.ftcdn.net/jpg/02/36/99/22/360_F_236992283_sNOxCVQeFLd5pdqaKGh8DRGMZy7P4XKm.jpg", + "type": "input_image", + }, + ], + "role": "user", + }, + ], + "model": "gpt-5-nano", +} +`; + +exports[`google → responses > imageUrlMimeTypeFallbackParam > response 1`] = ` +{ + "candidates": [ + { + "content": { + "parts": [ + { + "text": "", + "thought": true, + }, + ], + "role": "model", + }, + "finishReason": "STOP", + "index": 0, + }, + { + "content": { + "parts": [ + { + "text": "A cute tabby cat lies stretched out on a wooden surface, facing the camera. It has striped brown-gray fur, large amber eyes, and long white whiskers. Its front paws are extended forward, and its head is slightly tilted to the side, with a soft, indoor background blurred behind it.", + }, + ], + "role": "model", + }, + "finishReason": "STOP", + "index": 1, + }, + ], + "modelVersion": "gpt-5-nano-2025-08-07", + "usageMetadata": { + "cachedContentTokenCount": 0, + "candidatesTokenCount": 76, + "promptTokenCount": 316, + "thoughtsTokenCount": 384, + "totalTokenCount": 776, + }, +} +`; + exports[`google → responses > instructionsParam > request 1`] = ` { "input": [ diff --git a/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/followup-request.json b/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/followup-request.json new file mode 100644 index 00000000..d2080d01 --- /dev/null +++ b/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/followup-request.json @@ -0,0 +1,30 @@ +{ + "model": "gpt-5-nano", + "messages": [ + { + "role": "user", + "content": [ + { + "type": "text", + "text": "Describe this image." + }, + { + "type": "image_url", + "image_url": { + "url": "https://t3.ftcdn.net/jpg/02/36/99/22/360_F_236992283_sNOxCVQeFLd5pdqaKGh8DRGMZy7P4XKm.jpg" + } + } + ] + }, + { + "role": "assistant", + "content": "A tabby cat is lounging on a smooth wooden table, with its front paws stretched forward. It has striped brown/gray fur, long white whiskers, and large amber eyes that are looking toward the camera with a curious, tilted head. The background is softly blurred, suggesting an indoor, home setting.", + "refusal": null, + "annotations": [] + }, + { + "role": "user", + "content": "What should I do next?" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/followup-response-streaming.json b/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/followup-response-streaming.json new file mode 100644 index 00000000..6961947d --- /dev/null +++ b/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/followup-response-streaming.json @@ -0,0 +1,4376 @@ +[ + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "", + "refusal": null + }, + "finish_reason": null + } + ], + "obfuscation": "bx" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "Nice" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " image" + }, + "finish_reason": null + } + ], + "obfuscation": "keW4RJrL5EOTCA" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finish_reason": null + } + ], + "obfuscation": "FBv" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " What" + }, + "finish_reason": null + } + ], + "obfuscation": "vPWzQWNKtwGsaya" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " would" + }, + "finish_reason": null + } + ], + "obfuscation": "IQAprLO6UdfKnJ" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " like" + }, + "finish_reason": null + } + ], + "obfuscation": "gI9pHNzPY4kz9YZ" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finish_reason": null + } + ], + "obfuscation": "v" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " do" + }, + "finish_reason": null + } + ], + "obfuscation": "8" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " next" + }, + "finish_reason": null + } + ], + "obfuscation": "H5b7lDoPYJL4cWl" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "?" + }, + "finish_reason": null + } + ], + "obfuscation": "0hv" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " Here" + }, + "finish_reason": null + } + ], + "obfuscation": "M03Q4f5lPnLQOqZ" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " are" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " some" + }, + "finish_reason": null + } + ], + "obfuscation": "JmuZDWXTvopZ2Q9" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " options" + }, + "finish_reason": null + } + ], + "obfuscation": "Lj2jHKnB1Alv" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ":\n\n" + }, + "finish_reason": null + } + ], + "obfuscation": "7FvXjLqJYhhd5J1" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "-" + }, + "finish_reason": null + } + ], + "obfuscation": "VH5" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " Caption" + }, + "finish_reason": null + } + ], + "obfuscation": "SdnilQNPvtgu" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " ideas" + }, + "finish_reason": null + } + ], + "obfuscation": "yJXlZFieQb2mz5" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " social" + }, + "finish_reason": null + } + ], + "obfuscation": "aRHsuGtGKHCKv" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " media" + }, + "finish_reason": null + } + ], + "obfuscation": "QWyutnvwSRWjET" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finish_reason": null + } + ], + "obfuscation": "Rr" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "pick" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " your" + }, + "finish_reason": null + } + ], + "obfuscation": "axjJTWFuvjxDOpo" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " vibe" + }, + "finish_reason": null + } + ], + "obfuscation": "oSmEQixEQKMxRJw" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "):\n" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finish_reason": null + } + ], + "obfuscation": "aYE" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finish_reason": null + } + ], + "obfuscation": "UE" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " “" + }, + "finish_reason": null + } + ], + "obfuscation": "ks" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "Cur" + }, + "finish_reason": null + } + ], + "obfuscation": "4" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "iosity" + }, + "finish_reason": null + } + ], + "obfuscation": "Br81Zfvh6Cc2oa" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " on" + }, + "finish_reason": null + } + ], + "obfuscation": "K" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " four" + }, + "finish_reason": null + } + ], + "obfuscation": "0f5uHXF89sSX79x" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " paws" + }, + "finish_reason": null + } + ], + "obfuscation": "0HA5xmUf6ziwNay" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ".”\n" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finish_reason": null + } + ], + "obfuscation": "hZj" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finish_reason": null + } + ], + "obfuscation": "TG" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " “" + }, + "finish_reason": null + } + ], + "obfuscation": "5n" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "Just" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "3N" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " little" + }, + "finish_reason": null + } + ], + "obfuscation": "bM4pMEoa30APA" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " fascinated" + }, + "finish_reason": null + } + ], + "obfuscation": "3TdQaBBDI" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " by" + }, + "finish_reason": null + } + ], + "obfuscation": "e" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " world" + }, + "finish_reason": null + } + ], + "obfuscation": "iARuNJK8jpW6Xv" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "…" + }, + "finish_reason": null + } + ], + "obfuscation": "2p5" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " camera" + }, + "finish_reason": null + } + ], + "obfuscation": "W6wihNvRLJiMG" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ".”\n" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finish_reason": null + } + ], + "obfuscation": "p2z" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finish_reason": null + } + ], + "obfuscation": "xB" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " “" + }, + "finish_reason": null + } + ], + "obfuscation": "NU" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "Nap" + }, + "finish_reason": null + } + ], + "obfuscation": "8" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " break" + }, + "finish_reason": null + } + ], + "obfuscation": "GLyUcRXgVBzrCt" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " interrupted" + }, + "finish_reason": null + } + ], + "obfuscation": "8DcUUk5w" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " by" + }, + "finish_reason": null + } + ], + "obfuscation": "k" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " an" + }, + "finish_reason": null + } + ], + "obfuscation": "8" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " amber" + }, + "finish_reason": null + } + ], + "obfuscation": "Rrpa8blPx4udv7" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " stare" + }, + "finish_reason": null + } + ], + "obfuscation": "eaS4as0zMX9igx" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ".”\n" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finish_reason": null + } + ], + "obfuscation": "r9o" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finish_reason": null + } + ], + "obfuscation": "fw" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " “" + }, + "finish_reason": null + } + ], + "obfuscation": "MR" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "P" + }, + "finish_reason": null + } + ], + "obfuscation": "up3" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "aws" + }, + "finish_reason": null + } + ], + "obfuscation": "8" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " whisk" + }, + "finish_reason": null + } + ], + "obfuscation": "Bk6lXNhalDwRY6" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "ers" + }, + "finish_reason": null + } + ], + "obfuscation": "y" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finish_reason": null + } + ], + "obfuscation": "9D7" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " serious" + }, + "finish_reason": null + } + ], + "obfuscation": "aSIeak7Jakhk" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " business" + }, + "finish_reason": null + } + ], + "obfuscation": "RYIgMZL2b13" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finish_reason": null + } + ], + "obfuscation": "2" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " lounging" + }, + "finish_reason": null + } + ], + "obfuscation": "4rU70YF8fyy" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ".”\n" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finish_reason": null + } + ], + "obfuscation": "T1k" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finish_reason": null + } + ], + "obfuscation": "Mx" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " “" + }, + "finish_reason": null + } + ], + "obfuscation": "gE" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "Sun" + }, + "finish_reason": null + } + ], + "obfuscation": "3" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "lit" + }, + "finish_reason": null + } + ], + "obfuscation": "p" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " throne" + }, + "finish_reason": null + } + ], + "obfuscation": "AHZJXvkooj6me" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finish_reason": null + } + ], + "obfuscation": "Zl3" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " regal" + }, + "finish_reason": null + } + ], + "obfuscation": "iJn3j1ycHHqv1m" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " me" + }, + "finish_reason": null + } + ], + "obfuscation": "g" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "ow" + }, + "finish_reason": null + } + ], + "obfuscation": "uS" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "-n" + }, + "finish_reason": null + } + ], + "obfuscation": "rR" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "ience" + }, + "finish_reason": null + } + ], + "obfuscation": "ijdn6kgl9cCDK9K" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ".”\n\n" + }, + "finish_reason": null + } + ], + "obfuscation": "4m4ycg6BZKzqd9" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "-" + }, + "finish_reason": null + } + ], + "obfuscation": "2BM" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " Short" + }, + "finish_reason": null + } + ], + "obfuscation": "ZxFGjT0YfEnGI6" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " story" + }, + "finish_reason": null + } + ], + "obfuscation": "wlDMAyMODvpTYP" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " prompt" + }, + "finish_reason": null + } + ], + "obfuscation": "y10Y8TdH60BJ4" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ":\n" + }, + "finish_reason": null + } + ], + "obfuscation": "V" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finish_reason": null + } + ], + "obfuscation": "sLu" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finish_reason": null + } + ], + "obfuscation": "IA" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " Write" + }, + "finish_reason": null + } + ], + "obfuscation": "Xph2IG0fTWW9pc" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "r8" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " micro" + }, + "finish_reason": null + } + ], + "obfuscation": "byAOMbTj2Kd12b" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "-story" + }, + "finish_reason": null + } + ], + "obfuscation": "VkWAmM73bnvG06" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " about" + }, + "finish_reason": null + } + ], + "obfuscation": "RZM39DGc82GG4o" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "HK" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " cat" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " who" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " notices" + }, + "finish_reason": null + } + ], + "obfuscation": "ARymNf3qJw8Z" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " something" + }, + "finish_reason": null + } + ], + "obfuscation": "nkizYI1R1v" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " mysterious" + }, + "finish_reason": null + } + ], + "obfuscation": "iKZ7qGwt2" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " on" + }, + "finish_reason": null + } + ], + "obfuscation": "r" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " table" + }, + "finish_reason": null + } + ], + "obfuscation": "O5NvM3dqF9i7pC" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " decides" + }, + "finish_reason": null + } + ], + "obfuscation": "sjNQuSACaKN2" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finish_reason": null + } + ], + "obfuscation": "k" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " investigate" + }, + "finish_reason": null + } + ], + "obfuscation": "x3toD0Y3" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ".\n\n" + }, + "finish_reason": null + } + ], + "obfuscation": "jhZkFxwG4pukuMF" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "-" + }, + "finish_reason": null + } + ], + "obfuscation": "ZHL" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " Quick" + }, + "finish_reason": null + } + ], + "obfuscation": "YNZx8Ti7nr6FuB" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " photo" + }, + "finish_reason": null + } + ], + "obfuscation": "BY6gCkimh2OXZ5" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "-edit" + }, + "finish_reason": null + } + ], + "obfuscation": "EbbXAQymuQ3qUTL" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " tips" + }, + "finish_reason": null + } + ], + "obfuscation": "bs251k3KuoHUilU" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ":\n" + }, + "finish_reason": null + } + ], + "obfuscation": "4" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finish_reason": null + } + ], + "obfuscation": "3ea" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finish_reason": null + } + ], + "obfuscation": "RV" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " Crop" + }, + "finish_reason": null + } + ], + "obfuscation": "I4W9sbUbRkn7hT8" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finish_reason": null + } + ], + "obfuscation": "M" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " put" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " cat" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "’s" + }, + "finish_reason": null + } + ], + "obfuscation": "Xh" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " face" + }, + "finish_reason": null + } + ], + "obfuscation": "yptHwuUaVvXNJjB" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " near" + }, + "finish_reason": null + } + ], + "obfuscation": "czmM90KxIqPMZ5J" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "Py" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " rule" + }, + "finish_reason": null + } + ], + "obfuscation": "XohyoPQyLZEWqov" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "-of" + }, + "finish_reason": null + } + ], + "obfuscation": "X" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "-thirds" + }, + "finish_reason": null + } + ], + "obfuscation": "YGmgALhqXUIEj" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " intersection" + }, + "finish_reason": null + } + ], + "obfuscation": "0OtBWIf" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ".\n" + }, + "finish_reason": null + } + ], + "obfuscation": "J" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finish_reason": null + } + ], + "obfuscation": "iKy" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finish_reason": null + } + ], + "obfuscation": "gl" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " Slight" + }, + "finish_reason": null + } + ], + "obfuscation": "GISLD3XpTA7XL" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "ly" + }, + "finish_reason": null + } + ], + "obfuscation": "P8" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " boost" + }, + "finish_reason": null + } + ], + "obfuscation": "jfxPv7rOC0wzqS" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " contrast" + }, + "finish_reason": null + } + ], + "obfuscation": "beTEjB7RGIW" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " saturation" + }, + "finish_reason": null + } + ], + "obfuscation": "0WVacxnGc" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finish_reason": null + } + ], + "obfuscation": "W" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " make" + }, + "finish_reason": null + } + ], + "obfuscation": "2ZQsjoCLYd7Kt6B" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " eyes" + }, + "finish_reason": null + } + ], + "obfuscation": "rtDNr0Xtuh8lPjk" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " pop" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ".\n" + }, + "finish_reason": null + } + ], + "obfuscation": "f" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finish_reason": null + } + ], + "obfuscation": "bHf" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finish_reason": null + } + ], + "obfuscation": "eA" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " So" + }, + "finish_reason": null + } + ], + "obfuscation": "P" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "ften" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " background" + }, + "finish_reason": null + } + ], + "obfuscation": "gsybBNp0E" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "kC" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " bit" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finish_reason": null + } + ], + "obfuscation": "t" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " emphasize" + }, + "finish_reason": null + } + ], + "obfuscation": "V8feLs1iEp" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " cat" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ".\n\n" + }, + "finish_reason": null + } + ], + "obfuscation": "ZGRTqIYb15uEQaO" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "-" + }, + "finish_reason": null + } + ], + "obfuscation": "wT3" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " Cat" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "-care" + }, + "finish_reason": null + } + ], + "obfuscation": "EMuWSWAar5Jazhe" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "/" + }, + "finish_reason": null + } + ], + "obfuscation": "Cms" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "behavior" + }, + "finish_reason": null + } + ], + "obfuscation": "ZxvTo5fl5CjK" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " ideas" + }, + "finish_reason": null + } + ], + "obfuscation": "9smfbebj3ZeLSV" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ":\n" + }, + "finish_reason": null + } + ], + "obfuscation": "G" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finish_reason": null + } + ], + "obfuscation": "rqH" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finish_reason": null + } + ], + "obfuscation": "fD" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " If" + }, + "finish_reason": null + } + ], + "obfuscation": "U" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " want" + }, + "finish_reason": null + } + ], + "obfuscation": "OwWZpCoM8lEPSiU" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " more" + }, + "finish_reason": null + } + ], + "obfuscation": "R5F9pW2GcCIdIcV" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " playful" + }, + "finish_reason": null + } + ], + "obfuscation": "pRsD3Y8k83Y3" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " shots" + }, + "finish_reason": null + } + ], + "obfuscation": "wMdaSfYxNP77fG" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finish_reason": null + } + ], + "obfuscation": "67T" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " try" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "eN" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " feather" + }, + "finish_reason": null + } + ], + "obfuscation": "D11lICSyqC07" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " wand" + }, + "finish_reason": null + } + ], + "obfuscation": "CpobRgYKMnADUa2" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " or" + }, + "finish_reason": null + } + ], + "obfuscation": "4" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " laser" + }, + "finish_reason": null + } + ], + "obfuscation": "FNT08BkA82HsP4" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " pointer" + }, + "finish_reason": null + } + ], + "obfuscation": "qZbfB5yQa6gX" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " at" + }, + "finish_reason": null + } + ], + "obfuscation": "7" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "fP" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " similar" + }, + "finish_reason": null + } + ], + "obfuscation": "mE5dKi2t67k4" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " angle" + }, + "finish_reason": null + } + ], + "obfuscation": "FU62OdQZEt8CAV" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ".\n" + }, + "finish_reason": null + } + ], + "obfuscation": "o" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finish_reason": null + } + ], + "obfuscation": "9Re" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finish_reason": null + } + ], + "obfuscation": "7D" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " Create" + }, + "finish_reason": null + } + ], + "obfuscation": "KITRib5tZR0W1" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "GH" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " cozy" + }, + "finish_reason": null + } + ], + "obfuscation": "YGG79ntGAtFZ6Oe" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finish_reason": null + } + ], + "obfuscation": "BA0" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " low" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "-table" + }, + "finish_reason": null + } + ], + "obfuscation": "hNk0WrCRKfrcQ4" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " perch" + }, + "finish_reason": null + } + ], + "obfuscation": "qsO2p96yRxE4il" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " with" + }, + "finish_reason": null + } + ], + "obfuscation": "Y82ylVxbwbMTHxn" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "2L" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " soft" + }, + "finish_reason": null + } + ], + "obfuscation": "NMCN0BBKkoXa5yy" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " blanket" + }, + "finish_reason": null + } + ], + "obfuscation": "AkpMf0o1TDKE" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " more" + }, + "finish_reason": null + } + ], + "obfuscation": "nrZznE7IAZC90Jh" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " lounging" + }, + "finish_reason": null + } + ], + "obfuscation": "QonPrQK8QcQ" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " photos" + }, + "finish_reason": null + } + ], + "obfuscation": "Vk6JQlUFbBNUd" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": ".\n\n" + }, + "finish_reason": null + } + ], + "obfuscation": "lFPyQUHioYxjbBq" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "-" + }, + "finish_reason": null + } + ], + "obfuscation": "27Y" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " If" + }, + "finish_reason": null + } + ], + "obfuscation": "Y" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " want" + }, + "finish_reason": null + } + ], + "obfuscation": "34VRmxZcppIRjNi" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finish_reason": null + } + ], + "obfuscation": "cIl" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " I" + }, + "finish_reason": null + } + ], + "obfuscation": "lS" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " can" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " generate" + }, + "finish_reason": null + } + ], + "obfuscation": "bcY0Ltq6G4h" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "hY" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " caption" + }, + "finish_reason": null + } + ], + "obfuscation": "lF3oNDhiUH4o" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finish_reason": null + } + ], + "obfuscation": "M7x" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "oE" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " short" + }, + "finish_reason": null + } + ], + "obfuscation": "UPha7uMeYjG4JY" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " story" + }, + "finish_reason": null + } + ], + "obfuscation": "cuh3pdJIVEyJKq" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finish_reason": null + } + ], + "obfuscation": "faP" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " or" + }, + "finish_reason": null + } + ], + "obfuscation": "7" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " edit" + }, + "finish_reason": null + } + ], + "obfuscation": "aZTCWNI2MSXWY9T" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " suggestions" + }, + "finish_reason": null + } + ], + "obfuscation": "SVAFHnS2" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " tailored" + }, + "finish_reason": null + } + ], + "obfuscation": "hyn0FUg2SCk" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finish_reason": null + } + ], + "obfuscation": "s" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "EZ" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " style" + }, + "finish_reason": null + } + ], + "obfuscation": "hc8BJVaWchf07v" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " like" + }, + "finish_reason": null + } + ], + "obfuscation": "yOCrXreszOH0bVP" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finish_reason": null + } + ], + "obfuscation": "dhp" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " Which" + }, + "finish_reason": null + } + ], + "obfuscation": "8ri0qLgFYjOWfc" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " would" + }, + "finish_reason": null + } + ], + "obfuscation": "1lsL6reZRQssTF" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " prefer" + }, + "finish_reason": null + } + ], + "obfuscation": "HvygsTgF2awLk" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "?" + }, + "finish_reason": null + } + ], + "obfuscation": "o9y" + }, + { + "id": "chatcmpl-Da43Bwvu3rXWSU2ZZrTVv2AyjGajR", + "object": "chat.completion.chunk", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": {}, + "finish_reason": "stop" + } + ], + "obfuscation": "Y7ZTfRFiVsVID8" + } +] \ No newline at end of file diff --git a/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/followup-response.json b/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/followup-response.json new file mode 100644 index 00000000..36a42119 --- /dev/null +++ b/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/followup-response.json @@ -0,0 +1,35 @@ +{ + "id": "chatcmpl-Da43BfmgyonCMq2T9lcSkTNlWalMh", + "object": "chat.completion", + "created": 1777487749, + "model": "gpt-5-nano-2025-08-07", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "Nice image. What would you like to do next? Here are some options. Pick one (or tell me your goal) and I’ll help.\n\n- Caption ideas for social media\n Funny:\n - \"Just another day of expert lounging.\"\n - \"I wasn’t sleeping, I was posing.\"\n - \"If I fits, I sits.\" \n - \"Table, meet fur-iture.\"\n Cute:\n - \"Chillin’ in the sun and soaking up the vibes.\"\n - \"Head tilted, heart full.\"\n - \"Paws on the table, paws-itively adorable.\"\n Wholesome:\n - \"Home is where my paws rest.\"\n - \"A calm moment with my favorite human.\"\n - \"Curious eyes, cozy life.\"\n- Alt text for accessibility\n - “A tabby cat with amber eyes lying on a wooden table, front paws stretched forward, head tilted, indoors with a blurred background.”\n- Quick photo edit tips\n - Crop to place the eyes near the top third of the frame (rule of thirds).\n - Slightly boost sharpness on the eyes, and adjust white balance to emphasize warm wood tones.\n - Increase contrast a touch to make the cat pop against the background.\n - If needed, blur the background a bit more to reduce distractions.\n- Short story or caption in a particular style (romantic, humorous, etc.)\n- Use in a blog or product page (SEO-friendly caption): I can craft a caption that includes keywords like “cat photo,” “tabby cat,” “home decor,” etc.\n\nIf you tell me which option you want, I’ll generate specific captions, edits, or text tailored to your goal.", + "refusal": null, + "annotations": [] + }, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 395, + "completion_tokens": 1575, + "total_tokens": 1970, + "prompt_tokens_details": { + "cached_tokens": 0, + "audio_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 1216, + "audio_tokens": 0, + "accepted_prediction_tokens": 0, + "rejected_prediction_tokens": 0 + } + }, + "service_tier": "default", + "system_fingerprint": null +} \ No newline at end of file diff --git a/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/request.json b/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/request.json new file mode 100644 index 00000000..ea16c6c6 --- /dev/null +++ b/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/request.json @@ -0,0 +1,20 @@ +{ + "model": "gpt-5-nano", + "messages": [ + { + "role": "user", + "content": [ + { + "type": "text", + "text": "Describe this image." + }, + { + "type": "image_url", + "image_url": { + "url": "https://t3.ftcdn.net/jpg/02/36/99/22/360_F_236992283_sNOxCVQeFLd5pdqaKGh8DRGMZy7P4XKm.jpg" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/response-streaming.json b/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/response-streaming.json new file mode 100644 index 00000000..bffe134d --- /dev/null +++ b/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/response-streaming.json @@ -0,0 +1,1280 @@ +[ + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "", + "refusal": null + }, + "finish_reason": null + } + ], + "obfuscation": "ea" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "A" + }, + "finish_reason": null + } + ], + "obfuscation": "htu" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " tab" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "by" + }, + "finish_reason": null + } + ], + "obfuscation": "vH" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " cat" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " with" + }, + "finish_reason": null + } + ], + "obfuscation": "uMzZLzAbr8yMf4x" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " brown" + }, + "finish_reason": null + } + ], + "obfuscation": "4U9WRkhjmEFgk9" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " black" + }, + "finish_reason": null + } + ], + "obfuscation": "c7p5EMnhPpYJme" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " stripes" + }, + "finish_reason": null + } + ], + "obfuscation": "MvUSlK8jqfMh" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " lies" + }, + "finish_reason": null + } + ], + "obfuscation": "E8HNrXpK4MCw6hi" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " on" + }, + "finish_reason": null + } + ], + "obfuscation": "G" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finish_reason": null + } + ], + "obfuscation": "K2" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " smooth" + }, + "finish_reason": null + } + ], + "obfuscation": "ucqgoi1BoMsv6" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " wooden" + }, + "finish_reason": null + } + ], + "obfuscation": "UyiYpSu4BvcKP" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " table" + }, + "finish_reason": null + } + ], + "obfuscation": "TnPDDQ8zyCwJhe" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finish_reason": null + } + ], + "obfuscation": "cK6" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " its" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " head" + }, + "finish_reason": null + } + ], + "obfuscation": "GF6vsOrJCxbbtk7" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " resting" + }, + "finish_reason": null + } + ], + "obfuscation": "L2MsUjQ8wW4K" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " on" + }, + "finish_reason": null + } + ], + "obfuscation": "E" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " its" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " front" + }, + "finish_reason": null + } + ], + "obfuscation": "eFoxbJbquaRCdZ" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " paws" + }, + "finish_reason": null + } + ], + "obfuscation": "IxffrRUpbRYch6s" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finish_reason": null + } + ], + "obfuscation": "cpZ" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " It" + }, + "finish_reason": null + } + ], + "obfuscation": "6" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " has" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " large" + }, + "finish_reason": null + } + ], + "obfuscation": "QrgQ7Me2rq1UO4" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " amber" + }, + "finish_reason": null + } + ], + "obfuscation": "dDEeVaxEriyVl4" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " eyes" + }, + "finish_reason": null + } + ], + "obfuscation": "Ho9iWbefWLG1qKA" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " looking" + }, + "finish_reason": null + } + ], + "obfuscation": "b0fOEA3Ne9WR" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " toward" + }, + "finish_reason": null + } + ], + "obfuscation": "fTV3Dtft3Id30" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " camera" + }, + "finish_reason": null + } + ], + "obfuscation": "kgJpmYYnqjerP" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finish_reason": null + } + ], + "obfuscation": "ndF" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " with" + }, + "finish_reason": null + } + ], + "obfuscation": "ZiPiye7KbA30OKC" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " perk" + }, + "finish_reason": null + } + ], + "obfuscation": "UkpsMEIJ5MGDVwk" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "ed" + }, + "finish_reason": null + } + ], + "obfuscation": "fd" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " ears" + }, + "finish_reason": null + } + ], + "obfuscation": "ksBaadCIoszalDS" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " long" + }, + "finish_reason": null + } + ], + "obfuscation": "GWN9bvTYDb7IWbK" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " whisk" + }, + "finish_reason": null + } + ], + "obfuscation": "TJFEIhNAjZvNga" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "ers" + }, + "finish_reason": null + } + ], + "obfuscation": "l" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finish_reason": null + } + ], + "obfuscation": "Nho" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " The" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " background" + }, + "finish_reason": null + } + ], + "obfuscation": "zj0JWwPOg" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finish_reason": null + } + ], + "obfuscation": "S" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " softly" + }, + "finish_reason": null + } + ], + "obfuscation": "830s979K17nCK" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " blurred" + }, + "finish_reason": null + } + ], + "obfuscation": "pLX8DIvpxPwU" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finish_reason": null + } + ], + "obfuscation": "UFa" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " suggesting" + }, + "finish_reason": null + } + ], + "obfuscation": "diuyTxDop" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " an" + }, + "finish_reason": null + } + ], + "obfuscation": "g" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " indoor" + }, + "finish_reason": null + } + ], + "obfuscation": "kNO0uesU6Jna3" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " home" + }, + "finish_reason": null + } + ], + "obfuscation": "UX1W3KylTnkqqF4" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " setting" + }, + "finish_reason": null + } + ], + "obfuscation": "8bLBOjMtz14d" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finish_reason": null + } + ], + "obfuscation": "zGS" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " warm" + }, + "finish_reason": null + } + ], + "obfuscation": "QAvlbk1Kt8yF2eR" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " wood" + }, + "finish_reason": null + } + ], + "obfuscation": "FYHdiB7AD5QCULC" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " tones" + }, + "finish_reason": null + } + ], + "obfuscation": "5JmBl2KaLlgMNV" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finish_reason": null + } + ], + "obfuscation": "r" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " table" + }, + "finish_reason": null + } + ], + "obfuscation": "Vj8v5xJIHmTQvO" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " highlight" + }, + "finish_reason": null + } + ], + "obfuscation": "6DoLi3WZxP" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " cat" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "’s" + }, + "finish_reason": null + } + ], + "obfuscation": "e6" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": " fur" + }, + "finish_reason": null + } + ], + "obfuscation": "" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finish_reason": null + } + ], + "obfuscation": "mza" + }, + { + "id": "chatcmpl-Da43620lBk1Sd4CB7ykyS4i0LFtyu", + "object": "chat.completion.chunk", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "service_tier": "default", + "system_fingerprint": null, + "choices": [ + { + "index": 0, + "delta": {}, + "finish_reason": "stop" + } + ], + "obfuscation": "oM3GFtjlKNwZtf" + } +] \ No newline at end of file diff --git a/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/response.json b/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/response.json new file mode 100644 index 00000000..9008b58e --- /dev/null +++ b/payloads/snapshots/imageUrlMimeTypeFallbackParam/chat-completions/response.json @@ -0,0 +1,35 @@ +{ + "id": "chatcmpl-Da436vOunFgj1mgi3l2JZ9hywDDek", + "object": "chat.completion", + "created": 1777487744, + "model": "gpt-5-nano-2025-08-07", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "A tabby cat is lounging on a smooth wooden table, with its front paws stretched forward. It has striped brown/gray fur, long white whiskers, and large amber eyes that are looking toward the camera with a curious, tilted head. The background is softly blurred, suggesting an indoor, home setting.", + "refusal": null, + "annotations": [] + }, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 317, + "completion_tokens": 456, + "total_tokens": 773, + "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 +} \ No newline at end of file diff --git a/payloads/snapshots/imageUrlMimeTypeFallbackParam/google/error.json b/payloads/snapshots/imageUrlMimeTypeFallbackParam/google/error.json new file mode 100644 index 00000000..dcbddbbc --- /dev/null +++ b/payloads/snapshots/imageUrlMimeTypeFallbackParam/google/error.json @@ -0,0 +1,3 @@ +{ + "error": "Error: ApiError: {\n \"error\": {\n \"code\": 400,\n \"message\": \"Cannot fetch content from the provided URL.\",\n \"status\": \"INVALID_ARGUMENT\"\n }\n}\n" +} \ No newline at end of file diff --git a/payloads/snapshots/imageUrlMimeTypeFallbackParam/google/request.json b/payloads/snapshots/imageUrlMimeTypeFallbackParam/google/request.json new file mode 100644 index 00000000..1b157bd4 --- /dev/null +++ b/payloads/snapshots/imageUrlMimeTypeFallbackParam/google/request.json @@ -0,0 +1,18 @@ +{ + "contents": [ + { + "role": "user", + "parts": [ + { + "text": "Describe this image." + }, + { + "fileData": { + "fileUri": "https://t3.ftcdn.net/jpg/02/36/99/22/360_F_236992283_sNOxCVQeFLd5pdqaKGh8DRGMZy7P4XKm.jpg", + "mimeType": "image/jpeg" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/payloads/transforms/chat-completions_to_anthropic/imageUrlMimeTypeFallbackParam.json b/payloads/transforms/chat-completions_to_anthropic/imageUrlMimeTypeFallbackParam.json new file mode 100644 index 00000000..f8adeb59 --- /dev/null +++ b/payloads/transforms/chat-completions_to_anthropic/imageUrlMimeTypeFallbackParam.json @@ -0,0 +1,27 @@ +{ + "model": "claude-sonnet-4-5-20250929", + "id": "msg_01Y5kpsbWFEKAmqXM1jdpiLG", + "type": "message", + "role": "assistant", + "content": [ + { + "type": "text", + "text": "This image shows an adorable tabby kitten lying on a light wooden floor with its head tilted to the side in an endearing pose. The kitten has distinctive striped markings in shades of gray and brown, characteristic of a tabby pattern. Its large, expressive yellow-green eyes are gazing directly at the camera, creating an engaging and curious expression.\n\nThe kitten appears to be quite young, with soft fluffy fur, prominent whiskers, and pink-lined ears that are perked up attentively. It's positioned in a relaxed, playful manner with its front paws stretched out in front of it. The background is softly blurred, showing hints of furniture or household items, which helps keep the focus on the kitten.\n\nThe lighting in the photo is bright and natural, highlighting the kitten's fur texture and facial features beautifully. This is a classic, heartwarming pet portrait that captures the playful and charming nature of a young cat." + } + ], + "stop_reason": "end_turn", + "stop_sequence": null, + "stop_details": null, + "usage": { + "input_tokens": 275, + "cache_creation_input_tokens": 0, + "cache_read_input_tokens": 0, + "cache_creation": { + "ephemeral_5m_input_tokens": 0, + "ephemeral_1h_input_tokens": 0 + }, + "output_tokens": 213, + "service_tier": "standard", + "inference_geo": "not_available" + } +} \ No newline at end of file diff --git a/payloads/transforms/chat-completions_to_google/imageUrlMimeTypeFallbackParam.json b/payloads/transforms/chat-completions_to_google/imageUrlMimeTypeFallbackParam.json new file mode 100644 index 00000000..f6c91606 --- /dev/null +++ b/payloads/transforms/chat-completions_to_google/imageUrlMimeTypeFallbackParam.json @@ -0,0 +1,22 @@ +{ + "candidates": [ + { + "content": { + "parts": [ + { + "text": "This is a charming and close-up portrait of a domestic tabby cat, captured with a shallow depth of field that puts the cat in sharp focus against a soft, blurred background.\n\nThe cat is lying down on a light-colored wooden surface, likely a floor or tabletop. Its head is prominently featured, tilted significantly to its left (the viewer's right), which gives it a highly curious and engaging expression.\n\nKey features of the cat include:\n* **Fur:** It has soft, medium-length fur with classic brown and dark grey tabby stripes and swirls, particularly noticeable on its head, ears, and visible paw.\n* **Eyes:** Its most striking features are its large, round, and luminous amber-yellow eyes. The pupils are widely dilated, reflecting bright light sources (possibly windows), which gives it an alert, wide-eyed, and almost surprised or intensely focused look.\n* **Nose:** A small, delicate pinkish-brown nose is visible at the center of its face.\n* **Whiskers:** Long, prominent white whiskers fan out from its muzzle, adding to its expressiveness.\n* **Ears:** Its pointed ears are perked up, further conveying alertness and attention.\n* **Paws:** One striped paw is visible in the foreground, resting gently on the wooden surface.\n\nThe background on the left side is a soft, blurry expanse of light blue-grey, suggesting a plain wall. The background on the right is a blur of darker, indistinct shapes and colors, hinting at furniture or shelves in an indoor environment.\n\nThe overall impression is one of adorable curiosity and direct engagement, with the cat's tilted head and wide eyes making it appear deeply interested in something, likely the camera or the viewer." + } + ], + "role": "model" + }, + "finishReason": "STOP", + "index": 0 + } + ], + "usageMetadata": { + "candidatesTokenCount": 366, + "thoughtsTokenCount": 1109 + }, + "modelVersion": "gemini-2.5-flash", + "responseId": "k0_yafK-CZ3c_uMP3-HdgAg" +} \ No newline at end of file diff --git a/payloads/transforms/chat-completions_to_responses/imageUrlMimeTypeFallbackParam.json b/payloads/transforms/chat-completions_to_responses/imageUrlMimeTypeFallbackParam.json new file mode 100644 index 00000000..86736564 --- /dev/null +++ b/payloads/transforms/chat-completions_to_responses/imageUrlMimeTypeFallbackParam.json @@ -0,0 +1,78 @@ +{ + "id": "resp_037275c675122e4e0069f24f93c408819f808282ec47178efe", + "object": "response", + "created_at": 1777487764, + "status": "completed", + "background": false, + "billing": { + "payer": "developer" + }, + "completed_at": 1777487769, + "error": null, + "frequency_penalty": 0, + "incomplete_details": null, + "instructions": null, + "max_output_tokens": null, + "max_tool_calls": null, + "model": "gpt-5-nano-2025-08-07", + "moderation": null, + "output": [ + { + "id": "rs_037275c675122e4e0069f24f94bdf0819fb5c085e6e52cb974", + "type": "reasoning", + "summary": [] + }, + { + "id": "msg_037275c675122e4e0069f24f993600819fa2278e74d188f072", + "type": "message", + "status": "completed", + "content": [ + { + "type": "output_text", + "annotations": [], + "logprobs": [], + "text": "A cute tabby cat with striped fur is lying on a warm wooden surface, front paws crossed and head tilted, looking directly at the camera with big amber eyes. Its ears are perked and whiskers are prominent, giving a curious, relaxed expression. The background is softly blurred, suggesting an indoor setting with furniture." + } + ], + "role": "assistant" + } + ], + "parallel_tool_calls": true, + "presence_penalty": 0, + "previous_response_id": null, + "prompt_cache_key": null, + "prompt_cache_retention": "in_memory", + "reasoning": { + "effort": "medium", + "summary": null + }, + "safety_identifier": null, + "service_tier": "default", + "store": true, + "temperature": 1, + "text": { + "format": { + "type": "text" + }, + "verbosity": "medium" + }, + "tool_choice": "auto", + "tools": [], + "top_logprobs": 0, + "top_p": 1, + "truncation": "disabled", + "usage": { + "input_tokens": 316, + "input_tokens_details": { + "cached_tokens": 0 + }, + "output_tokens": 511, + "output_tokens_details": { + "reasoning_tokens": 384 + }, + "total_tokens": 827 + }, + "user": null, + "metadata": {}, + "output_text": "A cute tabby cat with striped fur is lying on a warm wooden surface, front paws crossed and head tilted, looking directly at the camera with big amber eyes. Its ears are perked and whiskers are prominent, giving a curious, relaxed expression. The background is softly blurred, suggesting an indoor setting with furniture." +} \ No newline at end of file diff --git a/payloads/transforms/google_to_anthropic/imageUrlMimeTypeFallbackParam.json b/payloads/transforms/google_to_anthropic/imageUrlMimeTypeFallbackParam.json new file mode 100644 index 00000000..a02f8d13 --- /dev/null +++ b/payloads/transforms/google_to_anthropic/imageUrlMimeTypeFallbackParam.json @@ -0,0 +1,27 @@ +{ + "model": "claude-sonnet-4-5-20250929", + "id": "msg_01C8V7ik6QL4PucPtYUpxm9y", + "type": "message", + "role": "assistant", + "content": [ + { + "type": "text", + "text": "This image shows an adorable tabby kitten lying on its side on a light wooden floor. The kitten has distinctive features including:\n\n- **Striking blue-green or golden eyes** that are looking directly at the camera with an endearing, wide-eyed expression\n- **Gray and brown tabby striped fur** with classic markby markings\n- **Pink inner ears** that are clearly visible as the kitten's head is tilted\n- **White whiskers** extending from its face\n- **Small paws** stretched out in front\n\nThe kitten appears to be in a playful, relaxed pose, lying on its side with its head tilted at a charming angle. The background is softly blurred but shows what appears to be an indoor home setting with some furniture visible in the background. The shallow depth of field keeps the focus entirely on the kitten's sweet face and expressive eyes, creating an irresistibly cute portrait that captures the playful innocence of a young cat." + } + ], + "stop_reason": "end_turn", + "stop_sequence": null, + "stop_details": null, + "usage": { + "input_tokens": 275, + "cache_creation_input_tokens": 0, + "cache_read_input_tokens": 0, + "cache_creation": { + "ephemeral_5m_input_tokens": 0, + "ephemeral_1h_input_tokens": 0 + }, + "output_tokens": 217, + "service_tier": "standard", + "inference_geo": "not_available" + } +} \ No newline at end of file diff --git a/payloads/transforms/google_to_chat-completions/imageUrlMimeTypeFallbackParam.json b/payloads/transforms/google_to_chat-completions/imageUrlMimeTypeFallbackParam.json new file mode 100644 index 00000000..02b9a2e4 --- /dev/null +++ b/payloads/transforms/google_to_chat-completions/imageUrlMimeTypeFallbackParam.json @@ -0,0 +1,35 @@ +{ + "id": "chatcmpl-Da43PbF4DOvFoQFx0wA2eNJc93lCo", + "object": "chat.completion", + "created": 1777487763, + "model": "gpt-5-nano-2025-08-07", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "A domestic short-haired tabby cat lies on a polished wooden surface, resting its front paws and tilting its head. It has gray-brown striped fur, big amber eyes, a pink nose, and long white whiskers. The background is softly blurred, suggesting an indoor room, giving a cozy, candid moment.", + "refusal": null, + "annotations": [] + }, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 317, + "completion_tokens": 458, + "total_tokens": 775, + "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 +} \ No newline at end of file diff --git a/payloads/transforms/google_to_responses/imageUrlMimeTypeFallbackParam.json b/payloads/transforms/google_to_responses/imageUrlMimeTypeFallbackParam.json new file mode 100644 index 00000000..4c27c38c --- /dev/null +++ b/payloads/transforms/google_to_responses/imageUrlMimeTypeFallbackParam.json @@ -0,0 +1,78 @@ +{ + "id": "resp_0aa36e242864a86a0069f24f9835d481a3bdc77bf88f84df2e", + "object": "response", + "created_at": 1777487768, + "status": "completed", + "background": false, + "billing": { + "payer": "developer" + }, + "completed_at": 1777487773, + "error": null, + "frequency_penalty": 0, + "incomplete_details": null, + "instructions": null, + "max_output_tokens": null, + "max_tool_calls": null, + "model": "gpt-5-nano-2025-08-07", + "moderation": null, + "output": [ + { + "id": "rs_0aa36e242864a86a0069f24f9937fc81a3b6d293dd123d1bdd", + "type": "reasoning", + "summary": [] + }, + { + "id": "msg_0aa36e242864a86a0069f24f9d011081a38026e61bd573f9d4", + "type": "message", + "status": "completed", + "content": [ + { + "type": "output_text", + "annotations": [], + "logprobs": [], + "text": "A cute tabby cat lies stretched out on a wooden surface, facing the camera. It has striped brown-gray fur, large amber eyes, and long white whiskers. Its front paws are extended forward, and its head is slightly tilted to the side, with a soft, indoor background blurred behind it." + } + ], + "role": "assistant" + } + ], + "parallel_tool_calls": true, + "presence_penalty": 0, + "previous_response_id": null, + "prompt_cache_key": null, + "prompt_cache_retention": "in_memory", + "reasoning": { + "effort": "medium", + "summary": null + }, + "safety_identifier": null, + "service_tier": "default", + "store": true, + "temperature": 1, + "text": { + "format": { + "type": "text" + }, + "verbosity": "medium" + }, + "tool_choice": "auto", + "tools": [], + "top_logprobs": 0, + "top_p": 1, + "truncation": "disabled", + "usage": { + "input_tokens": 316, + "input_tokens_details": { + "cached_tokens": 0 + }, + "output_tokens": 460, + "output_tokens_details": { + "reasoning_tokens": 384 + }, + "total_tokens": 776 + }, + "user": null, + "metadata": {}, + "output_text": "A cute tabby cat lies stretched out on a wooden surface, facing the camera. It has striped brown-gray fur, large amber eyes, and long white whiskers. Its front paws are extended forward, and its head is slightly tilted to the side, with a soft, indoor background blurred behind it." +} \ No newline at end of file