AWS Bedrock
Nova Pro
AWS's high-performance multimodal model supporting text and image understanding
Context Length300K tokens
Model TypeMultimodal Large Language Model
MultimodalSupports text and images
ๅฎไปทไธ่งๆ ผ
๐ฐ ๅฎไปท
่พๅ
ฅ$0.8 / M tokens
่พๅบ$3.2 / M tokens
โ๏ธ ่งๆ ผ
Context Length300K tokens
Model TypeMultimodal Large Language Model
MultimodalSupports text and images
Special CapabilitiesEnterprise-grade Multimodal Understanding
API ่ฐ็จ็คบไพ
Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.xairouter.com/v1",
api_key="your-api-key"
)
response = client.chat.completions.create(
model="nova-pro",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)cURL
curl https://api.xairouter.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "nova-pro",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'