Kimi AI by Moonshot AI provides advanced multimodal reasoning models with up to 256K context windows. Use Kimi K2.5 and other models through the OpenAI-compatible Chat Completions API with Vision Agents.
Vision Agents requires a Stream account
for real-time transport. Get your Kimi API key from the Moonshot
Platform.
Kimi K2.5 supports function calling with automatic tool invocation:
@agent.llm.register_function(description="Get weather for a location")async def get_weather(location: str) -> str: return f"The weather in {location} is sunny and 72°F"