TLDRocket
Sign in

Developer Tools

294 summarised stories about Developer Tools, each linking back to the original source. Browse all topics →

Thursday, 23 April 2026

Introducing GPT-5.5

OpenAI Blog 2 months ago

OpenAI released GPT-5.5, a new model designed for complex tasks including coding, research, and data analysis. The company positioned it as faster and more capable than previous versions, with integration across multiple tools. Users working on technical projects now have access to improved performance for computationally demanding workflows.

How to use ChatGPT Work for everyday tasks

OpenAI Blog 2 months ago

ChatGPT Work enables users to automate routine tasks and generate deliverables by connecting across multiple tools, files, and workflows. The system integrates with external applications to process inputs and produce outputs without manual intervention across platforms. This reduces time spent on repetitive work and allows teams to focus on higher-level activities.

How to Use Transformers.js in a Chrome Extension

Hugging Face Blog 2 months ago

Transformers.js was integrated into a Chrome extension using Manifest V3 by centralizing model inference and agent orchestration in a background service worker while keeping UI and page logic in separate side panel and content script runtimes. The extension loads two models—Gemma-4-E2B for text generation and MiniLM-L6-v2 for embeddings—entirely in the background, with all inference cached under the extension origin rather than per-website. The architecture separates conversation state (background memory), user settings (chrome.storage.local), and retrieval data (IndexedDB), enabling responsive UI, reusable models across tabs, and clear messaging contracts between runtimes.