OpenAI
GPT-4o 64k(alpha test version)
openai/gpt-4o-64k-output-alpha
An experimental version of GPT-4o with a maximum of 64K output tokens per request.
GPT-4o ("o" for "omni") is OpenAI's latest AI model, supporting both text and image inputs with text outputs. It maintains the intelligence level of GPT-4 Turbo while being twice as fast and 50% more cost-effective. GPT-4o also offers improved performance in processing non-English languages and enhanced visual capabilities.
Capability
Vision Support
Tools
Function Calling
Context Window
128,000
Max Output Tokens
64,000
Using GPT-4o 64k(alpha test version) with Python API
Using GPT-4o 64k(alpha test version) with OpenAI compatible API
import openai
client = openai.Client(
api_key= '{your_api_key}',
base_url="https://api.model.box/v1",
)
response = client.chat.completions.create(
model="openai/gpt-4o-64k-output-alpha",
messages: [
{
role: 'user',
content:
'introduce your self',
},
]
)
print(response)