Kimi K2.5
MultimodalKimi-K2.5
Kimi K2.5 on FlexAI: Moonshot AI LLM, license not listed, served via the OpenAI-compatible Token Factory at the live market-tracked rate.
Context
64K tokens
API endpoint
/v1/chat/completions
Compatibility
OpenAI
Estimate your monthly cost
M tokens
M tokens
10M × $0.315/M input$3.15
2M × $1.7/M output$3.4
Estimated monthly cost$6.55
Estimate only, at the current market-tracked rate. Usage-based; no minimums.
Get an API keyQuick Start
Kimi-K2.5
from openai import OpenAI
client = OpenAI(base_url="https://tokens.flex.ai/v1", api_key="your-api-key")
response = client.chat.completions.create(
model="Kimi-K2.5",
messages=[{
"role": "user",
"content": [
{"type": "text", "text": "What's in this image?"},
{"type": "image_url", "image_url": {"url": "https://example.com/photo.jpg"}},
],
}],
)
print(response.choices[0].message.content)