# gpt-oss

OpenAI open-weight reasoning language models for local and infrastructure deployment.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## The full stack behind abundant intelligence

DevFeed: [The full stack behind abundant intelligence](<https://devfeed.tech/articles/the-full-stack-behind-abundant-intelligence-6684.md>)

Original publisher: [Read original article](<https://openai.com/index/the-full-stack-behind-abundant-intelligence>)

Published: 2026-08-25T07:05:00Z

Content type: article

Language: en

Sources: [OpenAI News](<https://devfeed.tech/sources/openai-news.md>)

Topics: [OpenAI](<https://devfeed.tech/topics/openai.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Hardware](<https://devfeed.tech/topics/hardware.md>), [Low-Latency Inference](<https://devfeed.tech/topics/low-latency-inference.md>), [Inference Performance](<https://devfeed.tech/topics/inference-performance.md>), [model-deployment](<https://devfeed.tech/topics/model-deployment.md>), [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [Benchmark](<https://devfeed.tech/topics/benchmark.md>), [cloud-infrastructure](<https://devfeed.tech/topics/cloud-infrastructure.md>), [systems](<https://devfeed.tech/topics/systems.md>), [Amazon Web Services](<https://devfeed.tech/topics/aws.md>), [Microsoft](<https://devfeed.tech/topics/microsoft.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [aws](<https://devfeed.tech/tags/aws.md>), [benchmark](<https://devfeed.tech/tags/benchmark.md>), [company](<https://devfeed.tech/tags/company.md>), [compute](<https://devfeed.tech/tags/compute.md>), [cost](<https://devfeed.tech/tags/cost.md>), [efficiency](<https://devfeed.tech/tags/efficiency.md>), [energy-efficiency](<https://devfeed.tech/tags/energy-efficiency.md>), [hardware](<https://devfeed.tech/tags/hardware.md>), [inference](<https://devfeed.tech/tags/inference.md>), [low-latency-inference](<https://devfeed.tech/tags/low-latency-inference.md>), [microsoft](<https://devfeed.tech/tags/microsoft.md>), [models](<https://devfeed.tech/tags/models.md>), [nvidia](<https://devfeed.tech/tags/nvidia.md>), [openai](<https://devfeed.tech/tags/openai.md>)

### AI overview

OpenAI describes an integrated compute strategy spanning data centers, chips, models, software, products, and devices. It reports that its custom Jalapeño inference chip achieved higher peak throughput per kilowatt and lower token latency than commercial systems on the InferenceX benchmark using GPT-OSS 120B, while also performing strongly on DeepSeek R1 and Kimi K2.

### Source excerpt

OpenAI CFO Sarah Friar explains how advances across chips, compute, models, and products compound to deliver more useful intelligence at greater scale and lower cost.

## How Reasoning Traces Work in Language Models

DevFeed: [How Reasoning Traces Work in Language Models](<https://devfeed.tech/articles/what-is-reasoning-30732.md>)

Original publisher: [Read original article](<https://lucumr.pocoo.org/2026/8/19/what-is-reasoning/>)

Author: Armin Ronacher

Published: 2026-08-19T00:00:00Z

Content type: article

Language: en

Sources: [Armin Ronacher](<https://devfeed.tech/sources/armin-ronacher.md>)

Topics: [Chain-of-thought](<https://devfeed.tech/topics/chain-of-thought.md>), [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [Parser](<https://devfeed.tech/topics/parser.md>), [API](<https://devfeed.tech/topics/api.md>), [Cache](<https://devfeed.tech/topics/cache.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [api](<https://devfeed.tech/tags/api.md>), [chain-of-thought](<https://devfeed.tech/tags/chain-of-thought.md>), [gpt-oss](<https://devfeed.tech/tags/gpt-oss.md>), [reasoning](<https://devfeed.tech/tags/reasoning.md>), [token](<https://devfeed.tech/tags/token.md>)

### AI overview

The article explains reasoning traces as text emitted by a model into a scratchpad before its final answer. It discusses how GPT-OSS uses channel markers and a parser to route analysis into a separate stream, and argues that reasoning effort is shaped by system prompts and training rather than being solely a sampling-process property.

### Source excerpt

A few weeks ago a paper was shared that showed how to extract reasoning traces from closed-weight models. Together with online discussions about tricking models into leaking them, it made me investigate it more out of curiosity. Twitter seems full of half-truths and confusion about how this works, so perhaps this helps some to understand what is happening. Hiding Traces Reasoning traces are usually hidden from us. We have lamented this, but mostly have to accept it. Open-weight models thankfully reveal them, and from their behavior you can see that their traces can be long and confusing. This is probably a good reason to separate them from what is normally shown to users. At minimum, UIs need to detect them. The industry has done a good job at making reasoning traces sound special and exotic, but they really are just text: the model is trained to emit its thinking into a scratchpad as part of its response, before its final answer. GPT-OSS's Harmony response format makes this easy to see: <|channel|>analysis<|message|> I need to work this out ... <|end|><|start|>assistant<|channel|>final<|message|> The answer is ... <|return|> The markers are special tokens, but the reasoning between them uses "the same text" as the final answer (just that GPT chain-of-thought text sounds really funny). When the model samples the analysis channel token, a parser routes the following text into a separate stream exposed through the Responses API. For closed models, presumably a simple model redacts and summarizes it. Reasoning Effort How much budget goes to reasoning? Earlier APIs exposed reasoning token budgets, making it seem like a property of the sampling process. In reality, reasoning effort is baked into the system prompt. GPT-OSS puts this into the system prompt: Reasoning: low That's it. Training produces the resulting behavior, such as emitting the token sequence that switches to the analysis channel. This also explains why changing the effort invalidates the KV cache. I think

## System Over Model, Tested: Reproducing Mythos's FreeBSD Find on Local Open-Weight Models

DevFeed: [System Over Model, Tested: Reproducing Mythos's FreeBSD Find on Local Open-Weight Models](<https://devfeed.tech/articles/system-over-model-tested-reproducing-mythos-s-freebsd-find-on-local-open-weight-models-39721.md>)

Original publisher: [Read original article](<https://clearbluejar.github.io/posts/system-over-model-tested-mythos-freebsd-local-openweight/>)

Author: clearbluejar

Published: 2026-06-04T07:00:00Z

Content type: article

Language: en

Sources: [clearbluejar](<https://devfeed.tech/sources/clearbluejar.md>)

Topics: [freebsd](<https://devfeed.tech/topics/freebsd.md>), [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [gemma4](<https://devfeed.tech/topics/gemma4.md>), [bug](<https://devfeed.tech/topics/bug.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Benchmark](<https://devfeed.tech/topics/benchmark.md>), [Python](<https://devfeed.tech/topics/python.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [benchmark](<https://devfeed.tech/tags/benchmark.md>), [cve](<https://devfeed.tech/tags/cve.md>), [false-positives](<https://devfeed.tech/tags/false-positives.md>), [freebsd](<https://devfeed.tech/tags/freebsd.md>), [gemma-4](<https://devfeed.tech/tags/gemma-4.md>), [gpt-oss](<https://devfeed.tech/tags/gpt-oss.md>), [llm](<https://devfeed.tech/tags/llm.md>), [llms](<https://devfeed.tech/tags/llms.md>), [python](<https://devfeed.tech/tags/python.md>), [rce](<https://devfeed.tech/tags/rce.md>), [vulnerability-research](<https://devfeed.tech/tags/vulnerability-research.md>)

### AI overview

This article tests AISLE's vulnerability-finding pipeline on the local open-weight models gpt-oss-20b and gemma-4-31b-it using a FreeBSD RCE as the benchmark. The models initially appeared to miss the bug, but a rerun recovered it. The author reports that adding a reachability stage reduced false positives from 30 to 5 while retaining the CVE finding.

### Source excerpt

Mythos found a 17-year-old FreeBSD RCE; AISLE reproduced it with gpt-5.4-nano via their nano-analyzer pipeline. I ran the pipeline on two local open-weight models, gpt-oss-20b and gemma-4-31b-it. The misses recovered on re-run. The real problem was the false-positive rate, and one extra system stage cut it from 30 to 5 with the CVE still standing.

## Sort providers by cost, latency, or throughput on AI Gateway

DevFeed: [Sort providers by cost, latency, or throughput on AI Gateway](<https://devfeed.tech/articles/sort-providers-by-cost-latency-or-throughput-on-ai-gateway-1101.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/sort-providers-by-cost-latency-or-throughput-on-ai-gateway>)

Author: Jerilyn Zheng

Published: 2026-05-15T00:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [Inference Performance](<https://devfeed.tech/topics/inference-performance.md>), [Routing (disambiguation)](<https://devfeed.tech/topics/routing.md>), [Latency](<https://devfeed.tech/topics/latency.md>), [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [deepseek](<https://devfeed.tech/topics/deepseek.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [ai-gateway](<https://devfeed.tech/tags/ai-gateway.md>), [deepseek](<https://devfeed.tech/tags/deepseek.md>), [generation](<https://devfeed.tech/tags/generation.md>), [gpt-oss](<https://devfeed.tech/tags/gpt-oss.md>), [latency](<https://devfeed.tech/tags/latency.md>), [model](<https://devfeed.tech/tags/model.md>), [models](<https://devfeed.tech/tags/models.md>), [routing](<https://devfeed.tech/tags/routing.md>), [speed](<https://devfeed.tech/tags/speed.md>), [tokens](<https://devfeed.tech/tags/tokens.md>)

### AI overview

AI Gateway now supports sorting model providers by cost, time to first token, or tokens-per-second throughput. Ranking is calculated at request time, works with filtering and provider-order controls, and exposes routing decisions in response metadata.

### Source excerpt

You can now sort the providers behind a model by cost, time to first token (TTFT), or throughput (TPS) in AI Gateway. The default provider order blends provider reliability, quality of model output, cost, and speed of response. You can now use sort for explicit control over ranking criteria. For models with many providers and noticeable cost or speed variation, you can use sort to optimize on your dimension of choice. Ranking is computed at request time, so newly added providers, price changes, and shifts in observed latency or throughput flow through automatically without any code changes. Set sort on providerOptions.gateway to one of the three values: Value Description Direction When to use 'cost' Sort by the provider's listed input price per million tokens Lowest price first High-volume, cost-sensitive work 'ttft' Sort by median time to first token, in ms Lowest latency first Latency-sensitive workloads where response speed matters 'tps' Sort by median tokens per second throughput Highest first Long-output generation where total response time matters most Basic usage Use sort to ensure optimizing for your metric of choice. In this example, AI Gateway has over five providers for GPT OSS 120B with different prices, so sorting by cost is a useful option for requests that want to route through the lowest price provider. Providers are tried in sort order. Fallback to the next provider only happens when the higher-ranked one is unavailable. Combine with other routing controls sort is compatible with other gateway routing options like Zero Data Retention (ZDR). The example below uses deepseek/deepseek-v4-pro for an interactive request where latency and data retention matter: AI Gateway filters to only providers for Deepseek V4 Pro that have zero data retention, and then sorts the remaining providers by time to first token (TTFT). sort also composes with order: providers listed in order are promoted to the front, and the remaining providers follow the requested sort crit

## Helping developers build safer AI experiences for teens

DevFeed: [Helping developers build safer AI experiences for teens](<https://devfeed.tech/articles/helping-developers-build-safer-ai-experiences-for-teens-6678.md>)

Original publisher: [Read original article](<https://openai.com/index/teen-safety-policies-gpt-oss-safeguard>)

Published: 2026-03-24T11:00:00Z

Content type: article

Language: en

Sources: [OpenAI News](<https://devfeed.tech/sources/openai-news.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [AI Strategy](<https://devfeed.tech/topics/ai-strategy.md>), [OpenAI](<https://devfeed.tech/topics/openai.md>), [releases](<https://devfeed.tech/topics/releases.md>), [model-deployment](<https://devfeed.tech/topics/model-deployment.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [building](<https://devfeed.tech/tags/building.md>), [developers](<https://devfeed.tech/tags/developers.md>), [ecosystem](<https://devfeed.tech/tags/ecosystem.md>), [gpt-oss](<https://devfeed.tech/tags/gpt-oss.md>), [model](<https://devfeed.tech/tags/model.md>), [models](<https://devfeed.tech/tags/models.md>), [open](<https://devfeed.tech/tags/open.md>), [openai](<https://devfeed.tech/tags/openai.md>), [releases](<https://devfeed.tech/tags/releases.md>), [safety](<https://devfeed.tech/tags/safety.md>), [support](<https://devfeed.tech/tags/support.md>), [tools](<https://devfeed.tech/tags/tools.md>), [work](<https://devfeed.tech/tags/work.md>)

### AI overview

OpenAI is releasing prompt-based teen safety policies for developers using the open-weight gpt-oss-safeguard model. The policies help translate teen-specific safety requirements into operational classifiers and support safer, more consistent deployment of AI systems.

### Source excerpt

OpenAI releases prompt-based teen safety policies for developers using gpt-oss-safeguard, helping moderate age-specific risks in AI systems.

## Unlocking Agentic RL Training for GPT-OSS: A Practical Retrospective

DevFeed: [Unlocking Agentic RL Training for GPT-OSS: A Practical Retrospective](<https://devfeed.tech/articles/unlocking-agentic-rl-training-for-gpt-oss-a-practical-retrospective-7015.md>)

Original publisher: [Read original article](<https://huggingface.co/blog/LinkedIn/gpt-oss-agentic-rl>)

Author: Jason Zhu; Hejian Sang; Arup De; Rohit Jain; Yanning Chen

Published: 2026-01-27T01:53:15Z

Content type: article

Language: en

Sources: [Hugging Face - Blog](<https://devfeed.tech/sources/hugging-face-blog.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [Reinforcement learning](<https://devfeed.tech/topics/reinforcement-learning.md>), [agentic-coding](<https://devfeed.tech/topics/agentic-coding.md>), [Retool](<https://devfeed.tech/topics/retool.md>), [Frameworks](<https://devfeed.tech/topics/frameworks.md>), [qwen](<https://devfeed.tech/topics/qwen.md>), [coding](<https://devfeed.tech/topics/coding.md>), [hugging face](<https://devfeed.tech/topics/hugging-face.md>)

Tags: [agentic](<https://devfeed.tech/tags/agentic.md>), [agentic-coding](<https://devfeed.tech/tags/agentic-coding.md>), [agents](<https://devfeed.tech/tags/agents.md>), [ai](<https://devfeed.tech/tags/ai.md>), [applications](<https://devfeed.tech/tags/applications.md>), [blog](<https://devfeed.tech/tags/blog.md>), [code](<https://devfeed.tech/tags/code.md>), [coding](<https://devfeed.tech/tags/coding.md>), [company](<https://devfeed.tech/tags/company.md>), [fine-tuning](<https://devfeed.tech/tags/fine-tuning.md>), [gpt-oss](<https://devfeed.tech/tags/gpt-oss.md>), [hugging-face](<https://devfeed.tech/tags/hugging-face.md>), [linkedin](<https://devfeed.tech/tags/linkedin.md>), [models](<https://devfeed.tech/tags/models.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [qwen](<https://devfeed.tech/tags/qwen.md>), [reasoning](<https://devfeed.tech/tags/reasoning.md>), [reinforcement-learning](<https://devfeed.tech/tags/reinforcement-learning.md>), [rl](<https://devfeed.tech/tags/rl.md>), [training](<https://devfeed.tech/tags/training.md>)

### AI overview

LinkedIn's retrospective describes experiments to train GPT-OSS models for agentic reinforcement learning. It covers tool interaction, Harmony chat-template support, rollout and tool parsing, ReTool coding tasks, attention-sink fixes, and benchmark results using GPT-OSS-20B, GPT-OSS-120B, and Qwen-2.5-32B.

### Source excerpt

LinkedIn is an AI-first company that's built agents to help professionals be more successful. In this setting, models must reason over incomplete information, interact with structured services, and adapt to evolving user intent across multiple steps rather than produce a single static response.

## gpt-oss-safeguard technical report

DevFeed: [gpt-oss-safeguard technical report](<https://devfeed.tech/articles/gpt-oss-safeguard-technical-report-6441.md>)

Original publisher: [Read original article](<https://openai.com/index/gpt-oss-safeguard-technical-report>)

Published: 2025-10-29T00:00:00Z

Content type: article

Language: en

Sources: [OpenAI News](<https://devfeed.tech/sources/openai-news.md>)

Topics: [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [Chain-of-thought](<https://devfeed.tech/topics/chain-of-thought.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [API](<https://devfeed.tech/topics/api.md>)

Tags: [api](<https://devfeed.tech/tags/api.md>), [chain-of-thought](<https://devfeed.tech/tags/chain-of-thought.md>), [gpt-oss](<https://devfeed.tech/tags/gpt-oss.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [oss](<https://devfeed.tech/tags/oss.md>), [reasoning](<https://devfeed.tech/tags/reasoning.md>), [report](<https://devfeed.tech/tags/report.md>), [safety](<https://devfeed.tech/tags/safety.md>), [technical](<https://devfeed.tech/tags/technical.md>)

### AI overview

This technical report introduces gpt-oss-safeguard-120b and gpt-oss-safeguard-20b, open-weight reasoning models fine-tuned from gpt-oss to classify content according to a supplied policy. It describes their capabilities, customization, chain-of-thought support, Responses API compatibility, and baseline safety evaluations.

### Source excerpt

gpt-oss-safeguard-120b and gpt-oss-safeguard-20b are two open-weight reasoning models post-trained from the gpt-oss models and trained to reason from a provided policy in order to label content under that policy. In this report, we describe gpt-oss-safeguard's capabilities and provide our baseline safety evaluations on the gpt-oss-safeguard models, using the underlying gpt-oss models as a baseline. For more information about the development and architecture of the underlying gpt-oss models, see the original gpt-oss model model card⁠.

## Introducing gpt-oss-safeguard

DevFeed: [Introducing gpt-oss-safeguard](<https://devfeed.tech/articles/introducing-gpt-oss-safeguard-6497.md>)

Original publisher: [Read original article](<https://openai.com/index/introducing-gpt-oss-safeguard>)

Published: 2025-10-29T00:00:00Z

Content type: release

Language: en

Sources: [OpenAI News](<https://devfeed.tech/sources/openai-news.md>)

Topics: [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [OpenAI](<https://devfeed.tech/topics/openai.md>), [Chain-of-thought](<https://devfeed.tech/topics/chain-of-thought.md>), [Inference](<https://devfeed.tech/topics/inference.md>), [hugging face](<https://devfeed.tech/topics/hugging-face.md>), [model-deployment](<https://devfeed.tech/topics/model-deployment.md>)

Tags: [chain-of-thought](<https://devfeed.tech/tags/chain-of-thought.md>), [developers](<https://devfeed.tech/tags/developers.md>), [gpt-oss](<https://devfeed.tech/tags/gpt-oss.md>), [hugging-face](<https://devfeed.tech/tags/hugging-face.md>), [inference](<https://devfeed.tech/tags/inference.md>), [models](<https://devfeed.tech/tags/models.md>), [open](<https://devfeed.tech/tags/open.md>), [openai](<https://devfeed.tech/tags/openai.md>), [oss](<https://devfeed.tech/tags/oss.md>), [product](<https://devfeed.tech/tags/product.md>), [reasoning](<https://devfeed.tech/tags/reasoning.md>), [research](<https://devfeed.tech/tags/research.md>), [safety](<https://devfeed.tech/tags/safety.md>)

### AI overview

OpenAI introduces gpt-oss-safeguard, a research preview of open-weight reasoning models for safety classification. The models let developers provide and revise their own policies at inference time, classify messages and conversations, and review the model's reasoning. They are available in 120b and 20b sizes under the Apache 2.0 license and can be downloaded from Hugging Face.

### Source excerpt

OpenAI introduces gpt-oss-safeguard--open-weight reasoning models for safety classification that let developers apply and iterate on custom policies.

## Nemotron-Personas-Japan: ソブリン AI のための合成データセット

DevFeed: [Nemotron-Personas-Japan: ソブリン AI のための合成データセット](<https://devfeed.tech/articles/nemotron-personas-japan-ai-7398.md>)

Original publisher: [Read original article](<https://huggingface.co/blog/nvidia/nemotron-personas-japan-ja>)

Author: Atsunori Fujita; Masaya Ogushi; Vincent Gong; Kotaro Yamamoto; Yoshi Suhara; Dane Corneil; Yev Meyer

Published: 2025-09-26T06:25:50Z

Content type: article

Language: ja

Sources: [Hugging Face - Blog](<https://devfeed.tech/sources/hugging-face-blog.md>)

Topics: [datasets](<https://devfeed.tech/topics/datasets.md>), [Nemotron](<https://devfeed.tech/topics/nemotron.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [data](<https://devfeed.tech/topics/data.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [NeMo](<https://devfeed.tech/topics/nemo.md>), [Nvidia](<https://devfeed.tech/topics/nvidia.md>), [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [pii](<https://devfeed.tech/topics/pii.md>), [Pydantic](<https://devfeed.tech/topics/pydantic.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [apache](<https://devfeed.tech/tags/apache.md>), [data](<https://devfeed.tech/tags/data.md>), [gpt-oss](<https://devfeed.tech/tags/gpt-oss.md>), [japan](<https://devfeed.tech/tags/japan.md>), [llm](<https://devfeed.tech/tags/llm.md>), [nemo](<https://devfeed.tech/tags/nemo.md>), [nemotron](<https://devfeed.tech/tags/nemotron.md>), [nvidia](<https://devfeed.tech/tags/nvidia.md>), [oss](<https://devfeed.tech/tags/oss.md>), [pii](<https://devfeed.tech/tags/pii.md>)

### AI overview

NVIDIA has released Nemotron-Personas-Japan, an open synthetic dataset of Japanese personas designed to support culturally grounded and privacy-preserving AI development. Built with NeMo Data Designer, it contains six million Japanese-language personas aligned with Japanese demographic, geographic, cultural, and labor statistics, without including personally identifiable information.

### Source excerpt

高品質で多様なトレーニングデータなしに、日本文化を真に理解するAIを構築することはこれまでほぼ不可能でした。これを変えるため、NVIDIAは、日本の人口統計、地理的分布、文化的特性に沿ったペルソナを含む初のオープン合成データセット、Nemotron-Personas-Japan を公開しました。CC BY 4.0 ライセンスのもと提供される本データセットは、機微な個人データに依存することなく日本社会を反映した AI システム構築のための、プライバシー保護と規制対応を両立した基盤を提供します。 NVIDIA のエンタープライズ向け合成データ生成システム、NeMo Data Designer を用いて作成されたNemotron-Personas-Japan は、すでに広く利用されている US Personas データセットの成功を機に日本版として開発されました。本リリースは、各国・地域におけるソブリン AI 開発を支援する合成ペルソナデータセットとデータ構築方法のグローバルコレクションの第一弾です。

## Scaleway on Hugging Face Inference Providers 🔥

DevFeed: [Scaleway on Hugging Face Inference Providers 🔥](<https://devfeed.tech/articles/scaleway-on-hugging-face-inference-providers-7284.md>)

Original publisher: [Read original article](<https://huggingface.co/blog/inference-providers-scaleway>)

Author: Guillaume Noale; Franck Pagny; Fred Bardolle; Guillaume Calmettes; Constance Morales; Célina Hanouti; Julien Chaumond; Simon Brandeis; Lucain Pouget

Published: 2025-09-19T00:00:00Z

Content type: article

Language: en

Sources: [Hugging Face - Blog](<https://devfeed.tech/sources/hugging-face-blog.md>)

Topics: [hugging face](<https://devfeed.tech/topics/hugging-face.md>), [scaleway](<https://devfeed.tech/topics/scaleway.md>), [Inference](<https://devfeed.tech/topics/inference.md>), [inference-providers](<https://devfeed.tech/topics/inference-providers.md>), [Serverless](<https://devfeed.tech/topics/serverless.md>), [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [SDKs](<https://devfeed.tech/topics/sdks.md>), [API keys](<https://devfeed.tech/topics/api-keys.md>), [Latency](<https://devfeed.tech/topics/latency.md>), [Sovereign AI](<https://devfeed.tech/topics/sovereign-ai.md>)

Tags: [api-keys](<https://devfeed.tech/tags/api-keys.md>), [enterprise](<https://devfeed.tech/tags/enterprise.md>), [function-calling](<https://devfeed.tech/tags/function-calling.md>), [gemma](<https://devfeed.tech/tags/gemma.md>), [gpt-oss](<https://devfeed.tech/tags/gpt-oss.md>), [hub](<https://devfeed.tech/tags/hub.md>), [hugging-face](<https://devfeed.tech/tags/hugging-face.md>), [inference](<https://devfeed.tech/tags/inference.md>), [inference-providers](<https://devfeed.tech/tags/inference-providers.md>), [llms](<https://devfeed.tech/tags/llms.md>), [low-latency](<https://devfeed.tech/tags/low-latency.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [open](<https://devfeed.tech/tags/open.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [partnerships](<https://devfeed.tech/tags/partnerships.md>), [providers](<https://devfeed.tech/tags/providers.md>), [qwen3](<https://devfeed.tech/tags/qwen3.md>), [scaleway](<https://devfeed.tech/tags/scaleway.md>), [sdks](<https://devfeed.tech/tags/sdks.md>), [serverless](<https://devfeed.tech/tags/serverless.md>), [text-generation](<https://devfeed.tech/tags/text-generation.md>)

### AI overview

Hugging Face announces Scaleway as a supported Inference Provider on the Hugging Face Hub. The integration provides serverless access to open-weight and frontier AI models through model pages, client SDKs, and APIs, with European data centers, pay-per-token pricing, low latency, and production-oriented features.

### Source excerpt

We're on a journey to advance and democratize artificial intelligence through open source and open science.

## Tricks from OpenAI gpt-oss YOU 🫵 can use with transformers

DevFeed: [Tricks from OpenAI gpt-oss YOU 🫵 can use with transformers](<https://devfeed.tech/articles/tricks-from-openai-gpt-oss-you-can-use-with-transformers-7193.md>)

Original publisher: [Read original article](<https://huggingface.co/blog/faster-transformers>)

Author: Aritra Roy Gosthipaty; Sergio Paniego; Vaibhav Srivastav; Pedro Cuenca; Arthur Zucker; Nathan Habib; Cyril Vallez

Published: 2025-09-11T00:00:00Z

Content type: article

Language: en

Sources: [Hugging Face - Blog](<https://devfeed.tech/sources/hugging-face-blog.md>)

Topics: [Transformers](<https://devfeed.tech/topics/transformers.md>), [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [Mixture of Experts (MoE)](<https://devfeed.tech/topics/mixture-of-experts-moe.md>), [CUDA](<https://devfeed.tech/topics/cuda.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [OpenAI](<https://devfeed.tech/topics/openai.md>), [PyTorch](<https://devfeed.tech/topics/pytorch.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [C++](<https://devfeed.tech/topics/c-plus-plus.md>), [Python](<https://devfeed.tech/topics/python.md>)

Tags: [c-plus-plus](<https://devfeed.tech/tags/c-plus-plus.md>), [cuda](<https://devfeed.tech/tags/cuda.md>), [gpt-oss](<https://devfeed.tech/tags/gpt-oss.md>), [guide](<https://devfeed.tech/tags/guide.md>), [llms](<https://devfeed.tech/tags/llms.md>), [mixture-of-experts-moe](<https://devfeed.tech/tags/mixture-of-experts-moe.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [openai](<https://devfeed.tech/tags/openai.md>), [optimization](<https://devfeed.tech/tags/optimization.md>), [python](<https://devfeed.tech/tags/python.md>), [pytorch](<https://devfeed.tech/tags/pytorch.md>), [transformers](<https://devfeed.tech/tags/transformers.md>)

### AI overview

This article explains performance improvements in the Transformers toolkit, including specialized kernels, kernel fusion, Flash Attention, and pre-built kernel binaries. It highlights how GPT-OSS, a Mixture of Experts model, uses custom kernels distributed through the Hub.

### Source excerpt

We're on a journey to advance and democratize artificial intelligence through open source and open science.

## Heroku AI Expands Model Offering with OpenAI's gpt-oss-120b

DevFeed: [Heroku AI Expands Model Offering with OpenAI's gpt-oss-120b](<https://devfeed.tech/articles/heroku-ai-expands-model-offering-with-openai-s-gpt-oss-120b-26415.md>)

Original publisher: [Read original article](<https://www.heroku.com/blog/heroku-ai-openai-gpt-oss-120b-model-now-available/>)

Author: Anush DSouza

Published: 2025-08-20T15:00:14Z

Content type: release

Language: en

Sources: [Heroku](<https://devfeed.tech/sources/heroku.md>)

Topics: [Heroku AI](<https://devfeed.tech/topics/heroku-ai.md>), [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [OpenAI](<https://devfeed.tech/topics/openai.md>), [Heroku](<https://devfeed.tech/topics/heroku.md>), [API](<https://devfeed.tech/topics/api.md>), [Mixture of Experts (MoE)](<https://devfeed.tech/topics/mixture-of-experts-moe.md>), [SDKs](<https://devfeed.tech/topics/sdks.md>), [Open Source Models & Datasets](<https://devfeed.tech/topics/open-source-models-datasets.md>)

Tags: [agents](<https://devfeed.tech/tags/agents.md>), [ai](<https://devfeed.tech/tags/ai.md>), [ai-infrastructure](<https://devfeed.tech/tags/ai-infrastructure.md>), [ai-machine-learning](<https://devfeed.tech/tags/ai-machine-learning.md>), [api](<https://devfeed.tech/tags/api.md>), [deploy](<https://devfeed.tech/tags/deploy.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [function-calling](<https://devfeed.tech/tags/function-calling.md>), [gpt-oss](<https://devfeed.tech/tags/gpt-oss.md>), [heroku](<https://devfeed.tech/tags/heroku.md>), [heroku-ai](<https://devfeed.tech/tags/heroku-ai.md>), [managed-inference-and-agents](<https://devfeed.tech/tags/managed-inference-and-agents.md>), [mixture-of-experts-moe](<https://devfeed.tech/tags/mixture-of-experts-moe.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [openai](<https://devfeed.tech/tags/openai.md>), [python](<https://devfeed.tech/tags/python.md>), [sdk](<https://devfeed.tech/tags/sdk.md>)

### AI overview

Heroku announces that OpenAI's open-weight gpt-oss-120b model is available through Heroku Managed Inference and Agents. Developers can access it through an OpenAI-compatible chat completions API and use it to build and deploy AI applications and agentic workflows.

### Source excerpt

Start building with OpenAI's new open-weight model, gpt-oss-120b, now available on Heroku Managed Inference and Agents. This gives developers a powerful, transparent, and flexible way to build and deploy AI applications on the platform they already trust. Access gpt-oss-120b with our OpenAI-compatible chat completions API, which you can drop into any OpenAI-compatible SDK or framework. [...] The post Heroku AI Expands Model Offering with OpenAI's gpt-oss-120b appeared first on Heroku.

## Welcome GPT OSS, the new open-source model family from OpenAI!

DevFeed: [Welcome GPT OSS, the new open-source model family from OpenAI!](<https://devfeed.tech/articles/welcome-gpt-oss-the-new-open-source-model-family-from-openai-7567.md>)

Original publisher: [Read original article](<https://huggingface.co/blog/welcome-openai-gpt-oss>)

Author: Vaibhav Srivastav; Pedro Cuenca; Lewis Tunstall; Clem 🤗; Matthew Carrigan; Clémentine Fourrier; Célina Hanouti; Lucain Pouget; Marc Sun; Simon Pagezy

Published: 2025-08-05T00:00:00Z

Content type: release

Language: en

Sources: [Hugging Face - Blog](<https://devfeed.tech/sources/hugging-face-blog.md>)

Topics: [gpt-oss](<https://devfeed.tech/topics/gpt-oss.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [OpenAI](<https://devfeed.tech/topics/openai.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [inference-providers](<https://devfeed.tech/topics/inference-providers.md>), [llama.cpp](<https://devfeed.tech/topics/llama-cpp.md>), [moe](<https://devfeed.tech/topics/moe.md>), [Ollama](<https://devfeed.tech/topics/ollama.md>), [Python](<https://devfeed.tech/topics/python.md>), [quantization](<https://devfeed.tech/topics/quantization.md>), [Transformers](<https://devfeed.tech/topics/transformers.md>), [vllm](<https://devfeed.tech/topics/vllm.md>)

Tags: [api](<https://devfeed.tech/tags/api.md>), [artificial-intelligence](<https://devfeed.tech/tags/artificial-intelligence.md>), [community](<https://devfeed.tech/tags/community.md>), [gpt](<https://devfeed.tech/tags/gpt.md>), [gpt-oss](<https://devfeed.tech/tags/gpt-oss.md>), [inference-providers](<https://devfeed.tech/tags/inference-providers.md>), [javascript](<https://devfeed.tech/tags/javascript.md>), [llama-cpp](<https://devfeed.tech/tags/llama-cpp.md>), [llm](<https://devfeed.tech/tags/llm.md>), [moe](<https://devfeed.tech/tags/moe.md>), [ollama](<https://devfeed.tech/tags/ollama.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [openai](<https://devfeed.tech/tags/openai.md>), [python](<https://devfeed.tech/tags/python.md>), [quantization](<https://devfeed.tech/tags/quantization.md>), [transformers](<https://devfeed.tech/tags/transformers.md>), [vllm](<https://devfeed.tech/tags/vllm.md>)

### AI overview

Hugging Face welcomes OpenAI's gpt-oss open-source model family. The article describes the models' Apache 2.0 licensing, local deployment options, reasoning and tool-use capabilities, MoE architecture, quantization, supported inference implementations, and access through Inference Providers and the Responses API.

### Source excerpt

We're on a journey to advance and democratize artificial intelligence through open source and open science.