Skip to content
ATAI Today Brief
HomeNewsConceptsGuidesToolbox
AboutSubscribeUA
Subscribe

AI Today Brief

The daily AI-engineering brief. Built in public. EN · UA.

XTelegramLinkedInYouTubeRSS

Follow AI Today Brief on LinkedIn for daily AI-engineering updates and the weekly “5 shifts that changed how developers work” PDF.

Explore

NewsDigestsConceptsGuides

Company

SubscribeAdvertiseAbout

Legal

Editorial policyAI disclosurePrivacyTerms

© 2026 AI Today Brief. All rights reserved.

  1. Home/
  2. News/
  3. Models & research/
  4. Moonshot AI Kimi K3 2.8T Model Available on Telnyx Inference API
Models & research

Moonshot AI Kimi K3 2.8T Model Available on Telnyx Inference API

July 28, 2026· 3 min read
OKCurated by Oleksandr Kuzmenko, AI Product Engineer·Updated July 28, 2026·Sources cited on every story
AI-assisted · editor-reviewed·How we use AI
Moonshot AI Kimi K3 2.8T Model Available on Telnyx Inference API

Telnyx launched hosting for Moonshot AI's flagship Kimi K3 model, featuring 2.8 trillion parameters, a 1M-token context window, and native vision. The model supports function calling and OpenAI-compatible API endpoints.

Impact: Medium

Why it matters

Developers can query a frontier 2.8T open-weights model with prompt caching and configurable reasoning effort via standard OpenAI client libraries.

TL;DR

  • 01Access a 2.8T parameter model via standard OpenAI client libraries.
  • 02Leverage automatic prompt prefix caching for multi-turn agent conversations.
  • 03Configure reasoning depth dynamically to optimize compute budget.

Key facts

Parameters
2.8 Trillion (Open-Weight)
Context Window
1M Tokens
Model ID
moonshotai/Kimi-K3
API Compatibility
OpenAI REST API

Model Specifications

Kimi K3 introduces a 2.8T parameter architecture with native vision and text input capabilities, handling context lengths up to 1M tokens for codebase analysis and agent workflows.

Reasoning Modes & Function Calling

Developers can pass reasoning_effort parameters (low, high, max) to adjust inference depth per request. Built-in function calling and structured JSON output contracts allow easy integration into existing agent tools.

API Access

Requests run on Telnyx GPU infrastructure using standard OpenAI SDK setups by pointing the base URL to Telnyx and requesting model moonshotai/Kimi-K3.

Try it in 2 minutes

from openai import OpenAI

client = OpenAI(
    base_url="https://api.telnyx.com/v2/ai",
    api_key="TELNYX_API_KEY"
)
response = client.chat.completions.create(
    model="moonshotai/Kimi-K3",
    messages=[{"role": "user", "content": "Analyze codebase architecture"}]
)

python

✓ When to use

  • Large codebase analysis requiring up to 1M context tokens on open-weight architectures.
  • Multimodal agent workflows needing function calling and structured JSON output.

✕ When NOT to use

  • Low-latency real-time voice or ultra-lightweight client-side applications.

What to do today

  • →Test Kimi K3 endpoint on Telnyx using existing OpenAI SDK configurations.
  • →Configure prompt prefix caching for long agent session logs.
#Kimi K3#Telnyx#OpenAI

Sources

  • Telnyx Release Notes: Kimi K3 Inference
ShareShare on XShare on LinkedIn
← Previous storyPublic Claude Shared Links Search-Indexed: Audit Your Shared Artifacts NowNext story →Moonshot AI Open-Sources AgentENV: Firecracker Sandbox Infrastructure for AI Agents

Related stories

  • Models & researchAnthropic Claude Mythos Preview Discovers Cryptographic Flaws and Launches CryptanalysisBench
  • Models & researchMoonshot AI Releases 2.8T Parameter Kimi K3 Weights with Custom Licensing Terms
  • Models & researchNVIDIA Nemotron 3 Ultra Tops Open Models in Agentic Register-Transfer Level Coding
  • Models & researchAnthropic Releases Claude Opus 5 for Advanced Agentic Coding and Computer Use

Email digest

Get the morning AI brief

One email a day — the stories that matter for engineers, founders and tech leads. Human-edited, with links to primary sources.

  • ✓120+ sources scanned daily
  • ✓Edited by a human
  • ✓1 email per day
  • ✓EN + UA

By subscribing you agree to the privacy policy.