Home/gpt-5-pro
OpenAI

gpt-5-pro

gpt-5-pro
Price
Input$14.25/百万 tokens$15/百万 tokens
Output$114/百万 tokens$120/百万 tokens

Use the following code example to integrate our API:

1from openai import OpenAI
2
3client = OpenAI(
4    api_key="<Your API Key>",
5    base_url="https://api.highwayapi.ai/openai"
6)
7
8response = client.chat.completions.create(
9    model="gpt-5-pro",
10    messages=[
11        {"role": "system", "content": "You are a helpful assistant."},
12        {"role": "user", "content": "Hello, how are you?"}
13    ],
14    max_tokens=272000,
15    temperature=0.7
16)
17
18print(response.choices[0].message.content)

Information

Provider
Quantization
-

Supported Features

Context Length
400000
Maximum Output
272000
函数调用
Supported
结构化输出
Supported
推理
Supported
serverless
Supported
Input Capabilities
text, image
Output Capabilities
text
Contact Us