• Blog
  • Docs
  • Careers
  • Get Support
  • Contact Sales
DigitalOcean
  • Featured AI Products

    Compute

    Build, deploy, and scale cloud compute resources

    Containers and Images

    Safely store and manage containers and backups

    Managed Databases

    Fully managed resources running popular database engines

    Management and Dev Tools

    Control infrastructure and gather insights

    Networking

    Secure and control traffic to apps

    Security

    Help protect your account and resources with these security features

    Storage

    Store and access any amount of data reliably in the cloud

    Browse all products

  • AI/ML

    CMS

    Data and IoT

    Developer Tools

    Gaming and Media

    Hosting

    Security and Networking

    Startups and SMBs

    Web and App Platforms

    See all solutions

  • Community

    Documentation

    Developer Tools

    Get Involved

    Utilities and Help

  • Become a Partner

    Marketplace

  • Pricing
  • Log in
  • Sign up
  • Log in
  • Sign up

Company

  • About
  • Leadership
  • Blog
  • Careers
  • Customers
  • Partners
  • Referral Program
  • Affiliate Program
  • Press
  • Legal
  • Privacy Policy
  • Security
  • Investor Relations

Products

  • GPU Droplets
  • Bare Metal GPUs
  • Inference Engine
  • Data & Learning
  • Evaluations
  • Model Library
  • Droplets
  • Kubernetes
  • Functions
  • App Platform
  • Load Balancers
  • Managed Databases
  • Spaces
  • Block Storage
  • Network File Storage
  • API
  • Uptime
  • Cloud Security Posture Management (CSPM)
  • Identity and Access Management (IAM)
  • Cloudways
  • View all Products

Resources

  • Community Tutorials
  • Community Q&A
  • CSS-Tricks
  • Write for DOnations
  • Currents Research
  • DigitalOcean Startups
  • Wavemakers Program
  • Compass Council
  • Open Source
  • Newsletter Signup
  • Marketplace
  • Pricing
  • Pricing Calculator
  • Documentation
  • Release Notes
  • Code of Conduct
  • Shop Swag

Solutions

  • AI Training GPU
  • GPU Inference
  • VPS Hosting
  • Website Hosting
  • VPN
  • Docker Hosting
  • Node.js Hosting
  • Web Mobile Apps
  • WordPress Hosting
  • Virtual Machines
  • View all Solutions

Contact

  • Support
  • Sales
  • Report Abuse
  • System Status
  • Share your ideas

Company

  • About
  • Leadership
  • Blog
  • Careers
  • Customers
  • Partners
  • Referral Program
  • Affiliate Program
  • Press
  • Legal
  • Privacy Policy
  • Security
  • Investor Relations

Products

  • GPU Droplets
  • Bare Metal GPUs
  • Inference Engine
  • Data & Learning
  • Evaluations
  • Model Library
  • Droplets
  • Kubernetes
  • Functions
  • App Platform
  • Load Balancers
  • Managed Databases
  • Spaces
  • Block Storage
  • Network File Storage
  • API
  • Uptime
  • Cloud Security Posture Management (CSPM)
  • Identity and Access Management (IAM)
  • Cloudways
  • View all Products

Resources

  • Community Tutorials
  • Community Q&A
  • CSS-Tricks
  • Write for DOnations
  • Currents Research
  • DigitalOcean Startups
  • Wavemakers Program
  • Compass Council
  • Open Source
  • Newsletter Signup
  • Marketplace
  • Pricing
  • Pricing Calculator
  • Documentation
  • Release Notes
  • Code of Conduct
  • Shop Swag

Solutions

  • AI Training GPU
  • GPU Inference
  • VPS Hosting
  • Website Hosting
  • VPN
  • Docker Hosting
  • Node.js Hosting
  • Web Mobile Apps
  • WordPress Hosting
  • Virtual Machines
  • View all Solutions

Contact

  • Support
  • Sales
  • Report Abuse
  • System Status
  • Share your ideas
© 2026 DigitalOcean, LLC.Sitemap.
Product updates

Announcing OpenAI gpt-oss Models on the DigitalOcean Gradient™ AI Platform

author

By Grace Morgan

  • Updated: August 20, 2025
  • 2 min read
<- Back to blog home

OpenAI’s first open-source GPT models (20b and 120b) are now available on the Gradient AI Platform. This launch brings even more flexibility and choice to developers building AI-powered applications, whether you’re starting with a quick prototype or scaling a production agent.

What’s new

  • Open-source GPT models: Access gpt-oss 20b and 120b directly on the Gradient AI Platform.
  • Code + UI support: Call the models through our Serverless Inference API or select them in the Gradient dashboard when creating agents, or try them out in the model playground.
  • Integrated experience: Unified billing, observability, and traceability built into the platform—no need to stitch together multiple vendors, billing, or monitoring tools.

How to get started

With code: Call the models directly through our Serverless Inference API.

python
import os
import sys
from gradient import Gradient

model_access_key = os.environ.get("GRADIENT_MODEL_ACCESS_KEY")

if not model_access_key:
    sys.stderr.write("Error: GRADIENT_MODEL_ACCESS_KEY environment variable is not set.\n")
    sys.exit(1)

inference_client = Gradient(model_access_key=model_access_key)

inference_response = inference_client.chat.completions.create(
    messages=[
        {
            "role": "user",
            "content": "Write a product description for an eco-friendly water bottle.",
        }
    ],
    model="openai-gpt-oss-20b",
)

print(inference_response.choices[0].message.content)

In the UI: Head to Agent Creation and select gpt-oss 20b or 120b from the model dropdown.

image alt text

What you can build

  • Customer support agents trained with your knowledge base
  • Content generation tools with cost-optimized model choices
  • AI-powered apps that balance performance with affordability

This launch marks another step toward making Gradient AI Platform the simplest, most flexible way to build real, production-ready AI applications.

Deploy now

For code-first developers:

👉 Deploy gpt-oss via API: Spin up the 20b or 120b models directly through the Gradient Serverless Inference API and start building in just a few lines of code.

For UI users:

👉 Build with gpt-oss in console: Create an agent in the Gradient AI Platform, select gpt-oss from the model dropdown, and deploy instantly—no code required.

About the author

Grace Morgan
Grace Morgan
Author
See author profile
See author profile

Share

  • Product Updates

Start building today

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.
Sign up

Related Articles

DigitalOcean Evaluations: Production Model and Router Testing for the Inference Stack
Product updates

DigitalOcean Evaluations: Production Model and Router Testing for the Inference Stack

Grace Morgan
  • July 1, 2026
  • 3 min read

Read more

Run Codex in the cloud – DigitalOcean for Codex is now available
Product updates

Run Codex in the cloud – DigitalOcean for Codex is now available

Ari Sigal
  • June 25, 2026
  • 3 min read

Read more

Server-Side Tools Are Now Available for DigitalOcean Inference Engine
Product updates

Server-Side Tools Are Now Available for DigitalOcean Inference Engine

Grace Morgan
  • June 17, 2026
  • 3 min read

Read more