Now Live: GPT-5 on the DigitalOcean Gradient™ AI Platform
Link⚡ TL;DR
📝 Summary
Now Live: GPT-5 on the DigitalOcean Gradient⢠AI Platform Get started now Why GPT-5? Whatâs New Deploy today About the author(s) Try DigitalOcean for free Related Articles Announcing OpenAI gpt-oss Models on the DigitalOcean Gradient⢠AI Platform Build smarter AI agents: new tools now available for the DigitalOcean Gradient⢠AI Platform Introducing GPU Droplets accelerated by NVIDIA HGX H200 By Grace Morgan , Yogesh Sharma , and Amit Jotwani Updated: August 11, 2025 2 min read Weâre excited to announce that GPT-5 is now available on the DigitalOcean Gradient⢠AI Platform. With this update, developers can start using GPT-5 immediately via serverless inference APIs or the Gradient AI Platform SDK. Alternatively, you can bring your own OpenAI API key to integrate the new model into your Gradient AI Platform agent workflow. Curl command curl https://inference. do-ai. run/v1/chat/completions \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d ' { "model": "openai-gpt-5", "messages": [ { "role": "user", "content": "Explain quantum computing in simple terms" } ], "temperature": 0.7, "max_tokens": 1000 } ' curl https://inference. do-ai. run/v1/chat/completions \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d ' { "model": "openai-gpt-5", "messages": [ { "role": "user", "content": "Explain quantum computing in simple terms" } ], "temperature": 0.7, "max_tokens": 1000 } ' Gradient AI Platform SDK from gradient import Gradient inference_key = "YOUR_GRADIENT_INFERENCE_KEY" inference_client = Gradient( inference_key=inference_key, ) inference_response = inference_client. chat. completions. create( messages=[ { "role": "user", "content": "What is the capital of France?", } ], model="openai-gpt-5", ) print(inference_response. choices[0].
Open the original post ↗ https://www.digitalocean.com/blog/gpt-5-now-on-digitalocean-gradient-ai-platform