terminal
howtonotcode.com
gpt-5 logo

gpt-5

Service

GPT-5 is expected to be a future iteration of OpenAI's Generative Pre-trained Transformer models, designed for advanced natural language processing tasks. It would likely be aimed at developers, researchers, and businesses seeking cutting-edge AI capabilities for applications such as chatbots, content generation, and more.

article 28 storys calendar_today First seen: 2026-01-02 update Last seen: 2026-03-03 open_in_new Website menu_book Wikipedia

Stories

Showing 21-28 of 28

Google’s Gemini 3.1 Flash-Lite targets high-volume, low-latency workloads

Google released Gemini 3.1 Flash-Lite, a faster, cheaper model aimed at high-volume developer workloads and signaling a broader shift to lighter LLMs for routine backend and data tasks. Google’s launch of [Gemini 3.1 Flash-Lite](https://thenewstack.io/google-gemini-3-1-flash-lite/) emphasizes low-latency responses for tasks where cost is critical, with preview access via the Gemini API in Google AI Studio and enterprise access in Vertex AI, alongside industry moves like OpenAI’s GPT-5.3 Instant toward lighter models ([context and availability](https://www.thedeepview.com/articles/openai-google-target-lighter-models)). Independent coverage pegs Flash-Lite at $0.25/million input tokens and $1.5/million output tokens—about one-eighth the price of Gemini 3.1 Pro—and notes support for four “thinking” levels to trade speed for reasoning when needed ([pricing and modes](https://simonwillison.net/2026/Mar/3/gemini-31-flash-lite/#atom-everything)). For backend/data teams, this sweet spot makes Flash-Lite a strong default for translation, content moderation, summarization, and structured generation (dashboards/simulations), reserving heavier models for only the hardest requests ([use cases](https://www.thedeepview.com/articles/openai-google-target-lighter-models)). If your pipelines push files, mind Gemini’s surface-specific limits across Apps (including NotebookLM notebooks), API, and enterprise tools—think up to 10 files per prompt, 100MB per file/ZIP with caveats, strict video caps, and code folder/GitHub repo constraints—so ingestion doesn’t silently truncate or fail ([file-handling constraints](https://www.datastudios.org/post/gemini-file-upload-support-explained-supported-formats-size-constraints-and-document-handling-acr)). Zooming out, the race to lighter models (OpenAI’s GPT-5.3 Instant and Alibaba’s Qwen Small Model Series) underscores a clear pattern: push routine throughput to cheaper, faster tiers and escalate to heavyweight reasoning only on ambiguity or failure ([trend snapshot](https://www.thedeepview.com/articles/openai-google-target-lighter-models)).

calendar_today 2026-03-03
google gemini-31-flash-lite gemini-api google-ai-studio vertex-ai

Coding Benchmarks Shake-up: Qwen 3.5, MiniMax M2.5, and a SWE-bench Reality Check

Open models like Alibaba’s Qwen 3.5 and MiniMax M2.5 post strong coding-agent results, but OpenAI’s audit of SWE-bench Verified shows contamination and flawed tests that can mislead real-world adoption. Alibaba’s Qwen 3.5 family uses a sparse MoE design (397B total/17B active), ships open weights under Apache 2.0, and shows strong instruction following and competitive coding scores in public benchmarks, with setup guidance and comparisons to frontier models detailed in this deep-dive guide [Qwen 3.5: The Complete Guide](https://techie007.substack.com/p/qwen-35-the-complete-guide-benchmarks). MiniMax’s latest model claims state-of-the-art coding and agentic performance, faster task completion, and ultra-low runtime cost (about $1/hour at 100 tok/s), alongside reported scores on coding and browsing evaluations [MiniMax-M2.5 on Hugging Face](https://huggingface.co/unsloth/MiniMax-M2.5). OpenAI, however, reports that many SWE-bench Verified tasks have broken tests and that major models were trained on benchmark solutions, halting its use of the metric and urging caution in interpreting scores [OpenAI Abandons SWE-bench Verified](https://blockchain.news/news/openai-abandons-swe-bench-verified-contamination-flawed-tests). For quick, low-cost trials of multiple “top models,” a short explainer points to an Alibaba Cloud coding plan bundling popular options [This $3 AI Coding Plan Gives You Every Top Model You Need](https://www.youtube.com/watch?v=Qnz7S-5fzWo&pp=ygUXbmV3IEFJIG1vZGVsIGZvciBjb2RpbmfSBwkJrgoBhyohjO8%3D).

calendar_today 2026-03-03
qwen-35 alibaba alibaba-cloud minimax-m25 openai

OpenAI rolls out GPT-5.3 Instant and 5.3-Codex to the API

OpenAI released GPT-5.3 Instant with faster, more grounded responses and made it available via the API alongside the new 5.3-Codex for code tasks. [OpenAI’s system card](https://openai.com/index/gpt-5-3-instant-system-card/) describes GPT‑5.3 Instant as quicker, better at contextualizing web-sourced answers, and less likely to derail into caveats, with safety mitigations largely unchanged from 5.2. Developer posts indicate the API model is exposed as [gpt-5.3-chat-latest](https://community.openai.com/t/api-model-gpt-5-3-chat-latest-available-aka-instant-on-chatgpt/1375606) (aka “instant” in ChatGPT) and introduce [GPT‑5.3‑Codex](https://community.openai.com/t/introducing-gpt-5-3-codex-the-most-powerful-interactive-and-productive-codex-yet/1373453) for stronger code generation, while industry coverage notes it “dials down the cringe” in chat flow ([The New Stack](https://thenewstack.io/openai-gpt-5-1-instant/)).

calendar_today 2026-03-03
openai gpt-53-instant gpt-53-codex chatgpt openai-api

OpenAI speeds up agent backends with Responses API WebSockets and gpt‑realtime‑1.5

OpenAI shipped a faster path for real-time, tool-calling agents by adding WebSockets to the Responses API and upgrading its voice model to gpt-realtime-1.5. OpenAI reports the new [gpt-realtime-1.5](https://the-decoder.com/openai-ships-api-upgrades-targeting-voice-reliability-and-agent-speed-for-developers/) improves number/letter transcription (~10%), logical audio tasks (~5%), and instruction following (~7%), while the Responses API now supports [WebSockets](https://the-decoder.com/openai-ships-api-upgrades-targeting-voice-reliability-and-agent-speed-for-developers/) so agents stream state and tool calls without resending full context, yielding a claimed 20–40% speedup on complex graphs. For productionization, OpenAI’s docs emphasize hardened patterns—capability encapsulation via [Skills](https://developers.openai.com/api/docs/guides/tools-skills/) and secure prompting/tooling per [Cybersecurity checks](https://developers.openai.com/api/docs/guides/safety-checks/cybersecurity)—while the cookbook on [long‑horizon Codex tasks](https://developers.openai.com/cookbook/examples/codex/long_horizon_tasks/) remains relevant for workflows that still need multi‑hour execution. Ecosystem notes: the Python SDK [v2.24.0](https://github.com/openai/openai-python/releases/tag/v2.24.0) adds a new API “phase” enum; community threads flag rough edges like fine‑tune inconsistencies between Chat vs. Responses with GPT‑4o, transient 401s on vector store creation, and disappearing service‑account keys (linkable via the OpenAI forum).

calendar_today 2026-02-24
openai gpt-realtime-15 responses-api realtime-api openai-python

Open-weight "AI engineer" models arrive: Qwen 3.5, GLM-5, MiniMax M2.5

A new wave of open-weight frontier models now rivals closed systems on coding and long-horizon agent tasks, making self-hosted AI engineer workflows practical for backend and data teams. Alibaba’s Qwen 3.5 ships as an open‑weights Mixture‑of‑Experts model (397B total, 17B active) with multimodal input and a 256K context, alongside a hosted Qwen3.5‑Plus variant offering 1M context and built‑in tools; details and early impressions are summarized by Simon Willison’s write‑up of the [Qwen 3.5 release](https://simonwillison.net/2026/Feb/17/qwen35/#atom-everything) and the official [Qwen blog](https://qwen.ai/blog?id=qwen3.5). Z.ai’s GLM‑5 launched open source with top open-model scores on SWE‑bench‑Verified (77.8) and Terminal Bench 2.0 (56.2), plus long‑context and RL‑driven agent training advances, with the announcement and code at [BusinessWire](https://www.businesswire.com/news/home/20260215030665/en/GLM-5-Launch-Signals-a-New-Era-in-AI-When-Models-Become-Engineers) and the [GitHub repo](https://github.com/zai-org/GLM-5). MiniMax M2.5 claims state‑of‑the‑art coding/agent performance (e.g., 80.2% SWE‑Bench Verified) and aggressive cost/speed on its [Hugging Face card](https://huggingface.co/unsloth/MiniMax-M2.5), while hands‑on videos compare real coding runs for GLM‑5 and M2.5; you can also quickly trial free models via [OpenRouter’s free router](https://openrouter.ai/openrouter/free).

calendar_today 2026-02-17
qwen35-397b-a17b qwen35-plus qwen-chat alibaba-cloud glm-5

Cursor 2.4.x instability: agent command failures, stalls, and plan-mode popups

Multiple recent reports indicate Cursor 2.4.35–2.4.37 have agent command execution failures, stalls, and plan-mode file refresh loops on macOS and Linux. On macOS (2.4.37), users report the agent cannot run any commands in IDE or CLI; a staff response flags a known sandbox issue and suggests switching Agents > Auto-Run Mode to “Ask Every Time” to disable sandbox as a workaround ([thread](https://forum.cursor.com/t/in-the-cursor-ide-and-cli-when-the-agent-tries-to-run-a-command-all-commands-fail/152020)). On Linux (2.4.35 AppImage), plan tabs repeatedly reopen with “The content of the file is newer” prompts, copy actions fail during generation, navigation lags, and the window crashes (code 132) when GPT-5.2 is running ([thread](https://forum.cursor.com/t/dozend-of-plans-reopen-at-once-with-the-content-of-the-file-is-newer/152041)). Related posts describe agents stalling/getting stuck and ignoring iteration rules, suggesting broader instability across the 2.4.x line ([stalls](https://forum.cursor.com/t/cursor-agent-stalls-gets-stuck/152008), [iteration rules](https://forum.cursor.com/t/cursor-is-ignoring-even-the-most-simple-rules-in-iteration-development-approach/152025), [tag change question](https://forum.cursor.com/t/what-the-think-tag-in-cursor-version-2-5-14-has-been-changed-to/152026)).

calendar_today 2026-02-17
cursor cursor-ide cursor-cli ai-ide agent-workflows

OpenAI Skills + Shell for long‑running agents: patterns and pitfalls

OpenAI’s new Skills and Shell tooling make it easier to ship capability‑scoped, long‑running agents for real backend work, but early adopters report reliability gaps you should engineer around. OpenAI’s cookbook shows how to turn discrete capabilities into reusable Skills that your agent invokes via tool calls, enabling least‑privilege execution and clearer observability ([Skills in API](https://developers.openai.com/cookbook/examples/skills_in_api/)); paired with the “tool‑call render” pattern, this turns a chatty bot into a doer with predictable handoffs ([render pattern explainer](https://dev.to/programmingcentral/the-tool-call-render-pattern-turning-your-ai-from-a-chatty-bot-into-a-doer-4cb2)). For workloads that run minutes to hours, OpenAI’s guidance combines Shell, Skills, and compaction to manage state bloat, retry long steps, and keep transcripts affordable and debuggable ([Shell + Skills + Compaction tips](https://developers.openai.com/blog/skills-shell-tips/)). Plan for rough edges reported by developers: an embedding outage returned all‑zero vectors in text‑embedding‑3‑small, some Assistants API file uploads expired immediately, GPT‑5.2 extended‑thinking had very low tokens/sec for some, and Apps SDK toolInvocation status UI required a widget workaround ([embedding outage](https://community.openai.com/t/embedding-model-outage-text-embedding-3-small-api-ev3-model-name-with-all-0-values/1374079#post_10), [files expiring](https://community.openai.com/t/files-instantly-expiring-upon-upload/1366339#post_5), [slow generation](https://community.openai.com/t/gpt-5-2-extended-thinking-webchat-has-unworkably-slow-token-4-tps-generation/1373185?page=3#post_49), [toolInvocation UI bug](https://community.openai.com/t/bug-meta-openai-toolinvocation-invoking-and-meta-openai-toolinvocation-invoked-not-shown-unless-the-tool-registers-a-widget/1374087#post_1)).

calendar_today 2026-02-12
openai chatgpt assistants-api agents-sdk chatgpt-apps-sdk

OpenAI Codex-Spark debuts on Cerebras for near-instant agentic coding

OpenAI launched GPT-5.3-Codex-Spark, a fast, steerable coding model served on Cerebras hardware to deliver near-instant responses for real-time agentic development. OpenAI and Cerebras unveiled a research preview of Codex-Spark aimed at live, iterative coding with responsiveness over 1,000 tokens/s, enabled by the Cerebras Wafer-Scale Engine, and designed to keep developers “in the loop” during agentic work [Cerebras announcement](https://www.cerebras.ai/blog/openai-codexspark). Independent coverage frames this as OpenAI’s first major inference move beyond Nvidia, positioning Cerebras for ultra-low-latency workloads while acknowledging capability tradeoffs versus the full GPT‑5.3‑Codex on autonomous engineering benchmarks [VentureBeat](https://venturebeat.com/technology/openai-deploys-cerebras-chips-for-15x-faster-code-generation-in-first-major) and broader speed-focused reporting [The New Stack](https://thenewstack.io/openais-new-codex-spark-is-optimized-for-speed/). On the tooling front, the openai/codex v0.99.0 release adds app‑server APIs for steering active turns, enterprise controls via requirements.toml (e.g., web search modes, network constraints), improved TUI flows, and concurrent shell command execution—useful for orchestrating agent runs with higher control and safety [GitHub release notes](https://github.com/openai/codex/releases/tag/rust-v0.99.0). For adoption patterns, a practical guide outlines “agent‑first engineering” using Codex CLI/IDE, cloud sandboxes for parallel tasks, an SDK for programmatic control, and GitHub Actions to plug agents into CI/CD with clear definitions of “done” [agentic workflow guide](https://www.gend.co/fr/blog/codex-agent-first-engineering).

calendar_today 2026-02-12
openai cerebras-systems nvidia gpt-53-codex-spark gpt-53-codex