OpenAI
GPT-5
model
gpt-5MidStableCommunityStreamingToolsBatchLong contextGlobal
Context
400K
Input / 1M tokens
$1.25
Output / 1M tokens
$10.00
About this model
GPT-5
GPT-5 is a mid-tier model available through the Anoman gateway. Detailed performance benchmarks and use-case guidance for this model are coming soon. In the meantime, see the code example below to integrate it into your workflow, and the tier + region information in the hero for pricing and residency.
Code example
Chat completion with GPT-5
from openai import OpenAI
client = OpenAI(
base_url="https://api.anoman.io/v1",
api_key="anm-sk-..."
)
response = client.chat.completions.create(
model="gpt-5",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)