@ai-sdk/openai 3.0.14 → 3.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +6 -5
- package/src/chat/__fixtures__/azure-model-router.1.chunks.txt +8 -0
- package/src/chat/__snapshots__/openai-chat-language-model.test.ts.snap +88 -0
- package/src/chat/convert-openai-chat-usage.ts +57 -0
- package/src/chat/convert-to-openai-chat-messages.test.ts +516 -0
- package/src/chat/convert-to-openai-chat-messages.ts +225 -0
- package/src/chat/get-response-metadata.ts +15 -0
- package/src/chat/map-openai-finish-reason.ts +19 -0
- package/src/chat/openai-chat-api.ts +198 -0
- package/src/chat/openai-chat-language-model.test.ts +3496 -0
- package/src/chat/openai-chat-language-model.ts +700 -0
- package/src/chat/openai-chat-options.ts +186 -0
- package/src/chat/openai-chat-prepare-tools.test.ts +322 -0
- package/src/chat/openai-chat-prepare-tools.ts +84 -0
- package/src/chat/openai-chat-prompt.ts +70 -0
- package/src/completion/convert-openai-completion-usage.ts +46 -0
- package/src/completion/convert-to-openai-completion-prompt.ts +93 -0
- package/src/completion/get-response-metadata.ts +15 -0
- package/src/completion/map-openai-finish-reason.ts +19 -0
- package/src/completion/openai-completion-api.ts +81 -0
- package/src/completion/openai-completion-language-model.test.ts +752 -0
- package/src/completion/openai-completion-language-model.ts +336 -0
- package/src/completion/openai-completion-options.ts +58 -0
- package/src/embedding/__snapshots__/openai-embedding-model.test.ts.snap +43 -0
- package/src/embedding/openai-embedding-api.ts +13 -0
- package/src/embedding/openai-embedding-model.test.ts +146 -0
- package/src/embedding/openai-embedding-model.ts +95 -0
- package/src/embedding/openai-embedding-options.ts +30 -0
- package/src/image/openai-image-api.ts +35 -0
- package/src/image/openai-image-model.test.ts +722 -0
- package/src/image/openai-image-model.ts +305 -0
- package/src/image/openai-image-options.ts +28 -0
- package/src/index.ts +9 -0
- package/src/internal/index.ts +19 -0
- package/src/openai-config.ts +18 -0
- package/src/openai-error.test.ts +34 -0
- package/src/openai-error.ts +22 -0
- package/src/openai-language-model-capabilities.test.ts +93 -0
- package/src/openai-language-model-capabilities.ts +54 -0
- package/src/openai-provider.test.ts +98 -0
- package/src/openai-provider.ts +270 -0
- package/src/openai-tools.ts +114 -0
- package/src/responses/__fixtures__/openai-apply-patch-tool-delete.1.chunks.txt +5 -0
- package/src/responses/__fixtures__/openai-apply-patch-tool.1.chunks.txt +38 -0
- package/src/responses/__fixtures__/openai-apply-patch-tool.1.json +69 -0
- package/src/responses/__fixtures__/openai-code-interpreter-tool.1.chunks.txt +393 -0
- package/src/responses/__fixtures__/openai-code-interpreter-tool.1.json +137 -0
- package/src/responses/__fixtures__/openai-error.1.chunks.txt +4 -0
- package/src/responses/__fixtures__/openai-error.1.json +8 -0
- package/src/responses/__fixtures__/openai-file-search-tool.1.chunks.txt +94 -0
- package/src/responses/__fixtures__/openai-file-search-tool.1.json +89 -0
- package/src/responses/__fixtures__/openai-file-search-tool.2.chunks.txt +93 -0
- package/src/responses/__fixtures__/openai-file-search-tool.2.json +112 -0
- package/src/responses/__fixtures__/openai-image-generation-tool.1.chunks.txt +16 -0
- package/src/responses/__fixtures__/openai-image-generation-tool.1.json +96 -0
- package/src/responses/__fixtures__/openai-local-shell-tool.1.chunks.txt +7 -0
- package/src/responses/__fixtures__/openai-local-shell-tool.1.json +70 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.1.chunks.txt +11 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.1.json +169 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.2.chunks.txt +123 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.2.json +176 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.3.chunks.txt +11 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.3.json +169 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.4.chunks.txt +84 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.4.json +182 -0
- package/src/responses/__fixtures__/openai-mcp-tool.1.chunks.txt +373 -0
- package/src/responses/__fixtures__/openai-mcp-tool.1.json +159 -0
- package/src/responses/__fixtures__/openai-reasoning-encrypted-content.1.chunks.txt +110 -0
- package/src/responses/__fixtures__/openai-reasoning-encrypted-content.1.json +117 -0
- package/src/responses/__fixtures__/openai-shell-tool.1.chunks.txt +182 -0
- package/src/responses/__fixtures__/openai-shell-tool.1.json +73 -0
- package/src/responses/__fixtures__/openai-web-search-tool.1.chunks.txt +185 -0
- package/src/responses/__fixtures__/openai-web-search-tool.1.json +266 -0
- package/src/responses/__snapshots__/openai-responses-language-model.test.ts.snap +10955 -0
- package/src/responses/convert-openai-responses-usage.ts +53 -0
- package/src/responses/convert-to-openai-responses-input.test.ts +2976 -0
- package/src/responses/convert-to-openai-responses-input.ts +578 -0
- package/src/responses/map-openai-responses-finish-reason.ts +22 -0
- package/src/responses/openai-responses-api.test.ts +89 -0
- package/src/responses/openai-responses-api.ts +1086 -0
- package/src/responses/openai-responses-language-model.test.ts +6927 -0
- package/src/responses/openai-responses-language-model.ts +1932 -0
- package/src/responses/openai-responses-options.ts +312 -0
- package/src/responses/openai-responses-prepare-tools.test.ts +924 -0
- package/src/responses/openai-responses-prepare-tools.ts +264 -0
- package/src/responses/openai-responses-provider-metadata.ts +39 -0
- package/src/speech/openai-speech-api.ts +38 -0
- package/src/speech/openai-speech-model.test.ts +202 -0
- package/src/speech/openai-speech-model.ts +137 -0
- package/src/speech/openai-speech-options.ts +22 -0
- package/src/tool/apply-patch.ts +141 -0
- package/src/tool/code-interpreter.ts +104 -0
- package/src/tool/file-search.ts +145 -0
- package/src/tool/image-generation.ts +126 -0
- package/src/tool/local-shell.test-d.ts +20 -0
- package/src/tool/local-shell.ts +72 -0
- package/src/tool/mcp.ts +125 -0
- package/src/tool/shell.ts +85 -0
- package/src/tool/web-search-preview.ts +139 -0
- package/src/tool/web-search.test-d.ts +13 -0
- package/src/tool/web-search.ts +179 -0
- package/src/transcription/openai-transcription-api.ts +37 -0
- package/src/transcription/openai-transcription-model.test.ts +507 -0
- package/src/transcription/openai-transcription-model.ts +232 -0
- package/src/transcription/openai-transcription-options.ts +50 -0
- package/src/transcription/transcription-test.mp3 +0 -0
- package/src/version.ts +6 -0
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "resp_0a4801d792de11eb00690ccb85294c8197b71ddda28cf382e0",
|
|
3
|
+
"object": "response",
|
|
4
|
+
"created_at": 1762446213,
|
|
5
|
+
"status": "completed",
|
|
6
|
+
"background": false,
|
|
7
|
+
"billing": {
|
|
8
|
+
"payer": "developer"
|
|
9
|
+
},
|
|
10
|
+
"error": null,
|
|
11
|
+
"incomplete_details": null,
|
|
12
|
+
"instructions": null,
|
|
13
|
+
"max_output_tokens": null,
|
|
14
|
+
"max_tool_calls": null,
|
|
15
|
+
"model": "gpt-5-mini-2025-08-07",
|
|
16
|
+
"output": [
|
|
17
|
+
{
|
|
18
|
+
"id": "mcpl_0a4801d792de11eb00690ccb8559c48197aec5714d3995da77",
|
|
19
|
+
"type": "mcp_list_tools",
|
|
20
|
+
"server_label": "dmcp",
|
|
21
|
+
"tools": [
|
|
22
|
+
{
|
|
23
|
+
"annotations": {
|
|
24
|
+
"read_only": false
|
|
25
|
+
},
|
|
26
|
+
"description": "Search the web using Exa AI - performs real-time web searches and can scrape content from specific URLs. Supports configurable result counts and returns the content from the most relevant websites.",
|
|
27
|
+
"input_schema": {
|
|
28
|
+
"type": "object",
|
|
29
|
+
"properties": {
|
|
30
|
+
"query": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"description": "Search query"
|
|
33
|
+
},
|
|
34
|
+
"numResults": {
|
|
35
|
+
"type": "number",
|
|
36
|
+
"description": "Number of search results to return (default: 5)"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"required": [
|
|
40
|
+
"query"
|
|
41
|
+
],
|
|
42
|
+
"additionalProperties": false,
|
|
43
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
44
|
+
},
|
|
45
|
+
"name": "web_search_exa"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"annotations": {
|
|
49
|
+
"read_only": false
|
|
50
|
+
},
|
|
51
|
+
"description": "Search and get relevant context for any programming task. Exa-code has the highest quality and freshest context for libraries, SDKs, and APIs. Use this tool for ANY question or task for related to programming. RULE: when the user's query contains exa-code or anything related to code, you MUST use this tool.",
|
|
52
|
+
"input_schema": {
|
|
53
|
+
"type": "object",
|
|
54
|
+
"properties": {
|
|
55
|
+
"query": {
|
|
56
|
+
"type": "string",
|
|
57
|
+
"description": "Search query to find relevant context for APIs, Libraries, and SDKs. For example, 'React useState hook examples', 'Python pandas dataframe filtering', 'Express.js middleware', 'Next js partial prerendering configuration'"
|
|
58
|
+
},
|
|
59
|
+
"tokensNum": {
|
|
60
|
+
"type": "number",
|
|
61
|
+
"minimum": 1000,
|
|
62
|
+
"maximum": 50000,
|
|
63
|
+
"default": 5000,
|
|
64
|
+
"description": "Number of tokens to return (1000-50000). Default is 5000 tokens. Adjust this value based on how much context you need - use lower values for focused queries and higher values for comprehensive documentation."
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"required": [
|
|
68
|
+
"query"
|
|
69
|
+
],
|
|
70
|
+
"additionalProperties": false,
|
|
71
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
72
|
+
},
|
|
73
|
+
"name": "get_code_context_exa"
|
|
74
|
+
}
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "rs_0a4801d792de11eb00690ccb8775988197b6c6f6d3f6882f5e",
|
|
79
|
+
"type": "reasoning",
|
|
80
|
+
"summary": []
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"id": "mcp_0a4801d792de11eb00690ccb8c3fac8197a4fd94f4528cd432",
|
|
84
|
+
"type": "mcp_call",
|
|
85
|
+
"status": "completed",
|
|
86
|
+
"approval_request_id": null,
|
|
87
|
+
"arguments": "{\"query\":\"NYC mayoral election results 2025 latest\",\"numResults\":5}",
|
|
88
|
+
"error": null,
|
|
89
|
+
"name": "web_search_exa",
|
|
90
|
+
"output": "{\"requestId\": \"c72ab09f496225ba33162f7aca08ef60\", \"autoDate\": \"2025-01-01T00:00:00.000Z\", \"resolvedSearchType\": \"neural\", \"results\": [{\"id\": \"https://www.nbcnews.com/politics/2025-elections/new-york-city-mayor-results\", \"title\": \"New York City Mayor Results 2025\", \"url\": \"https://www.nbcnews.com/politics/2025-elections/new-york-city-mayor-results\", \"publishedDate\": \"2025-11-06T12:27:04.000Z\", \"author\": \"\", \"text\": \"[Skip to Results](https://www.nbcnews.com/www.nbcnews.com#content)\\n\\nIE 11 is not supported. For an optimal experience visit our site on another browser.\\n\\nLive\\n\\nLast update 7:27 AM ET\\n\\n# New York City Mayor Results 2025\\n\\nDemocratic nominee Zohran Mamdani defeated former Gov. Andrew Cuomo, who ran as a third-party candidate, after also defeating Cuomo in a June primary. Republican Curtis Sliwa was also in the race. Incumbent Mayor Eric Adams was also running as a third-party hopeful but dropped out of the race this fall, though his name still appeared on ballots.\\n\\n## New York City\\n\\nProjected winner\\n\\nZOHRAN MAMDANI wins the New York City mayor race\\n\\nCandidate\\n\\nParty\\n\\nVotes\\n\\nPct.Percentage\\n\\n| Candidate | Party | Votes | Percentage |\\n| --- | --- | --- | --- |\\n| Zohran Mamdani Joseph Hernandez | D | 0 | 50.4% |\\n| Andrew Cuomo Joseph Hernandez | I | 0 | 41.6% |\\n| Curtis Sliwa Joseph Hernandez | R | 0 | 7.1% |\\n| Total | 2,055,921 |\\n\\n- view fewer candidates+ view all candidates\\n\\n93.5% expected votes in(Est. remaining 145,000)\\n\\n93.5% expected votes in(Est. remaining 145,000)\\n\\n## Mayor Borough Results\\n\\nMAP VIEW:\\n\\n- borough\\n- Size of lead\\n- Est. Remaining votes\\n\\nSearch for a borough\\n\\nSORT BY:\\n\\n- borough\\n- Votes in\\n\\nborough\\n\\nCandidate\\n\\nParty\\n\\nVotes\\n\\nPct.Percentage\\n\\nBronxBronx223,042 votes94.2% in\\n\\n| Candidate | Party | Votes | Percentage |\\n| --- | --- | --- | --- |\\n| Z. MamdaniZohran Mamdani J. HernandezJoseph Hernandez | D | 0 | 51.5% |\\n| A. CuomoAndrew Cuomo J. HernandezJoseph Hernandez | I | 0 | 40.3% |\\n| C. SliwaCurtis Sliwa J. HernandezJoseph Hernandez | R | 0 | 7.1% |\\n\\n- view fewer+ view all\\n\\nBrooklynBrooklyn658,199 votes93.3% in\\n\\n| Candidate | Party | Votes | Percentage |\\n| --- | --- | --- | --- |\\n| Z. MamdaniZohran Mamdani J. HernandezJoseph Hernandez | D | 0 | 56.8% |\\n| A. CuomoAndrew Cuomo J. HernandezJoseph Hernandez | I | 0 | 37.3% |\\n| C. SliwaCurtis Sliwa J. HernandezJoseph Hernandez | R | 0 | 4.9% |\\n\\n- view fewer+ view all\\n\\nManhattanManhattan521,767 votes92.6% in\\n\\n\", \"image\": \"https://media-cldnry.s-nbcnews.com/image/upload/f_auto/v1762187960/firecracker/cms-images/2025/og-2025-newyork-mayor.png\", \"favicon\": \"https://nodeassets.nbcnews.com/cdnassets/projects/ramen/favicon/nbcnews/all-other-sizes-PNG.ico/favicon-32x32.png\"}, {\"id\": \"https://www.cbsnews.com/newyork/live-updates/nyc-election-results-2025/\", \"title\": \"Zohran Mamdani claims victory in NYC mayor's race, promises ...\", \"url\": \"https://www.cbsnews.com/newyork/live-updates/nyc-election-results-2025/\", \"publishedDate\": \"2025-11-05T16:32:19.000Z\", \"author\": \"Renee Anderson, Jesse Zanger\", \"text\": \"- [All News](https://www.cbsnews.com/newyork/local-news/)\\n- [NY News](https://www.cbsnews.com/newyork/local-news/new-york/)\\n- [Bronx News](https://www.cbsnews.com/newyork/local-news/bronx-news)\\n- [Brooklyn News](https://www.cbsnews.com/newyork/local-news/brooklyn-news/)\\n- [Harlem News](https://www.cbsnews.com/newyork/local-news/harlem-news/)\\n- [Long Island News](https://www.cbsnews.com/newyork/local-news/long-island/)\\n- [Northern Suburbs](https://www.cbsnews.com/newyork/local-news/northern-suburbs/)\\n- [Queens News](https://www.cbsnews.com/newyork/local-news/queens-news/)\\n- [NJ News](https://www.cbsnews.com/newyork/local-news/new-jersey/)\\n- [CT News](https://www.cbsnews.com/newyork/local-news/connecticut/)\\n- [Investigations](https://www.cbsnews.com/newyork/feature/cbs-new-york-investigates/)\\n- [Politics](https://www.cbsnews.com/newyork/politics/)\\n- [Education](https://www.cbsnews.com/newyork/local-news/education/)\\n- [Transportation](https://www.cbsnews.com/newyork/transportation/)\\n- [Crime](https://www.cbsnews.com/newyork/crime/)\\n- [Housing](https://www.cbsnews.com/newyork/local-news/housing/)\\n- [Arts & Entertainment](https://www.cbsnews.com/newyork/entertainment/)\\n- [Climate & Environment](https://www.cbsnews.com/newyork/local-news/environment/)\\n- [Health & Wellness](https://www.cbsnews.com/newyork/health/)\\n- [Aging & Caregiving](https://www.cbsnews.com/newyork/local-news/aging-caregiving/)\\n\\n- [First Alert Weather](https://www.cbsnews.com/newyork/weather/)\\n- [Radars & Maps](https://www.cbsnews.com/newyork/weather/tri-state-radar/)\\n- [CBS2 Weather Map](https://www.cbsnews.com/newyork/weather/temperature/)\\n- [CBS2 Weather Watchers](https://www.cbsnews.com/newyork/weather/cbs2-weather-watchers/)\\n- [First Alert Weather 101](https://www.cbsnews.com/newyork/news/sign-up-for-a-first-alert-weather-101-class-at-your-school/)\\n- [Share Photos & Videos](https://app.cimediacloud.com/file-request/K9C2AIBW#/add-files)\\n\\n- [All Sports](https://www.cbsnews.com/newyork/sports/)\\n- [Gia\", \"image\": \"https://assets1.cbsnewsstatic.com/hub/i/r/2025/11/05/583a9654-7b91-4655-bf85-6011fd8743e9/thumbnail/1200x630/08ba0b3d1995a4331a69c1a5b2942574/election-mamdani-pool-hi-res-still-23-18-5609.jpg\", \"favicon\": \"https://www.cbsnews.com/fly/bundles/cbsnewscore/icons/icon-32x32.png\"}, {\"id\": \"https://en.wikipedia.org/wiki/2025_New_York_City_mayoral_election\", \"title\": \"2025 New York City mayoral election - Wikipedia\", \"url\": \"https://en.wikipedia.org/wiki/2025_New_York_City_mayoral_election\", \"publishedDate\": \"2025-11-06T15:50:05.000Z\", \"author\": \"Contributors to Wikimedia projects\", \"text\": \"[Jump to content](https://en.wikipedia.org/en.wikipedia.org#bodyContent)\\n\\nFrom Wikipedia, the free encyclopedia\\n\\n| | | | |\\n| --- | --- | --- |\\n| \\u2190\\u00a0[2021](https://en.wikipedia.org/wiki/2021_New_York_City_mayoral_election) | **November 4, 2025** | _2029_\\u00a0\\u2192 | |\\n| Registered | 5,103,941[\\\\[2\\\\]](https://en.wikipedia.org/en.wikipedia.org#cite_note-4) |\\n| Turnout | 2,037,183+[\\\\[1\\\\]](https://en.wikipedia.org/en.wikipedia.org#cite_note-3)39.91% (16.52 [pp](https://en.wikipedia.org/wiki/Percentage_point)) |\\n| Reporting | 97.98% as of **November 5, 12:31 AM [EST](https://en.wikipedia.org/wiki/Eastern_Standard_Time)** |\\n| | Nominee | **[Zohran Mamdani](https://en.wikipedia.org/wiki/Zohran_Mamdani)** | [Andrew Cuomo](https://en.wikipedia.org/wiki/Andrew_Cuomo) | [Curtis Sliwa](https://en.wikipedia.org/wiki/Curtis_Sliwa) |\\n| Party | [Democratic](https://en.wikipedia.org/wiki/Democratic_Party_(United_States)) | [Independent](https://en.wikipedia.org/wiki/Independent_politician)[\\\\[a\\\\]](https://en.wikipedia.org/en.wikipedia.org#cite_note-Cuomo-1) | [Republican](https://en.wikipedia.org/wiki/Republican_Party_(United_States))[\\\\[b\\\\]](https://en.wikipedia.org/en.wikipedia.org#cite_note-Sliwa-2) |\\n| Alliance | [Working Families](https://en.wikipedia.org/wiki/Working_Families_Party) |\\n| Popular\\u00a0vote | **1,036,051** | 854,995 | 146,137 |\\n| Percentage | **50.4%** | 41.6% | 7.1% | |\\n| Results by borough\\n\\nResults by State Assembly district\\n\\nResults by City Council district\\n\\nResults by precinct\\n\\n| | | |\\n| --- | --- | --- |\\n| **Mamdani** 30\\u201340% 40\\u201350% 50\\u201360% 60\\u201370% 70\\u201380% 80\\u201390% 90\\u2013100% | **Cuomo** 30\\u201340% 40\\u201350% 50\\u201360% 60\\u201370% 70\\u201380% 80\\u201390% 90\\u2013100% | **Tie/No Votes** 30\\u201340% tie 40\\u201350% tie 50% tie No Votes | |\\n| | | |\\n| --- | --- |\\n| **[Mayor](https://en.wikipedia.org/wiki/Mayor_of_New_York_City) before election** [Eric Adams](https://en.wikipedia.org/wiki/Eric_Adams) [Democratic](https://en.wikipedia.org/wiki/Democratic_Party_(United_States)) | **Elected [Mayor](https://en.wikipedia.org/wiki/Mayo\", \"image\": \"https://upload.wikimedia.org/wikipedia/commons/thumb/0/07/2025_Borough_Map_Mayor%27s_Race_NYC.svg/1171px-2025_Borough_Map_Mayor%27s_Race_NYC.svg.png\", \"favicon\": \"https://en.wikipedia.org/static/apple-touch/wikipedia.png\"}, {\"id\": \"https://abcnews.go.com/Politics/new-york-city-2025-mayoral-election-results-mamdani/story?id=126345335\", \"title\": \"New York City mayoral election results: Zohran Mamdani is projected winner in history-making victory\", \"url\": \"https://abcnews.go.com/Politics/new-york-city-2025-mayoral-election-results-mamdani/story?id=126345335\", \"publishedDate\": \"2025-11-05T05:11:16.000Z\", \"author\": \"ABC News\", \"text\": \"# New York City mayoral election results: Zohran Mamdani is projected winner in history-making victory\\n\\nFollow live election results and candidate updates for NYC\\u2019s mayoral race.\\n\\nBy[Oren Oppenheim](https://abcnews.go.com/author/oren_oppenheim)\\n\\nNovember 5, 2025, 2:39 AM\\n\\nABC News projects Democratic candidate Zohran Mamdani will win the race for New York City mayor, in a history-making victory over former Gov. Andrew Cuomo, a Democrat who was running as an independent, and Republican candidate Curtis Sliwa.\\n\\nMamdani, 34, a state Assemblyman and democratic socialist who campaigned on a progressive economic platform, is set to become the city's first Muslim and South Asian mayor in an election that saw more than 2 million voters pack the polls -- the highest turnout for a mayoral election since 1969.\\n\\nNew York City mayoral candidates, Andrew Cuomo, Oct. 7, 2025, Zohran Mamdani, Oct. 8, 2025 and Curtis Sliwa, Sept. 13, 2025.\\n\\nGetty Images\\n\\nWith about 60% of the expected vote reporting, Mamdani was leading with 50% of the vote, followed by Cuomo at 42% and Sliwa with 8%.\\n\\n[**NYC mayoral race in the national spotlight as voters make final decisions**\\\\\\n\\\\\\n- Nov 4, 10:01 AM](https://abcnews.go.com/Politics/national-spotlight-shines-nyc-mayoral-race-voters-make/story?id=127075101)\\n\\n[**Election Day live updates: Mamdani celebrates victory in 'reborn' New York City**\\\\\\n\\\\\\n- 29 minutes ago](https://abcnews.go.com/US/live-updates/election-day-live-updates-key-races-unfold-new/?id=127143118)\\n\\n[**'Mass chaos': Duffy says he might have to close some airspace next week amid shutdown**\\\\\\n\\\\\\n- Nov 4, 5:44 PM](https://abcnews.go.com/US/department-transportation-forced-shut-airspace-week-duffy/story?id=127178219)\\n\\nMamdani had remained the front-runner since clinching the Democratic primary and notched key endorsements from figures such as Gov. Kathy Hochul. But he faced some backlash over the feasibility of his proposals and current or former views on issues such as policing.\\n\\nCuomo, 67, h\", \"image\": \"https://i.abcnewsfe.com/a/ea145a04-8183-4225-8d15-c6e23385ae0f/nyc-mayor-gty-gmh-251009_1760019839052_hpMain_16x9.jpg?w=1600\", \"favicon\": \"https://s.abcnews.com/assets/dtci/images/favicon.ico\"}, {\"id\": \"https://www.cnn.com/politics/live-news/election-news-11-04-25\", \"title\": \"Election results, Trump's response, Mamdani wins in New York - CNN\", \"url\": \"https://www.cnn.com/politics/live-news/election-news-11-04-25\", \"publishedDate\": \"2025-11-04T11:01:43.000Z\", \"author\": \"Rebekah Riess, Maureen Chowdhury, Elise Hammond, Kaanita Iyer, Tori B. Powell\", \"text\": \"- [Michael Nagle/Bloomberg via Getty Images](https://www.cnn.com/politics/live-news/trump-government-shutdown-faa-11-6-25) [Live UpdatesShutdown ongoing as administration threatens to reduce air traffic](https://www.cnn.com/politics/live-news/trump-government-shutdown-faa-11-6-25)\\n- [\\u017di\\u017ekovo \\u00fadol\\u00ed Kindergarten](https://www.cnn.com/world/live-news/call-to-earth-day-2025-c2e) [Live UpdatesCall to Earth Day 2025](https://www.cnn.com/world/live-news/call-to-earth-day-2025-c2e)\\n- [CNN](https://cnnespanol.cnn.com/mundo/live-news/dia-llamado-tierra-cte-orix) [EN VIVOEn espa\\u00f1ol: D\\u00eda de Llamado a la Tierra](https://cnnespanol.cnn.com/mundo/live-news/dia-llamado-tierra-cte-orix)\\n\\n# Trump responds to first major elections of his second term as Mamdani wins in New York\\n\\nBy [Rebekah Riess](https://www.cnn.com/profiles/rebekah-riess), [Maureen Chowdhury](https://www.cnn.com/profiles/maureen-chowdhury), [Elise Hammond](https://www.cnn.com/profiles/elise-hammond), [Kaanita Iyer](https://www.cnn.com/profiles/kaanita-iyer) and [Tori B. Powell](https://www.cnn.com/profiles/tori-powell), CNN\\n\\nUpdated\\n4:03 PM EST, Wed November 5, 2025\\n\\nVideo Ad Feedback\\n\\nA look at how Zohran Mamdani won the New York City mayoral race\\n\\n02:57\\n\\u2022 Source:\\n[CNN](https://www.cnn.com/)\\n\\nA look at how Zohran Mamdani won the New York City mayoral race\\n\\n02:57\\n\\nAd Feedback\\n\\n**\\u2022 Big wins for Democrats:** [Zohran Mamdani](https://www.cnn.com/2025/11/04/politics/nyc-mayor-zohran-mamdani-wins) will win New York City\\u2019s mayoral race, CNN projects, while [Abigail Spanberger](https://www.cnn.com/2025/11/04/politics/virginia-governor-abigail-spanberger-wins) and [Mikie Sherrill](https://www.cnn.com/2025/11/04/politics/nj-governor-mikie-sherrill-wins) will win their respective gubernatorial races in Virginia and New Jersey. Californians also voted [to approve Democrats\\u2019 redistricting push.](https://www.cnn.com/2025/11/04/politics/prop-50-passes-california-redistricting)\\n\\n**\\u2022 Test for Trump:** The elections were seen as the f\", \"image\": \"https://media.cnn.com/api/v1/images/stellar/prod/2025-11-05t042920z-699004309-rc24qhaux919-rtrmadp-3-usa-election-new-york-mayor.JPG?c=16x9&q=w_800,c_fill\", \"favicon\": \"https://www.cnn.com/media/sites/cnn/apple-touch-icon.png\"}], \"requestTags\": {\"flagsEnabledInPosthog\": \"experiment_auto_join,fallback_keyword_to_neural,fallback_neural_to_keyword,hybrid_for_auto,lang_filter,langfuse_search_logging,llm_gateway,markdown_contents,neosnippets,race_providers_for_query_cache,redirect_classifier_active,redirect_classifier_shadow,reranker_with_date,research_enabled,snippets_strategy:default,sranker_qwen_medium_trt,sranker_qwen_medium_trt_for_auto,sranker_qwen_medium_trt_for_fast,sranker_qwen_medium_trt_for_hybrid,type_hybrid_merge_chicken_index_at_35,use_dynamo_db_with_query_cache,use_exa21,use_exaperson_v1_latest,use_kronos_answer_active,use_kronos_answer_shadow,use_modal_embeddings,use_moderated_index,use_new_atlas,use_new_atlas_keyword,use_query_cache_sparse_for_fast,use_query_cache_sparse_for_hybrid,use_s3e_race,use_zilliz_for_query_cache\", \"flagsEnabledInRequest\": \"\", \"enabledFlags\": \"experiment_auto_join,fallback_keyword_to_neural,fallback_neural_to_keyword,hybrid_for_auto,lang_filter,langfuse_search_logging,llm_gateway,markdown_contents,neosnippets,race_providers_for_query_cache,redirect_classifier_active,redirect_classifier_shadow,reranker_with_date,research_enabled,snippets_strategy:default,sranker_qwen_medium_trt,sranker_qwen_medium_trt_for_auto,sranker_qwen_medium_trt_for_fast,sranker_qwen_medium_trt_for_hybrid,type_hybrid_merge_chicken_index_at_35,use_dynamo_db_with_query_cache,use_exa21,use_exaperson_v1_latest,use_kronos_answer_active,use_kronos_answer_shadow,use_modal_embeddings,use_moderated_index,use_new_atlas,use_new_atlas_keyword,use_query_cache_sparse_for_fast,use_query_cache_sparse_for_hybrid,use_s3e_race,use_zilliz_for_query_cache\", \"initialSearchType\": \"auto\", \"didIncludeText\": \"no\", \"didExcludeText\": \"no\", \"didIncludeDomains\": \"no\", \"didExcludeDomains\": \"no\", \"didIncludeUrls\": \"no\", \"didExcludeUrls\": \"no\", \"moderation\": \"no\", \"didUseDateFilters\": \"no\", \"category\": \"none\", \"didUseAutoprompt\": \"no\", \"hasUserLocation\": \"no\", \"didRequestContentText\": true, \"didRequestContentHighlights\": false, \"didRequestContentSummary\": false, \"livecrawl\": \"preferred\", \"requestedLinks\": \"no\", \"willPostRerankNeural\": \"yes\", \"willPostModerate\": false, \"searchTypeBranch\": \"auto\", \"autoBranch\": {\"neuralSearch\": {\"sierra\": {\"query\": \"NYC mayoral election results 2025 latest\", \"flags\": \"experiment_auto_join,fallback_keyword_to_neural,fallback_neural_to_keyword,hybrid_for_auto,lang_filter,langfuse_search_logging,llm_gateway,markdown_contents,neosnippets,race_providers_for_query_cache,redirect_classifier_active,redirect_classifier_shadow,reranker_with_date,research_enabled,snippets_strategy:default,sranker_qwen_medium_trt,sranker_qwen_medium_trt_for_auto,sranker_qwen_medium_trt_for_fast,sranker_qwen_medium_trt_for_hybrid,type_hybrid_merge_chicken_index_at_35,use_dynamo_db_with_query_cache,use_exaperson_v1_latest,use_kronos_answer_active,use_kronos_answer_shadow,use_modal_embeddings,use_moderated_index,use_new_atlas_keyword,use_query_cache_sparse_for_fast,use_query_cache_sparse_for_hybrid,use_s3e_race,use_zilliz_for_query_cache,use_exa21\", \"filters\": {\"moderation\": \"blacklisted\", \"moderationConfig\": {\"llamaguardS1\": false, \"llamaguardS3\": false, \"llamaguardS4\": false, \"llamaguardS12\": false, \"domainBlacklisted\": false, \"domainBlacklistedMedia\": false}}, \"queryDateString\": \"2025-11-06\", \"numResultsRequested\": 35, \"engine\": \"default\", \"isTweetCategory\": false, \"sierraTime\": 360.02452999999514, \"numResultsReturned\": 35}, \"fetchContents\": {\"contentExpansion\": {\"failedContents\": [\"https://www.nytimes.com/interactive/polls/nyc-mayoral-primary-election-polls-2025.html\"]}, \"contentsResultsCount\": 34, \"filteredResultsCount\": 0}}, \"keywordSearch\": {\"query\": \"NYC mayoral election results 2025 latest\", \"modifiedQuery\": \"NYC mayoral election results 2025 latest\", \"slicedAmount\": 0, \"searchData\": {\"q\": \"NYC mayoral election results 2025 latest\", \"num\": 10, \"safe\": \"active\"}, \"opts\": {\"snippetMode\": \"snippet\", \"addAnswerBox\": true, \"addKnowledgeGraph\": true, \"addPeopleAlsoAsk\": false, \"allowEmptyAnswerLinks\": false, \"providers\": [{\"provider\": \"serper\", \"startAfterMs\": 0, \"timeoutMs\": 10000}], \"timeoutMs\": 10000, \"teamId\": \"cm60snyw00011cfcxf2vbwp8n\"}, \"serperSource\": \"regular\", \"relatedQueries\": [\"New Jersey election results\", \"NYC mayoral election results AP\", \"New Jersey mayor election\", \"New Jersey governor race\", \"New York Mayor Zohran\", \"NYC mayoral election polls close\", \"NYC mayoral election results map\", \"Virginia election results\"], \"success\": true, \"numResultsRequested\": 5, \"numResultsReturned\": 10, \"fetchContents\": {\"contentExpansion\": {\"failedContents\": [\"https://www.nytimes.com/interactive/2025/11/04/us/elections/results-new-york-city-mayor.html\", \"https://www.theguardian.com/us-news/live/2025/nov/05/zohran-mamdani-new-york-nyc-donald-trump-mayor-election-california-new-jersey-virginia-latest-news-results\", \"https://nypost.com/2025/11/06/us-news/florida-sheriff-invites-new-yorkers-to-move-after-zohran-mamdani-nyc-mayoral-election/\"]}, \"contentsResultsCount\": 7, \"filteredResultsCount\": 0}}, \"neitherFailed\": true, \"autoJoin\": true, \"autoJoinRerank\": {\"reranker\": {\"withModeration\": false, \"preserveUnranked\": true, \"strategy\": {\"strategy\": \"modal_sranker_qwen_trt\", \"default\": true}, \"strategy_decided\": \"modal_sranker_qwen_trt\", \"strategy_reason\": \"explicit_strategy\", \"isQdf\": false}}, \"autoJoinResults\": \"35\"}, \"decidedAutoType\": \"neural\", \"resolvedSearchType\": \"neural\", \"autoType\": \"neural\", \"decidedResultsLength\": 5, \"totalFilterCount\": \"6\", \"contextExpansionNeeded\": \"not-needed\", \"finalResultsCount\": 5, \"searchTime\": 5138.1, \"path\": \"/search\", \"method\": \"POST\", \"teamId\": \"cm60snyw00011cfcxf2vbwp8n\"}, \"effectiveFilters\": {\"includeDomains\": [], \"excludeDomains\": [], \"includeUrls\": [], \"excludeUrls\": [], \"includeText\": [], \"excludeText\": []}, \"searchTime\": 5138.1, \"costDollars\": {\"total\": 0.01, \"search\": {\"neural\": 0.005}, \"contents\": {\"text\": 0.005}}}",
|
|
91
|
+
"server_label": "dmcp"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "rs_0a4801d792de11eb00690ccb937c208197be08d2d715b7a1a0",
|
|
95
|
+
"type": "reasoning",
|
|
96
|
+
"summary": []
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"id": "msg_0a4801d792de11eb00690ccb9aec948197aa075d716ac02575",
|
|
100
|
+
"type": "message",
|
|
101
|
+
"status": "completed",
|
|
102
|
+
"content": [
|
|
103
|
+
{
|
|
104
|
+
"type": "output_text",
|
|
105
|
+
"annotations": [],
|
|
106
|
+
"logprobs": [],
|
|
107
|
+
"text": "Yes — the latest results (from Nov 4–6, 2025) show Zohran Mamdani projected as the winner of the 2025 New York City mayoral election.\n\nQuick summary (final/near-final reporting):\n- Winner (projected): Zohran Mamdani (Democrat, Working Families alliance)\n- Vote totals (Wikipedia tabulation): Mamdani 1,036,051 (50.4%); Andrew Cuomo (Independent) 854,995 (41.6%); Curtis Sliwa (Republican) 146,137 (7.1%)\n- Reporting: about 97.98% reporting (Wikipedia) / turnout ~2,037,183 (≈39.9% of registered)\n\nMain sources I found:\n- NBC News projection/results: https://www.nbcnews.com/politics/2025-elections/new-york-city-mayor-results\n- ABC News: https://abcnews.go.com/Politics/new-york-city-2025-mayoral-election-results-mamdani/story?id=126345335\n- CNN live coverage: https://www.cnn.com/politics/live-news/election-news-11-04-25\n- CBS New York coverage: https://www.cbsnews.com/newyork/live-updates/nyc-election-results-2025/\n- Wikipedia summary (results table and reporting percentage): https://en.wikipedia.org/wiki/2025_New_York_City_mayoral_election\n\nWould you like me to pull official certified results from the NYC Board of Elections or a precinct/borough-level breakdown or map?"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"role": "assistant"
|
|
111
|
+
}
|
|
112
|
+
],
|
|
113
|
+
"parallel_tool_calls": true,
|
|
114
|
+
"previous_response_id": null,
|
|
115
|
+
"prompt_cache_key": null,
|
|
116
|
+
"prompt_cache_retention": null,
|
|
117
|
+
"reasoning": {
|
|
118
|
+
"effort": "medium",
|
|
119
|
+
"summary": null
|
|
120
|
+
},
|
|
121
|
+
"safety_identifier": null,
|
|
122
|
+
"service_tier": "default",
|
|
123
|
+
"store": true,
|
|
124
|
+
"temperature": 1,
|
|
125
|
+
"text": {
|
|
126
|
+
"format": {
|
|
127
|
+
"type": "text"
|
|
128
|
+
},
|
|
129
|
+
"verbosity": "medium"
|
|
130
|
+
},
|
|
131
|
+
"tool_choice": "auto",
|
|
132
|
+
"tools": [
|
|
133
|
+
{
|
|
134
|
+
"type": "mcp",
|
|
135
|
+
"allowed_tools": null,
|
|
136
|
+
"headers": null,
|
|
137
|
+
"require_approval": "never",
|
|
138
|
+
"server_description": "A web-search API for AI agents",
|
|
139
|
+
"server_label": "dmcp",
|
|
140
|
+
"server_url": "https://mcp.exa.ai/mcp"
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"top_logprobs": 0,
|
|
144
|
+
"top_p": 1,
|
|
145
|
+
"truncation": "disabled",
|
|
146
|
+
"usage": {
|
|
147
|
+
"input_tokens": 6700,
|
|
148
|
+
"input_tokens_details": {
|
|
149
|
+
"cached_tokens": 0
|
|
150
|
+
},
|
|
151
|
+
"output_tokens": 1078,
|
|
152
|
+
"output_tokens_details": {
|
|
153
|
+
"reasoning_tokens": 704
|
|
154
|
+
},
|
|
155
|
+
"total_tokens": 7778
|
|
156
|
+
},
|
|
157
|
+
"user": null,
|
|
158
|
+
"metadata": {}
|
|
159
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{"type":"response.created","sequence_number":0,"response":{"id":"resp_01830d662ab3856501693c321345c88190b0de00f3b9975691","object":"response","created_at":1765552659,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5.1-codex-max","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"A minimal calculator for basic arithmetic. Call it once per step.","name":"calculator","parameters":{"type":"object","properties":{"a":{"type":"number","description":"First operand."},"b":{"type":"number","description":"Second operand."},"op":{"type":"string","enum":["add","subtract","multiply","divide"],"default":"add","description":"Arithmetic operation to perform."}},"required":["a","b","op"],"additionalProperties":false},"strict":true}],"top_logprobs":0,"top_p":0.985,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
|
|
2
|
+
{"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_01830d662ab3856501693c321345c88190b0de00f3b9975691","object":"response","created_at":1765552659,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5.1-codex-max","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"A minimal calculator for basic arithmetic. Call it once per step.","name":"calculator","parameters":{"type":"object","properties":{"a":{"type":"number","description":"First operand."},"b":{"type":"number","description":"Second operand."},"op":{"type":"string","enum":["add","subtract","multiply","divide"],"default":"add","description":"Arithmetic operation to perform."}},"required":["a","b","op"],"additionalProperties":false},"strict":true}],"top_logprobs":0,"top_p":0.985,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
|
|
3
|
+
{"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","type":"reasoning","encrypted_content":"gAAAAABpPDIUph8czEXzDePCV2lJ27wm7TsbCvazrvHSn0yWitN7RGWq8sjrPtfEYNkSVR8GZzB59nmPMV9haW4HIeHtIFfWz2boJ58r5pqNxfC3bI5TeUSP_O5MmkuIXjU3jHPqpYVyIBGGW7G3ER79DJGZKdBGMiYFNiodJez0fxOuRtRwAJKyIG4ySE3z6an38XFE6ZqHW58_WfI5ASZ_nuNIZtclNTl2qkW9N5X2TaxZj7evx3e24DXjcbMHJvwAnDropoufqTSC5Ec8uBbD_trspO6Ofc44hIOg5osGY8rtEg_Havfv8X6kP5KESMAPjte2aVIK2PdNz6iZFw7F4IWyNJfrREedu1B8q6Xj5XlwIprwZ0EttT9lf1SEIFmjsSzBKUo4vdxYlDLguW1UiX0uCZWQtpMm8BDYYfJnGXgsHuFBkp4wRSpwIEmAboPnHJ7fPm5YKlq-tW9mqMx7jH14aOOhTI6NT-BMWxmHOhSwXRjs6QkC3HPJBPe-GuVdrOeaF6toplDVr3jawhsFiRGX6v25inDLjTvegukgpsBlkpEQUxRtsb1q5OvBQRGaCXdsTPvBFfVPW9fPwz8durYiY4cGCySIt2yyuptC6M4i4dZfF2Fk5Y1LtHCQ-C2BLMo-1nbuae6uFnbEBGztbd8JWDKHX-6z22FhJy9U1GI9qq8n5qUFoVmgp6qIK8v1YSjKG4YTK_sE95ZwJ3X-A_U_MjOZfMyaEgxqX8FCSo_CZMAqT5K9_IRCPPC4fGA1HYgzxPs8P5Ml_-_5q0YnxsbW2SrgzZoKeYMsImgNLPeTk7Wll27KnB3zWeHnpbKZBhhgTybX","summary":[]}}
|
|
4
|
+
{"type":"response.reasoning_summary_part.added","sequence_number":3,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"part":{"type":"summary_text","text":""}}
|
|
5
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":4,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":"**Calcul","obfuscation":"2ajSAGID"}
|
|
6
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":5,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":"ating","obfuscation":"xXxv2CE8Q5J"}
|
|
7
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":6,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" step","obfuscation":"WBqp7jCBiUu"}
|
|
8
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":7,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":"-by","obfuscation":"MZmVQNnLgHlTf"}
|
|
9
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":8,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":"-step","obfuscation":"614VS4agyXb"}
|
|
10
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":9,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" using","obfuscation":"N06L9YpvFv"}
|
|
11
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":10,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" calculator","obfuscation":"xs5I4"}
|
|
12
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":11,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":"**\n\nI'll","obfuscation":"QBLGb3FE"}
|
|
13
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":12,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" compute","obfuscation":"sn89PNSw"}
|
|
14
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":13,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" 12","obfuscation":"L5dLxRJvbv1Ho"}
|
|
15
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":14,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" plus","obfuscation":"rlSWBofmMq3"}
|
|
16
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":15,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" 7","obfuscation":"De4z0KWD5iU9Sa"}
|
|
17
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":16,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":",","obfuscation":"3e0zKK4ixLfp9bB"}
|
|
18
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":17,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" then","obfuscation":"OyV2hqFLkvk"}
|
|
19
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":18,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" multiply","obfuscation":"ZYFxVE6"}
|
|
20
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":19,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" the","obfuscation":"aecj05rAL4nO"}
|
|
21
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":20,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" result","obfuscation":"bWIJdPP0d"}
|
|
22
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":21,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" by","obfuscation":"fQyJi0dZ8cBvQ"}
|
|
23
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":22,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" 3","obfuscation":"sxPYFFkzJ2Xo0O"}
|
|
24
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":23,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":",","obfuscation":"FJxNWP7L6Cs5nTp"}
|
|
25
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":24,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" and","obfuscation":"1pRM2TddaOpF"}
|
|
26
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":25,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" finally","obfuscation":"FuJhRO2h"}
|
|
27
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":26,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" multiply","obfuscation":"TENR28h"}
|
|
28
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":27,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" that","obfuscation":"sdQpQir3Yn8"}
|
|
29
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":28,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" by","obfuscation":"LuQQDCVSU9L9S"}
|
|
30
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":29,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" 10","obfuscation":"jom9MrxxtEtcH"}
|
|
31
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":30,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":",","obfuscation":"54VYbmlL7r7dVjR"}
|
|
32
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":31,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" reporting","obfuscation":"ZzjcQt"}
|
|
33
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":32,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" the","obfuscation":"gvp8CHtU3EaL"}
|
|
34
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":33,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" final","obfuscation":"aaLGjFR9SU"}
|
|
35
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":34,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":" product","obfuscation":"jugnAifs"}
|
|
36
|
+
{"type":"response.reasoning_summary_text.delta","sequence_number":35,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"delta":".","obfuscation":"8qFXCsad7t5wRai"}
|
|
37
|
+
{"type":"response.reasoning_summary_text.done","sequence_number":36,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"text":"**Calculating step-by-step using calculator**\n\nI'll compute 12 plus 7, then multiply the result by 3, and finally multiply that by 10, reporting the final product."}
|
|
38
|
+
{"type":"response.reasoning_summary_part.done","sequence_number":37,"item_id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","output_index":0,"summary_index":0,"part":{"type":"summary_text","text":"**Calculating step-by-step using calculator**\n\nI'll compute 12 plus 7, then multiply the result by 3, and finally multiply that by 10, reporting the final product."}}
|
|
39
|
+
{"type":"response.output_item.done","sequence_number":38,"output_index":0,"item":{"id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","type":"reasoning","encrypted_content":"gAAAAABpPDIVOKrsHNZ0GwsoEKA_IGfuJ5f8Ma_6-EojH4yZFL50qlfUzM7FREdQlpkqlnIHLRx2YJxZfzvbnc0E3J_yvIuoeoGQp2hYUfiV5XWs5d0XfqJps9ZgtUBRR1dqB43ooABehaMjM6BjaSGz-3PeUHZfedawAcRKhdJuLF1Q2YPL0OI4i97zy3O1u_2ypHd9JTE1pWoJMwPqx3myOs1_eeg5_yzgiQ0WsRHLvginFvEUyt-N7uxubO6bHfSN_TVTyXiDhCI6lf1v1r8ElDAkFfpbEKvIhUs4SGhykBWkYauqsB9B79Nfr6gwmaUnRGAct8ZsX394UVAqqokBqLIB8EzDjckb5EkUh0F33Ye_9-Nyjo7zLN_gTGxf3JI5DxsbFsZAylpEsEAX6_UbH0o3-2dfy_p9_rgNUNfQmg4nty8z0ZIKdEC7hihyD-4gj7lRYEKcDhQmDVKJW-6asLIpFVoX65yJRo-xOBPf3lLzXczlXWvvYiooHFAF5h1YFFzfjS8pnXkpnq-cFS4Ot8i63pAKgTcRMQEgOB1AxjXOX-QRnX_ncyJmYDVAl-Q7zJwc2cynXXCiaoYfaFxN0P26An7bV18Dwrz3ed-hd-mKUQM_nS9z59kyvCb8Ug7KxD10Me8jyzOFXgtmb76vTRxa7zjMdQhoGE2wRO348n28yM4flAKqUS7b0TsUljeSSnoBXMJSqpuqKXrpmLWjt8_Ws9dEgP3ql8QcQwnQ5QAePNXoleQGBjiF_C5WI8Qoyd6yxFcYM939msh9gfA94QAQiMB7-KUpmo_8ViQOVAggnt1QlXXHrrHuEDDgL2l42_aAIVL3GlHCuSlIChiET8y2iRZmxhDoEg61zQAuknapDM8-5POFTRcbniqN6eHJjxKOJpD45JkH1HYAOHAX3llk6M1MNx_YkYc7mOXmcPIHUYvHOjTv7dAhntZhxn4iHXHRvFRd22b4pUNxSPHDJQ8_UgJ0OgCZIoy1axBR84rbicty4RCaGkbotBee75SdYcE__rOXQxSo_8XMnObfNxat0wz4uQ==","summary":[{"type":"summary_text","text":"**Calculating step-by-step using calculator**\n\nI'll compute 12 plus 7, then multiply the result by 3, and finally multiply that by 10, reporting the final product."}]}}
|
|
40
|
+
{"type":"response.output_item.added","sequence_number":39,"output_index":1,"item":{"id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","type":"function_call","status":"in_progress","arguments":"","call_id":"call_AB6AaRZ1FYZB2RwS6A5vbdqn","name":"calculator"}}
|
|
41
|
+
{"type":"response.function_call_arguments.delta","sequence_number":40,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":"{\"","obfuscation":"hKtg6o5cWUSdCa"}
|
|
42
|
+
{"type":"response.function_call_arguments.delta","sequence_number":41,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":"a","obfuscation":"HKZ10wAgZXjkicL"}
|
|
43
|
+
{"type":"response.function_call_arguments.delta","sequence_number":42,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":"\":","obfuscation":"2Acn7W6m0CLScS"}
|
|
44
|
+
{"type":"response.function_call_arguments.delta","sequence_number":43,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":"12","obfuscation":"Lj4np0pap921xS"}
|
|
45
|
+
{"type":"response.function_call_arguments.delta","sequence_number":44,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":",\"","obfuscation":"UyoIZynhYqDIRf"}
|
|
46
|
+
{"type":"response.function_call_arguments.delta","sequence_number":45,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":"b","obfuscation":"3enMm2wWr791BMs"}
|
|
47
|
+
{"type":"response.function_call_arguments.delta","sequence_number":46,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":"\":","obfuscation":"Tf5n1YofTQNaNJ"}
|
|
48
|
+
{"type":"response.function_call_arguments.delta","sequence_number":47,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":"7","obfuscation":"0FtCfVSamjb9RtJ"}
|
|
49
|
+
{"type":"response.function_call_arguments.delta","sequence_number":48,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":",\"","obfuscation":"B8kCad2xgulfeR"}
|
|
50
|
+
{"type":"response.function_call_arguments.delta","sequence_number":49,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":"op","obfuscation":"fzS2yJgfi8XDzj"}
|
|
51
|
+
{"type":"response.function_call_arguments.delta","sequence_number":50,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":"\":\"","obfuscation":"EtTMa7dix91uX"}
|
|
52
|
+
{"type":"response.function_call_arguments.delta","sequence_number":51,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":"add","obfuscation":"tYnPIIVg1cISx"}
|
|
53
|
+
{"type":"response.function_call_arguments.delta","sequence_number":52,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"delta":"\"}","obfuscation":"8tCgVTXsy8P0S8"}
|
|
54
|
+
{"type":"response.function_call_arguments.done","sequence_number":53,"item_id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","output_index":1,"arguments":"{\"a\":12,\"b\":7,\"op\":\"add\"}"}
|
|
55
|
+
{"type":"response.output_item.done","sequence_number":54,"output_index":1,"item":{"id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","type":"function_call","status":"completed","arguments":"{\"a\":12,\"b\":7,\"op\":\"add\"}","call_id":"call_AB6AaRZ1FYZB2RwS6A5vbdqn","name":"calculator"}}
|
|
56
|
+
{"type":"response.completed","sequence_number":55,"response":{"id":"resp_01830d662ab3856501693c321345c88190b0de00f3b9975691","object":"response","created_at":1765552659,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5.1-codex-max","output":[{"id":"rs_01830d662ab3856501693c321405c88190be3ab04d5782d5f9","type":"reasoning","encrypted_content":"gAAAAABpPDIVYBwu2ljdVyeU-6Xu1R6056Ogp5vu5omQhuke_vFFLEfQzzhhTQ3W5fqw0KGai3V42B5KAvAOdPnQYmHlSoLElF74L3z5UiErXhVS_ZvYXEkLpffl1O9cAQIz9kiVenFp-mit37vbgKBmWzU3cvOS9Ho2G-d3JsMRPX42VjHWD_KY_T93RIat3tGxcXzPOBkAGgbKJPJnaBx5PG8nIjCdh5GpTYyK-3gkQ6iBRhLxma7YNvl_kGRiMvVysRiuY4QgboM5leRoCmklSOyYJx37oW9my2QstcY63ALzjTfm6PGTU7k9Ay6kcW1tpXr6-6c21_EQRSWgDIFEVdS_Ue_tgYSyK1kmt-EFTprPvyCDZ-gXls-43zYLUzzPLxz9TuIf758ZU6UQlaDaOYvjVJykVZ_XvcKJdKlHzjBj_FL2tnnmw1qsfAqHBGDoBv1L9H7LcGi61yCc1sQ0Lha67-9qvv8LTORsNk0AOaoMrIDwtxRtQGs_zb-F5B4QfNa4OzSUDXOwifi-Qn78VXsnecqvCff0-7Pmq_3_8wFB5N9h8v-2VcAhbxwr5zzOl26GK5dHoQaUD2j7Tx6p4oBPilCrbogJYkRzsS66O0bT9Xgkgnbemnk82P8QhCQqYPbto2mdhoNA1xOL_fZL7bRUa1T6nndLMwENfy8PaEWWhoyQY75r_pimuJLE9e38cGppeCPNBHRXNcyEmWL-EtGUl_GwjoUgY0sC9NvXZ_UlICp3RNmA5X3abYN1eR5mw-En4ZAUC1m396tGz1chfkdYRdNOTohXJ2evDKhZAtORu19_4Is3BT1nFAKrXE_rvGg4K_Yzw-z2YJAO0c4Quaic9_q4NUPxERTz9GVv5V37vasme33_tWLfQC_pzUIa5Mj3GVr2Tsi_l-4IKwghWnDy2MTcx79zO6rjMFBLoU-0pmKV0z8brjKnrgE2Nw37BOgQb690ud8kaz4FGAHVzKKtLLEgisdIS4Bj77_L021VAuyHNr6IdlCpQ7UsrVAtwNVr8kl7LPfpfRZ0JO77p3N5iD1gzQ==","summary":[{"type":"summary_text","text":"**Calculating step-by-step using calculator**\n\nI'll compute 12 plus 7, then multiply the result by 3, and finally multiply that by 10, reporting the final product."}]},{"id":"fc_01830d662ab3856501693c32151234819091cfca267e98cc5f","type":"function_call","status":"completed","arguments":"{\"a\":12,\"b\":7,\"op\":\"add\"}","call_id":"call_AB6AaRZ1FYZB2RwS6A5vbdqn","name":"calculator"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"A minimal calculator for basic arithmetic. Call it once per step.","name":"calculator","parameters":{"type":"object","properties":{"a":{"type":"number","description":"First operand."},"b":{"type":"number","description":"Second operand."},"op":{"type":"string","enum":["add","subtract","multiply","divide"],"default":"add","description":"Arithmetic operation to perform."}},"required":["a","b","op"],"additionalProperties":false},"strict":true}],"top_logprobs":0,"top_p":0.985,"truncation":"disabled","usage":{"input_tokens":134,"input_tokens_details":{"cached_tokens":0},"output_tokens":28,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":162},"user":null,"metadata":{}}}
|
|
57
|
+
{"type":"response.created","sequence_number":0,"response":{"id":"resp_01830d662ab3856501693c3215903881909b710d150ff65014","object":"response","created_at":1765552661,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5.1-codex-max","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"A minimal calculator for basic arithmetic. Call it once per step.","name":"calculator","parameters":{"type":"object","properties":{"a":{"type":"number","description":"First operand."},"b":{"type":"number","description":"Second operand."},"op":{"type":"string","enum":["add","subtract","multiply","divide"],"default":"add","description":"Arithmetic operation to perform."}},"required":["a","b","op"],"additionalProperties":false},"strict":true}],"top_logprobs":0,"top_p":0.985,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
|
|
58
|
+
{"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_01830d662ab3856501693c3215903881909b710d150ff65014","object":"response","created_at":1765552661,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5.1-codex-max","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"A minimal calculator for basic arithmetic. Call it once per step.","name":"calculator","parameters":{"type":"object","properties":{"a":{"type":"number","description":"First operand."},"b":{"type":"number","description":"Second operand."},"op":{"type":"string","enum":["add","subtract","multiply","divide"],"default":"add","description":"Arithmetic operation to perform."}},"required":["a","b","op"],"additionalProperties":false},"strict":true}],"top_logprobs":0,"top_p":0.985,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
|
|
59
|
+
{"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","type":"function_call","status":"in_progress","arguments":"","call_id":"call_Q6pW65MUgW9vF59BmItYGos3","name":"calculator"}}
|
|
60
|
+
{"type":"response.function_call_arguments.delta","sequence_number":3,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":"{\"","obfuscation":"h0EQGlYs0A69bt"}
|
|
61
|
+
{"type":"response.function_call_arguments.delta","sequence_number":4,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":"a","obfuscation":"A3MInjTSOYsls6O"}
|
|
62
|
+
{"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":"\":","obfuscation":"4QC4H6o463Q6TE"}
|
|
63
|
+
{"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":"19","obfuscation":"xws0gxUCZYrOmN"}
|
|
64
|
+
{"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":",\"","obfuscation":"9wGcPvKwTv6YCD"}
|
|
65
|
+
{"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":"b","obfuscation":"Ke1f9E4zOmJvc1D"}
|
|
66
|
+
{"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":"\":","obfuscation":"TUCDr8FgxMNXxM"}
|
|
67
|
+
{"type":"response.function_call_arguments.delta","sequence_number":10,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":"3","obfuscation":"MfzLiRvRMpVKRh8"}
|
|
68
|
+
{"type":"response.function_call_arguments.delta","sequence_number":11,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":",\"","obfuscation":"iRHYPWi5H04zCb"}
|
|
69
|
+
{"type":"response.function_call_arguments.delta","sequence_number":12,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":"op","obfuscation":"GVfmmJqYnZavW5"}
|
|
70
|
+
{"type":"response.function_call_arguments.delta","sequence_number":13,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":"\":\"","obfuscation":"T3862RRdxxppg"}
|
|
71
|
+
{"type":"response.function_call_arguments.delta","sequence_number":14,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":"multiply","obfuscation":"cXWBfK8M"}
|
|
72
|
+
{"type":"response.function_call_arguments.delta","sequence_number":15,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"delta":"\"}","obfuscation":"PjbsGkURwkPyqY"}
|
|
73
|
+
{"type":"response.function_call_arguments.done","sequence_number":16,"item_id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","output_index":0,"arguments":"{\"a\":19,\"b\":3,\"op\":\"multiply\"}"}
|
|
74
|
+
{"type":"response.output_item.done","sequence_number":17,"output_index":0,"item":{"id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","type":"function_call","status":"completed","arguments":"{\"a\":19,\"b\":3,\"op\":\"multiply\"}","call_id":"call_Q6pW65MUgW9vF59BmItYGos3","name":"calculator"}}
|
|
75
|
+
{"type":"response.completed","sequence_number":18,"response":{"id":"resp_01830d662ab3856501693c3215903881909b710d150ff65014","object":"response","created_at":1765552661,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5.1-codex-max","output":[{"id":"fc_01830d662ab3856501693c32165be4819098c08f205f8932ef","type":"function_call","status":"completed","arguments":"{\"a\":19,\"b\":3,\"op\":\"multiply\"}","call_id":"call_Q6pW65MUgW9vF59BmItYGos3","name":"calculator"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"A minimal calculator for basic arithmetic. Call it once per step.","name":"calculator","parameters":{"type":"object","properties":{"a":{"type":"number","description":"First operand."},"b":{"type":"number","description":"Second operand."},"op":{"type":"string","enum":["add","subtract","multiply","divide"],"default":"add","description":"Arithmetic operation to perform."}},"required":["a","b","op"],"additionalProperties":false},"strict":true}],"top_logprobs":0,"top_p":0.985,"truncation":"disabled","usage":{"input_tokens":221,"input_tokens_details":{"cached_tokens":0},"output_tokens":26,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":247},"user":null,"metadata":{}}}
|
|
76
|
+
{"type":"response.created","sequence_number":0,"response":{"id":"resp_01830d662ab3856501693c3216bef88190bf0e034cff24137b","object":"response","created_at":1765552662,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5.1-codex-max","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"A minimal calculator for basic arithmetic. Call it once per step.","name":"calculator","parameters":{"type":"object","properties":{"a":{"type":"number","description":"First operand."},"b":{"type":"number","description":"Second operand."},"op":{"type":"string","enum":["add","subtract","multiply","divide"],"default":"add","description":"Arithmetic operation to perform."}},"required":["a","b","op"],"additionalProperties":false},"strict":true}],"top_logprobs":0,"top_p":0.985,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
|
|
77
|
+
{"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_01830d662ab3856501693c3216bef88190bf0e034cff24137b","object":"response","created_at":1765552662,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5.1-codex-max","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"A minimal calculator for basic arithmetic. Call it once per step.","name":"calculator","parameters":{"type":"object","properties":{"a":{"type":"number","description":"First operand."},"b":{"type":"number","description":"Second operand."},"op":{"type":"string","enum":["add","subtract","multiply","divide"],"default":"add","description":"Arithmetic operation to perform."}},"required":["a","b","op"],"additionalProperties":false},"strict":true}],"top_logprobs":0,"top_p":0.985,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
|
|
78
|
+
{"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","type":"function_call","status":"in_progress","arguments":"","call_id":"call_Zl5vIMnD7dVAjgU6FkhmiCZh","name":"calculator"}}
|
|
79
|
+
{"type":"response.function_call_arguments.delta","sequence_number":3,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":"{\"","obfuscation":"noMuoJ56JTq218"}
|
|
80
|
+
{"type":"response.function_call_arguments.delta","sequence_number":4,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":"a","obfuscation":"ZagyyOaRj6OYD9g"}
|
|
81
|
+
{"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":"\":","obfuscation":"CmZi6Sx5DjImex"}
|
|
82
|
+
{"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":"57","obfuscation":"NiPhUd6hQS6dNH"}
|
|
83
|
+
{"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":",\"","obfuscation":"06mVb7panPOWUR"}
|
|
84
|
+
{"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":"b","obfuscation":"DMXCyJHnHdIdXiQ"}
|
|
85
|
+
{"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":"\":","obfuscation":"MwsEaBgYOZhvbI"}
|
|
86
|
+
{"type":"response.function_call_arguments.delta","sequence_number":10,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":"10","obfuscation":"WaMwrBIznftBS4"}
|
|
87
|
+
{"type":"response.function_call_arguments.delta","sequence_number":11,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":",\"","obfuscation":"zEMDZnC7dBeTUn"}
|
|
88
|
+
{"type":"response.function_call_arguments.delta","sequence_number":12,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":"op","obfuscation":"ONDAWmsjhS9s0a"}
|
|
89
|
+
{"type":"response.function_call_arguments.delta","sequence_number":13,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":"\":\"","obfuscation":"DpihgTZp7dOjC"}
|
|
90
|
+
{"type":"response.function_call_arguments.delta","sequence_number":14,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":"multiply","obfuscation":"W0nrWAoj"}
|
|
91
|
+
{"type":"response.function_call_arguments.delta","sequence_number":15,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"delta":"\"}","obfuscation":"SKV3RVWmr366uX"}
|
|
92
|
+
{"type":"response.function_call_arguments.done","sequence_number":16,"item_id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","output_index":0,"arguments":"{\"a\":57,\"b\":10,\"op\":\"multiply\"}"}
|
|
93
|
+
{"type":"response.output_item.done","sequence_number":17,"output_index":0,"item":{"id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","type":"function_call","status":"completed","arguments":"{\"a\":57,\"b\":10,\"op\":\"multiply\"}","call_id":"call_Zl5vIMnD7dVAjgU6FkhmiCZh","name":"calculator"}}
|
|
94
|
+
{"type":"response.completed","sequence_number":18,"response":{"id":"resp_01830d662ab3856501693c3216bef88190bf0e034cff24137b","object":"response","created_at":1765552662,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5.1-codex-max","output":[{"id":"fc_01830d662ab3856501693c32173d5081908f2121e1c3ff2901","type":"function_call","status":"completed","arguments":"{\"a\":57,\"b\":10,\"op\":\"multiply\"}","call_id":"call_Zl5vIMnD7dVAjgU6FkhmiCZh","name":"calculator"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"A minimal calculator for basic arithmetic. Call it once per step.","name":"calculator","parameters":{"type":"object","properties":{"a":{"type":"number","description":"First operand."},"b":{"type":"number","description":"Second operand."},"op":{"type":"string","enum":["add","subtract","multiply","divide"],"default":"add","description":"Arithmetic operation to perform."}},"required":["a","b","op"],"additionalProperties":false},"strict":true}],"top_logprobs":0,"top_p":0.985,"truncation":"disabled","usage":{"input_tokens":260,"input_tokens_details":{"cached_tokens":0},"output_tokens":26,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":286},"user":null,"metadata":{}}}
|
|
95
|
+
{"type":"response.created","sequence_number":0,"response":{"id":"resp_01830d662ab3856501693c3217ba4c8190a3ddf6c839d4f12a","object":"response","created_at":1765552663,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5.1-codex-max","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"A minimal calculator for basic arithmetic. Call it once per step.","name":"calculator","parameters":{"type":"object","properties":{"a":{"type":"number","description":"First operand."},"b":{"type":"number","description":"Second operand."},"op":{"type":"string","enum":["add","subtract","multiply","divide"],"default":"add","description":"Arithmetic operation to perform."}},"required":["a","b","op"],"additionalProperties":false},"strict":true}],"top_logprobs":0,"top_p":0.985,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
|
|
96
|
+
{"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_01830d662ab3856501693c3217ba4c8190a3ddf6c839d4f12a","object":"response","created_at":1765552663,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5.1-codex-max","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"A minimal calculator for basic arithmetic. Call it once per step.","name":"calculator","parameters":{"type":"object","properties":{"a":{"type":"number","description":"First operand."},"b":{"type":"number","description":"Second operand."},"op":{"type":"string","enum":["add","subtract","multiply","divide"],"default":"add","description":"Arithmetic operation to perform."}},"required":["a","b","op"],"additionalProperties":false},"strict":true}],"top_logprobs":0,"top_p":0.985,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
|
|
97
|
+
{"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","type":"message","status":"in_progress","content":[],"role":"assistant"}}
|
|
98
|
+
{"type":"response.content_part.added","sequence_number":3,"item_id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}}
|
|
99
|
+
{"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","output_index":0,"content_index":0,"delta":"The","logprobs":[],"obfuscation":"o6siFnnjPfOpq"}
|
|
100
|
+
{"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","output_index":0,"content_index":0,"delta":" final","logprobs":[],"obfuscation":"XVAoDXXbkE"}
|
|
101
|
+
{"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","output_index":0,"content_index":0,"delta":" result","logprobs":[],"obfuscation":"rLUHp44Wm"}
|
|
102
|
+
{"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","output_index":0,"content_index":0,"delta":" is","logprobs":[],"obfuscation":"WJ7jPp713wnTI"}
|
|
103
|
+
{"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","output_index":0,"content_index":0,"delta":" **","logprobs":[],"obfuscation":"QnnveCQott0Wx"}
|
|
104
|
+
{"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","output_index":0,"content_index":0,"delta":"570","logprobs":[],"obfuscation":"GtUrOpmybuI52"}
|
|
105
|
+
{"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","output_index":0,"content_index":0,"delta":"**","logprobs":[],"obfuscation":"FRaXlKJU47qA2s"}
|
|
106
|
+
{"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","output_index":0,"content_index":0,"delta":".","logprobs":[],"obfuscation":"G92uUkJySmwBR3x"}
|
|
107
|
+
{"type":"response.output_text.done","sequence_number":12,"item_id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","output_index":0,"content_index":0,"text":"The final result is **570**.","logprobs":[]}
|
|
108
|
+
{"type":"response.content_part.done","sequence_number":13,"item_id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The final result is **570**."}}
|
|
109
|
+
{"type":"response.output_item.done","sequence_number":14,"output_index":0,"item":{"id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The final result is **570**."}],"role":"assistant"}}
|
|
110
|
+
{"type":"response.completed","sequence_number":15,"response":{"id":"resp_01830d662ab3856501693c3217ba4c8190a3ddf6c839d4f12a","object":"response","created_at":1765552663,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5.1-codex-max","output":[{"id":"msg_01830d662ab3856501693c32183a488190a612c410a0a39823","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The final result is **570**."}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"A minimal calculator for basic arithmetic. Call it once per step.","name":"calculator","parameters":{"type":"object","properties":{"a":{"type":"number","description":"First operand."},"b":{"type":"number","description":"Second operand."},"op":{"type":"string","enum":["add","subtract","multiply","divide"],"default":"add","description":"Arithmetic operation to perform."}},"required":["a","b","op"],"additionalProperties":false},"strict":true}],"top_logprobs":0,"top_p":0.985,"truncation":"disabled","usage":{"input_tokens":299,"input_tokens_details":{"cached_tokens":0},"output_tokens":12,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":311},"user":null,"metadata":{}}}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
|
|
2
|
+
{
|
|
3
|
+
"id": "resp_0f35ed53160b395301693cc957829881909359e7f80cdd20b5",
|
|
4
|
+
"object": "response",
|
|
5
|
+
"created_at": 1765591383,
|
|
6
|
+
"status": "completed",
|
|
7
|
+
"background": false,
|
|
8
|
+
"billing": {
|
|
9
|
+
"payer": "developer"
|
|
10
|
+
},
|
|
11
|
+
"error": null,
|
|
12
|
+
"incomplete_details": null,
|
|
13
|
+
"instructions": null,
|
|
14
|
+
"max_output_tokens": null,
|
|
15
|
+
"max_tool_calls": null,
|
|
16
|
+
"model": "gpt-5-mini-2025-08-07",
|
|
17
|
+
"output": [
|
|
18
|
+
{
|
|
19
|
+
"id": "rs_0f35ed53160b395301693cc95817ac8190b978637daea4987e",
|
|
20
|
+
"type": "reasoning",
|
|
21
|
+
"encrypted_content": "gAAAAABpPMlcH0HHEv5_ozHwP5Gxz5ZLE7A8Aw7GK94sa1KWHqXLrAch29KZrZqCzH6PkWnLWTxIZv4TL70DPoKbS_ryNp6d2rC8vS04U7qWLdsbYnsqmPYVCCQ2Rigd84Yh9mgctGTs_w5x7NY3pm5lOxUv5jGHAW20nAMGfpFAAYRjW1aAA7f1CjfcXgm8CgNOc1Mu3L9a-q64LU8taFhc_9-GNBqRD-Gxul4pVXTQ4BlnYwOGOsfctcM_SNxYgYM2gS0pawkltN5250JlO7LaUcteD8E47fpcHGS9hmzDpMGWvIpuksPjzBnVn_R9JJcJSd_rMO8TTrGlXT-Thw_UOdX3aZZLac2OMD_MIkGN4GuGISC674RZlJWi8_x-C-VqdkRm0qsEwYvFp17ykYReCtPocXWtOI1dyVZogyQYO5b6qEmHjPXIFqyoPHLjes_CrWyR7ChVcR_GTJq55lsHfppBevMU4wGbHga6CgaC_dcbGo4ECXPh0HUqs4U7t58JgJcCQ1DX1AygF4cRjKAs4mqTXOR4ruHutmknG61sOuc19FtOyhIadquNd2EBb9pa7Rix5Rk_0cTb1jkUBVH3QknhjjCDvvlp8MIp5jU55ANgI9ZpL3TTVWziTCJLdeLMUpohKggDJ7axs9qdhl3dfdvdhLnN5GimFNxWglWn8ioQ7KMYil9HxGErd47q0GxfFqnuNMfchsLESwCdmGMqsaavEjZjD_bQ_iXASQgmk2FYXo41tsHtrVBzJCFFLhswr1t47b8qb3_pJeevwLeuBfRR56ZKxQLyp35rLGzizSKknkKRrbimGL8L4hSI2ktPlH0JZlBiH7mhsBPSs8W7GhZjMYFUQ3RMBshUjHGx3Tu_iW5pNKkrI_XWDHaCNurXBNYV9Kj23Xj6GAQaFzGn62GpvKbObXFlW941aRuZLPCAhGHRZptxrNZEg_DcVcUrMEPHubEA5YUMSb4iZtszE0FT7kVmYmFU3SR-heOU2umXykQx5wnCoi0FtzWLDSXUbElcex-5k11pIoQH59HQYhfNzogV9p9MO1O9hGRaJkA_RZbUxRVKqDURRjNWzXJb8SdoCcRZSFdv_2WRv5NCt1XHBFcAL8DSa6Mu2y0DR-SW7kpu-yKRa8_R4g9dtweK6JRWZxG_TLxH_JIAwfmbts97zBwC-9pcmnC1UshE6_Z9RwRe3a2OTBNkS6dTHV8WMgM02fVFPhiFmFLj_jGUzxW4uQlWnTorO2-X2C-EcgzOGkEngM6_fhY-ZWTN4xEA6GRoCTSTYEaHq1MPIASasagN6N-NwALyBzLJ3vmwdo6ub5KS1JB4G_knIapiUKaGjVTGXCVG8iVTCrjc-fhrZnnY4yZyQP8RSc33JTIE3fYgPyJ9qwHRYlsH70TVbv0gXmUKCE-woT2nqyqYJMdIwtPWOpAc2lXEr5xeM0mZ3XzuArSP3rogl-p6TZNhrKfzQbMlL3yC9UK_rkShXOoi4MpOmNbnNgRCO2XZ_qO7MTTFqZwaM6VOnX3SStqEaTskoASEz7no-6OmMC7eJRZj1LtUqh2kCQ==",
|
|
22
|
+
"summary": [
|
|
23
|
+
{
|
|
24
|
+
"type": "summary_text",
|
|
25
|
+
"text": "**Reporting final result**\n\nThe tool returned 570, and now I need to report this final result. The user asked for a clear breakdown, so I'll include the steps taken: first, I added 12 and 7 to get 19; then, I multiplied 19 by 3 for 57; finally, I multiplied 57 by 10 to arrive at 570. I want to keep it concise, so I'll simply say, \"Final result: 570,\" without heavy formatting. Let's finalize that!"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "msg_0f35ed53160b395301693cc95c1d288190997018450969162b",
|
|
31
|
+
"type": "message",
|
|
32
|
+
"status": "completed",
|
|
33
|
+
"content": [
|
|
34
|
+
{
|
|
35
|
+
"type": "output_text",
|
|
36
|
+
"annotations": [],
|
|
37
|
+
"logprobs": [],
|
|
38
|
+
"text": "12 + 7 = 19\n19 × 3 = 57\n57 × 10 = 570\n\nFinal result: 570"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"role": "assistant"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"parallel_tool_calls": true,
|
|
45
|
+
"previous_response_id": null,
|
|
46
|
+
"prompt_cache_key": null,
|
|
47
|
+
"prompt_cache_retention": null,
|
|
48
|
+
"reasoning": {
|
|
49
|
+
"effort": "high",
|
|
50
|
+
"summary": "detailed"
|
|
51
|
+
},
|
|
52
|
+
"safety_identifier": null,
|
|
53
|
+
"service_tier": "default",
|
|
54
|
+
"store": false,
|
|
55
|
+
"temperature": 1,
|
|
56
|
+
"text": {
|
|
57
|
+
"format": {
|
|
58
|
+
"type": "text"
|
|
59
|
+
},
|
|
60
|
+
"verbosity": "medium"
|
|
61
|
+
},
|
|
62
|
+
"tool_choice": "auto",
|
|
63
|
+
"tools": [
|
|
64
|
+
{
|
|
65
|
+
"type": "function",
|
|
66
|
+
"description": "A minimal calculator for basic arithmetic. Call it once per step.",
|
|
67
|
+
"name": "calculator",
|
|
68
|
+
"parameters": {
|
|
69
|
+
"type": "object",
|
|
70
|
+
"properties": {
|
|
71
|
+
"a": {
|
|
72
|
+
"type": "number",
|
|
73
|
+
"description": "First operand."
|
|
74
|
+
},
|
|
75
|
+
"b": {
|
|
76
|
+
"type": "number",
|
|
77
|
+
"description": "Second operand."
|
|
78
|
+
},
|
|
79
|
+
"op": {
|
|
80
|
+
"type": "string",
|
|
81
|
+
"enum": [
|
|
82
|
+
"add",
|
|
83
|
+
"subtract",
|
|
84
|
+
"multiply",
|
|
85
|
+
"divide"
|
|
86
|
+
],
|
|
87
|
+
"default": "add",
|
|
88
|
+
"description": "Arithmetic operation to perform."
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"required": [
|
|
92
|
+
"a",
|
|
93
|
+
"b",
|
|
94
|
+
"op"
|
|
95
|
+
],
|
|
96
|
+
"additionalProperties": false
|
|
97
|
+
},
|
|
98
|
+
"strict": true
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"top_logprobs": 0,
|
|
102
|
+
"top_p": 1,
|
|
103
|
+
"truncation": "disabled",
|
|
104
|
+
"usage": {
|
|
105
|
+
"input_tokens": 865,
|
|
106
|
+
"input_tokens_details": {
|
|
107
|
+
"cached_tokens": 0
|
|
108
|
+
},
|
|
109
|
+
"output_tokens": 163,
|
|
110
|
+
"output_tokens_details": {
|
|
111
|
+
"reasoning_tokens": 128
|
|
112
|
+
},
|
|
113
|
+
"total_tokens": 1028
|
|
114
|
+
},
|
|
115
|
+
"user": null,
|
|
116
|
+
"metadata": {}
|
|
117
|
+
}
|