SShortSingh.
Back to feed

OpenAI to retire GPT-3.5, GPT-4 and legacy APIs by October 2026

0
·1 views

OpenAI has published a series of model deprecation deadlines, with the Assistants API already shut down on 26 August 2026. Key upcoming cutoffs include the Videos API and sora-2 on 24 September, legacy completion snapshots on 28 September, and gpt-3.5-turbo and gpt-4 on 23 October 2026. Businesses that built AI-powered tools such as chatbots or email classifiers in 2023–2024 are likely relying on these soon-to-be-retired models. Unlike a gradual slowdown, deprecated models will return errors immediately upon shutdown, causing automations to fail without warning. A common complication is that retirement notices are sent to the developer account that holds the API key, which often belongs to an external agency rather than the business itself.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Showback vs Chargeback: How Companies Allocate Shared IT Costs to Teams

Showback and chargeback are two standard models for attributing shared IT costs to the teams that incur them, differing primarily in whether money actually moves. Showback reports each team's cost share as information only, leaving the central budget as the payer, while chargeback transfers that share directly onto each team's budget as an internal financial transaction. Showback is lower-risk and easier to implement from the outset, even with imperfect data, since errors result in a conversation rather than a billing dispute. Chargeback creates stronger accountability by making teams responsible for spending from their own budgets, but requires accurate attribution, finance integration, and a formal dispute process. Organizations typically begin with showback to build trust in the data before transitioning to chargeback once methodology and culture are sufficiently mature.

0
ProgrammingDEV Community ·

On-Device AI Pipeline Turns Meeting Speech Into Assigned Tasks Automatically

A team behind the Octic on-device recorder and Octo collaboration platform has built a five-stage pipeline that converts spoken meeting decisions into tracked, assigned tasks without manual input. The system captures audio locally on the Octic device, runs speech recognition and speaker diarization on-device so audio never leaves the room, then passes timestamped transcripts through a natural language understanding model to extract action items, decisions, and open questions. Extracted tasks are automatically turned into structured work units called Loops in Octo, each with an owner, description, and acceptance criteria mapped from the conversation. The project was motivated by internal tracking data showing that roughly 40% of verbally agreed tasks across six or more daily meetings were never entered into any system. The full pipeline runs as a post-meeting batch job, a design choice the team found produces more accurate intent extraction than real-time processing.

0
ProgrammingDEV Community ·

Developer Finds Double-Counted 21,000 Gas Bug in Smart Contract Refund Logic

A developer building Legwork, a smart contract for recurring on-chain payments on Arc mainnet, discovered a gas refund miscalculation during a post-deployment audit. The contract was incorrectly crediting the 21,000 gas intrinsic transaction cost once per order execution call, rather than once per transaction, causing over-refunds when multiple orders were batched together. For a batch of K orders in a single transaction, executors were being overpaid by 21,000 × (K − 1) gas units, though no funds were exploited and refunds were bounded by each order's reserve. The bug was identified the day after the README claimed refunds were exact, and a fix was implemented by tracking whether the intrinsic cost had already been credited within a transaction. The corrected contract remains live on Arc mainnet, with the full audit trail and receipts preserved in the public MIT-licensed repository.

0
ProgrammingDEV Community ·

Developer turns 1,100 pages of five-year technical notes into seven books with AI nudge

A software developer accumulated over 1,100 pages of technical notes across five years while working on embedded systems projects spanning Linux, QNX, AUTOSAR, and hardware security modules. The notes began as personal study summaries during graduate school and evolved into detailed debugging logs and module documentation during startup internships. Curious about the material, the developer fed the notes into an AI, which assessed the content as covering a rare depth across application, driver, and hardware layers. The AI suggested the notes contained enough coherent technical knowledge to be organized into books that could benefit other engineers. The developer subsequently restructured the material by topic — grouping areas like PTP, UDS, and HSM — and rewrote each section from scratch into seven standalone books grounded in protocol standards, open-source code, and firsthand experience.