Kimi K2.6 is now available on the Telnyx Inference API through the OpenAI-compatible Chat Completions endpoint. Built by Moonshot AI, K2.6 advances on K2.5 with stronger long-horizon task adherence, tighter constraint following, and improved third-party API understanding.
moonshotai/Kimi-K2.6.moonshotai/Kimi-K2.6 from the model dropdown.from openai import OpenAI
client = OpenAI(
api_key="YOUR_TELNYX_API_KEY",
base_url="https://api.telnyx.com/v2/ai/inference"
)
response = client.chat.completions.create(
model="moonshotai/Kimi-K2.6",
messages=[{"role": "user", "content": "Explain the advantage of on-network inference for voice AI agents."}]
)
print(response.choices[0].message.content)
Learn more in the Inference API docs or the pricing page.