| 输入 | $4/百万 tokens |
| Cached writes(5m) | $4/百万 tokens |
| Cached writes(1h) | $4/百万 tokens |
| Cached reads | $4/百万 tokens |
| 输出 | $2345/百万 tokens |
| 每次请求输入长度 | 输入 | Cached writes(5m) | Cached writes(1h) | Cached reads | 输出价格 |
|---|---|---|---|---|---|
| 0 < tokens <= 24,800,000 | $10000 | $10002 | $10003 | $10001 | $10007 |
使用以下代码示例来集成我们的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="gemini-3.1-flash-lite-preview",
10 messages=[
11 {"role": "system", "content": "You are a helpful assistant."},
12 {"role": "user", "content": "Hello, how are you?"}
13 ],
14 max_tokens=100000,
15 temperature=0.7
16)
17
18print(response.choices[0].message.content)