{"id":3332,"date":"2026-08-04T23:58:00","date_gmt":"2026-08-04T23:58:00","guid":{"rendered":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/"},"modified":"2026-08-05T16:59:05","modified_gmt":"2026-08-05T16:59:05","slug":"atom-everything-36","status":"publish","type":"post","link":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/","title":{"rendered":"New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging"},"content":{"rendered":"<p><br \/>\n<\/p>\n<div data-permalink-context=\"\/2026\/Aug\/4\/new-release-of-llm\/\">\n<h2>New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging<\/h2>\n<p class=\"mobile-date\">4th August 2026<\/p>\n<p>I launched LLM 0.32 this morning, probably the most vital new model of LLM because the preliminary launch of the challenge. The brand new model contains help for seen reasoning traces, server-side supplier instruments, redesigned content-addressable SQLite logs, new fashions, and new options enabled by the OpenAI Responses API. I additionally launched a brand new model of the llm-anthropic plugin with substantial updates of its personal.<\/p>\n<h4 id=\"headline-features-for-llm-cli-users\">Headline options for LLM CLI customers<\/h4>\n<p>Operating LLM in opposition to reasoning fashions now shows their reasoning traces to plain error, so you&#8217;ll be able to see what they&#8217;re \u201cpondering\u201d with out that info being included in the usual output that you simply would possibly pipe to a different software. Add -R\/&#8211;hide-reasoning to show this off.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/static.simonwillison.net\/static\/2026\/best-pelicans.gif\" alt=\"Running llm &quot;think about the best thing about pelicans&quot; in the macOS terminal window - grey text outputs saying Exploring pelican qualities, then after a paragraph of that a white paragraph of text comes out saying: The best thing about pelicans is their wonderfully oversized, practical design: that enormous bill and pouch look comical, but they make pelicans remarkably skilled fishers. Even better, many species cooperate\u2014working together to herd fish before scooping them up. They\u2019re a great mix of goofy, graceful, and surprisingly clever.\" style=\"max-width: 100%;\"\/><\/p>\n<p>LLM contains help out-of-the-box for the GPT-5.6 mannequin household, and the brand new default mannequin used with llm &#8220;immediate&#8221; is now the cheap however succesful GPT-5.6 Luna.<\/p>\n<p>LLM calls can now use server-side instruments from numerous suppliers. OpenAI present a code execution surroundings as a server-side software; LLM can now run prompts that profit from that like so:<\/p>\n<div class=\"highlight highlight-source-shell\">llm &#8211;tool CodeInterpreter <span class=\"pl-s\"><span class=\"pl-pds\">&#8216;<\/span>Present present python and SQLite variations<span class=\"pl-pds\">&#8216;<\/span><\/span><\/div>\n<p>OpenAI additionally will get a WebSearch software.<\/p>\n<p>The llm-anthropic plugin provides WebSearch, WebFetch, CodeExecution, and AnthropicMCP, which seems to be like this:<\/p>\n<div class=\"highlight highlight-source-shell\">llm -m claude-sonnet-5 -T <span class=\"pl-s\"><span class=\"pl-pds\">&#8216;<\/span>AnthropicMCP(&#8220;https:\/\/datasette.simonwillison.web\/-\/mcp&#8221;)<span class=\"pl-pds\">&#8216;<\/span><\/span><br \/>\n  <span class=\"pl-s\"><span class=\"pl-pds\">&#8216;<\/span>what number of rows within the blog_blogmark desk?<span class=\"pl-pds\">&#8216;<\/span><\/span><\/div>\n<p>That causes Anthropic to execute MCP calls in opposition to my new datasette-mcp plugin as a part of a single request\/response interplay with their API.<\/p>\n<p>The brand new llm openai endpoint command gives a software for executing prompts in opposition to any OpenAI appropriate endpoint as a one-liner. These aren\u2019t logged, which makes this a helpful software for working one-off prompts in opposition to something that speaks the lingua franca of the LLM API world.<\/p>\n<p>Right here\u2019s how I exploit that to run prompts in opposition to Gemma 4 12B working in my localhost LM Studio API, through uvx (no LLM set up required) and mixing within the llm-tools-quickjs software plugin for good measure:<\/p>\n<div class=\"highlight highlight-source-shell\">uvx &#8211;with llm-tools-quickjs<br \/>\n  llm openai endpoint http:\/\/localhost:1234\/v1 -m google\/gemma-4-12b<br \/>\n  -T QuickJS <span class=\"pl-s\"><span class=\"pl-pds\">&#8216;<\/span>Use QuickJS to multiply 3434 * 2434<span class=\"pl-pds\">&#8216;<\/span><\/span> &#8211;td<\/div>\n<p><img decoding=\"async\" src=\"https:\/\/static.simonwillison.net\/static\/2026\/openai-endpoint-gemma.webp\" alt=\"Output reads Tool call: QuickJS_execute_javascript({'javascript': '3434 * 2434'})  8358356 The result of 3434 * 2434 is 8,358,356.\" style=\"max-width: 100%;\"\/><\/p>\n<h4 id=\"new-features-in-the-python-api\">New options within the Python API<\/h4>\n<p>LLM\u2019s Python API beforehand required you to create a dialog after which ship messages to it one by one. This was an abstraction over the true nature of LLMs, the place every request carries a whole historical past of the messages that got here earlier than it. That abstraction began to get in the way in which for some extra superior instances, so the brand new launch introduces a mannequin.immediate(messages=[]) parameter that can be utilized like this:<\/p>\n<p><span class=\"pl-k\">import<\/span> <span class=\"pl-s1\">llm<\/span><br \/>\n<span class=\"pl-k\">from<\/span> <span class=\"pl-s1\">llm<\/span> <span class=\"pl-k\">import<\/span> <span class=\"pl-s1\">consumer<\/span>, <span class=\"pl-s1\">assistant<\/span>, <span class=\"pl-s1\">system<\/span><\/p>\n<p><span class=\"pl-s1\">mannequin<\/span> <span class=\"pl-c1\">=<\/span> <span class=\"pl-s1\">llm<\/span>.<span class=\"pl-c1\">get_model<\/span>(<span class=\"pl-s\">&#8220;gpt-5.6-luna&#8221;<\/span>)<\/p>\n<p><span class=\"pl-s1\">response<\/span> <span class=\"pl-c1\">=<\/span> <span class=\"pl-s1\">mannequin<\/span>.<span class=\"pl-c1\">immediate<\/span>(<span class=\"pl-s1\">messages<\/span><span class=\"pl-c1\">=<\/span>[<br \/>\n    <span class=\"pl-en\">system<\/span>(<span class=\"pl-s\">&#8220;You are a helpful pirate.&#8221;<\/span>),<br \/>\n    <span class=\"pl-en\">user<\/span>(<span class=\"pl-s\">&#8220;What is the capital of France?&#8221;<\/span>),<br \/>\n    <span class=\"pl-en\">assistant<\/span>(<span class=\"pl-s\">&#8220;Paris, matey.&#8221;<\/span>),<br \/>\n    <span class=\"pl-en\">user<\/span>(<span class=\"pl-s\">&#8220;And Germany?&#8221;<\/span>),<br \/>\n])<br \/>\n<span class=\"pl-en\">print<\/span>(<span class=\"pl-s1\">response<\/span>.<span class=\"pl-c1\">textual content<\/span>())<\/p>\n<p>LLM beforehand returned an iterable sequence of strings from every immediate. This labored nice when fashions returned a string response, however did not predict the bizarre form that fashions would evolve in direction of. At this time many fashions return a mixture of reasoning textual content, output strings, software calls, and even picture attachments. With LLM 0.32 you are able to do this as a substitute:<\/p>\n<p><span class=\"pl-k\">for<\/span> <span class=\"pl-s1\">occasion<\/span> <span class=\"pl-c1\">in<\/span> <span class=\"pl-s1\">mannequin<\/span>.<span class=\"pl-c1\">immediate<\/span>(<span class=\"pl-s\">&#8220;Clarify cats&#8221;<\/span>).<span class=\"pl-c1\">stream_events<\/span>():<br \/>\n    <span class=\"pl-k\">if<\/span> <span class=\"pl-s1\">occasion<\/span>.<span class=\"pl-c1\">kind<\/span> <span class=\"pl-c1\">==<\/span> <span class=\"pl-s\">&#8220;reasoning&#8221;<\/span>:<br \/>\n        <span class=\"pl-en\">print<\/span>(<span class=\"pl-s\">f&#8221;[thinking] <span class=\"pl-s1\"><span class=\"pl-kos\">{<\/span><span class=\"pl-s1\">occasion<\/span>.<span class=\"pl-c1\">chunk<\/span><span class=\"pl-kos\">}<\/span><\/span>&#8220;<\/span>, <span class=\"pl-s1\">finish<\/span><span class=\"pl-c1\">=<\/span><span class=\"pl-s\">&#8220;&#8221;<\/span>, <span class=\"pl-s1\">flush<\/span><span class=\"pl-c1\">=<\/span><span class=\"pl-c1\">True<\/span>)<br \/>\n    <span class=\"pl-k\">elif<\/span> <span class=\"pl-s1\">occasion<\/span>.<span class=\"pl-c1\">kind<\/span> <span class=\"pl-c1\">==<\/span> <span class=\"pl-s\">&#8220;textual content&#8221;<\/span>:<br \/>\n        <span class=\"pl-en\">print<\/span>(<span class=\"pl-s1\">occasion<\/span>.<span class=\"pl-c1\">chunk<\/span>, <span class=\"pl-s1\">finish<\/span><span class=\"pl-c1\">=<\/span><span class=\"pl-s\">&#8220;&#8221;<\/span>, <span class=\"pl-s1\">flush<\/span><span class=\"pl-c1\">=<\/span><span class=\"pl-c1\">True<\/span>)<br \/>\n    <span class=\"pl-k\">else<\/span>:<br \/>\n        <span class=\"pl-en\">print<\/span>(<span class=\"pl-s\">f&#8221;Different occasion: <span class=\"pl-s1\"><span class=\"pl-kos\">{<\/span><span class=\"pl-s1\">occasion<\/span><span class=\"pl-kos\">}<\/span><\/span>&#8220;<\/span>)<\/p>\n<p>Mix these options and we will lastly present a strong implementation of the semi-standard OpenAI chat completions API, which I\u2019ve now launched because the llm-chat-completions-server plugin:<\/p>\n<div class=\"highlight highlight-source-shell\">llm set up llm-chat-completions-server<br \/>\nllm chat-completions-server &#8211;port 9000<br \/>\n<span class=\"pl-c\"><span class=\"pl-c\">#<\/span> Server is now working on http:\/\/127.0.0.1:9000\/v1<\/span><\/div>\n<p>Now you&#8217;ll be able to run prompts in opposition to LLM through that server, utilizing the brand new llm openai endpoint command!<\/p>\n<div class=\"highlight highlight-source-shell\">llm openai endpoint http:\/\/127.0.0.1:9000\/v1 <span class=\"pl-s\"><span class=\"pl-pds\">&#8216;<\/span>hiya<span class=\"pl-pds\">&#8216;<\/span><\/span> -m gpt-5.4-mini<\/div>\n<p>The larger problem with that type of API considerations logging. If we\u2019re going to help the sample the place the message sequence is appended to on each request, ideally we will keep away from logging all of that duplicate JSON for each flip.<\/p>\n<p>The answer is the brand new content-addressable message retailer, modeled after Git. You possibly can see the brand new schema for that within the documentation, however the llm logs and llm logs &#8211;json instructions have each been upgraded to transform that format again into one thing that\u2019s simple to devour.<\/p>\n<h4 id=\"and-the-rest\">And the remainder<\/h4>\n<p>There&#8217;s a complete lot extra on this launch. The 0.32 launch notes are fairly complete, and the notes for 0.32rc2, 0.32rc, 0.32a3, 0.32a2, and 0.32a0 ought to fill in any gaps.<\/p>\n<p>Present LLM plugins ought to all proceed to work, however plugins that present further fashions will have to be upgraded to 0.32 so as to take part totally within the new streaming occasions system. There\u2019s a information to implementing plugins with Structured messages and streaming occasions within the documentation.<\/p>\n<p>I\u2019ve up to date a few of my very own plugins:<\/p>\n<h4 id=\"i-guess-llm-is-an-agent-framework-now\">I suppose LLM is an agent framework now<\/h4>\n<p>Fairly a number of of the lower-level instruments adjustments on this launch had been pushed by the wants of Datasette Agent. Once I began work on LLM, the time period \u201cagent\u201d had such a imprecise definition that I refused to make use of it. In September 2025 I got here round to the concept that &#8220;An LLM agent runs instruments in a loop to realize a purpose&#8221; is properly established sufficient now that I may cease avoiding the time period fully.<\/p>\n<p>Device chains can now pause for human approval and resume from a saved message historical past\u2014each wanted by Datasette Agent.<\/p>\n<p> LLM at present it\u2019s starting to look very agent-shaped to me. There\u2019s one thing neat about having a CLI utility that may combine and match totally different instruments from totally different sources with totally different fashions all as a one-liner, and that features a Python library highly effective sufficient to construct methods like Datasette Agent and llm-coding-agent.<\/p>\n<p>Possibly the following model of LLM will bake the idea of an \u201cagent\u201d into the core library. I\u2019m nonetheless attempting to determine what that might seem like.<\/p>\n<\/div>\n<p><br \/>\n<br \/><a href=\"https:\/\/simonwillison.net\/2026\/Aug\/4\/new-release-of-llm\/#atom-everything\">Source link <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging 4th August 2026 I launched LLM 0.32 this morning, probably the most vital new model of LLM because the preliminary launch of the challenge. The brand new model contains help for seen reasoning traces, server-side supplier instruments, redesigned content-addressable [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3334,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"fifu_image_url":"https:\/\/static.simonwillison.net\/static\/2026\/best-thing-pelicans-card.jpg","fifu_image_alt":"","jnews-multi-image_gallery":[],"jnews_single_post":[],"jnews_primary_category":[],"jnews_override_bookmark_settings":[],"jnews_social_meta":[],"jnews_override_counter":[],"footnotes":""},"categories":[2],"tags":[89,452,3725,258,208,243,958,3724,1231,163,56,3723],"class_list":["post-3332","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-research-breakthroughs","tag-adds","tag-llm","tag-logging","tag-openai","tag-reasoning","tag-release","tag-responses","tag-serverside","tag-smarter","tag-support","tag-tools","tag-traces"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging - Future News 24<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging - Future News 24\" \/>\n<meta property=\"og:description\" content=\"New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging 4th August 2026 I launched LLM 0.32 this morning, probably the most vital new model of LLM because the preliminary launch of the challenge. The brand new model contains help for seen reasoning traces, server-side supplier instruments, redesigned content-addressable [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/\" \/>\n<meta property=\"og:site_name\" content=\"Future News 24\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-04T23:58:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-05T16:59:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/static.simonwillison.net\/static\/2026\/best-thing-pelicans-card.jpg\" \/><meta property=\"og:image\" content=\"https:\/\/static.simonwillison.net\/static\/2026\/best-thing-pelicans-card.jpg\" \/>\n<meta name=\"author\" content=\"Future News 24\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/static.simonwillison.net\/static\/2026\/best-thing-pelicans-card.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Future News 24\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/\"},\"author\":{\"name\":\"Future News 24\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/person\\\/cecad1bde21cfc357cf70128144d6c83\"},\"headline\":\"New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging\",\"datePublished\":\"2026-08-04T23:58:00+00:00\",\"dateModified\":\"2026-08-05T16:59:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/\"},\"wordCount\":1097,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/static.simonwillison.net\\\/static\\\/2026\\\/best-thing-pelicans-card.jpg\",\"keywords\":[\"adds\",\"LLM\",\"logging\",\"OpenAI\",\"Reasoning\",\"Release\",\"responses\",\"serverside\",\"smarter\",\"Support\",\"Tools\",\"traces\"],\"articleSection\":[\"AI Research &amp; Breakthroughs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/\",\"name\":\"New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging - Future News 24\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/static.simonwillison.net\\\/static\\\/2026\\\/best-thing-pelicans-card.jpg\",\"datePublished\":\"2026-08-04T23:58:00+00:00\",\"dateModified\":\"2026-08-05T16:59:05+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/#primaryimage\",\"url\":\"https:\\\/\\\/static.simonwillison.net\\\/static\\\/2026\\\/best-thing-pelicans-card.jpg\",\"contentUrl\":\"https:\\\/\\\/static.simonwillison.net\\\/static\\\/2026\\\/best-thing-pelicans-card.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/04\\\/atom-everything-36\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/futurenews24.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#website\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/\",\"name\":\"Future News 24\",\"description\":\"The Smart Hub for AI and Next-Gen Innovation\",\"publisher\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/futurenews24.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\",\"name\":\"Future News 24\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fn24-favicon.png\",\"contentUrl\":\"https:\\\/\\\/futurenews24.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fn24-favicon.png\",\"width\":250,\"height\":250,\"caption\":\"Future News 24\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/person\\\/cecad1bde21cfc357cf70128144d6c83\",\"name\":\"Future News 24\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"caption\":\"Future News 24\"},\"sameAs\":[\"https:\\\/\\\/futurenews24.com\"],\"url\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/author\\\/mridulpahuja20\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging - Future News 24","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/","og_locale":"en_US","og_type":"article","og_title":"New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging - Future News 24","og_description":"New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging 4th August 2026 I launched LLM 0.32 this morning, probably the most vital new model of LLM because the preliminary launch of the challenge. The brand new model contains help for seen reasoning traces, server-side supplier instruments, redesigned content-addressable [&hellip;]","og_url":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/","og_site_name":"Future News 24","article_published_time":"2026-08-04T23:58:00+00:00","article_modified_time":"2026-08-05T16:59:05+00:00","og_image":[{"url":"https:\/\/static.simonwillison.net\/static\/2026\/best-thing-pelicans-card.jpg","type":"","width":"","height":""},{"url":"https:\/\/static.simonwillison.net\/static\/2026\/best-thing-pelicans-card.jpg","type":"","width":"","height":""}],"author":"Future News 24","twitter_card":"summary_large_image","twitter_image":"https:\/\/static.simonwillison.net\/static\/2026\/best-thing-pelicans-card.jpg","twitter_misc":{"Written by":"Future News 24","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/#article","isPartOf":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/"},"author":{"name":"Future News 24","@id":"https:\/\/futurenews24.com\/#\/schema\/person\/cecad1bde21cfc357cf70128144d6c83"},"headline":"New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging","datePublished":"2026-08-04T23:58:00+00:00","dateModified":"2026-08-05T16:59:05+00:00","mainEntityOfPage":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/"},"wordCount":1097,"commentCount":0,"publisher":{"@id":"https:\/\/futurenews24.com\/#organization"},"image":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/#primaryimage"},"thumbnailUrl":"https:\/\/static.simonwillison.net\/static\/2026\/best-thing-pelicans-card.jpg","keywords":["adds","LLM","logging","OpenAI","Reasoning","Release","responses","serverside","smarter","Support","Tools","traces"],"articleSection":["AI Research &amp; Breakthroughs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/","url":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/","name":"New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging - Future News 24","isPartOf":{"@id":"https:\/\/futurenews24.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/#primaryimage"},"image":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/#primaryimage"},"thumbnailUrl":"https:\/\/static.simonwillison.net\/static\/2026\/best-thing-pelicans-card.jpg","datePublished":"2026-08-04T23:58:00+00:00","dateModified":"2026-08-05T16:59:05+00:00","breadcrumb":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/#primaryimage","url":"https:\/\/static.simonwillison.net\/static\/2026\/best-thing-pelicans-card.jpg","contentUrl":"https:\/\/static.simonwillison.net\/static\/2026\/best-thing-pelicans-card.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/04\/atom-everything-36\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/futurenews24.com\/"},{"@type":"ListItem","position":2,"name":"New launch of LLM provides help for reasoning traces, OpenAI Responses, server-side instruments, and smarter logging"}]},{"@type":"WebSite","@id":"https:\/\/futurenews24.com\/#website","url":"https:\/\/futurenews24.com\/","name":"Future News 24","description":"The Smart Hub for AI and Next-Gen Innovation","publisher":{"@id":"https:\/\/futurenews24.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/futurenews24.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/futurenews24.com\/#organization","name":"Future News 24","url":"https:\/\/futurenews24.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/futurenews24.com\/#\/schema\/logo\/image\/","url":"https:\/\/futurenews24.com\/wp-content\/uploads\/2026\/06\/fn24-favicon.png","contentUrl":"https:\/\/futurenews24.com\/wp-content\/uploads\/2026\/06\/fn24-favicon.png","width":250,"height":250,"caption":"Future News 24"},"image":{"@id":"https:\/\/futurenews24.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/futurenews24.com\/#\/schema\/person\/cecad1bde21cfc357cf70128144d6c83","name":"Future News 24","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","caption":"Future News 24"},"sameAs":["https:\/\/futurenews24.com"],"url":"https:\/\/futurenews24.com\/index.php\/author\/mridulpahuja20\/"}]}},"_links":{"self":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/3332","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/comments?post=3332"}],"version-history":[{"count":1,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/3332\/revisions"}],"predecessor-version":[{"id":3333,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/3332\/revisions\/3333"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/media\/3334"}],"wp:attachment":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/media?parent=3332"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/categories?post=3332"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/tags?post=3332"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}