Pricing
- Input Tokens: $0.36 /M tokens
- Output Tokens: $1.08 /M tokens
Input Modalities
- Text
Output Modalities
- Text
Capabilities
- Long context
Try this model
Python
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["AIHUBMIX_API_KEY"],
base_url="https://shkq.org/v1",
)
response = client.chat.completions.create(
model="qwen-turbo-2024-11-01",
messages=[
{
"role": "user",
"content": "Hello, how are you?"
}
],
max_tokens=1024,
stream=False,
)
print(response.choices[0].message.content)© 2023 - 2026 AIHubMix, LLC