MoonshotAI: Kimi K3

PhalaQuality: 50/100Unverified
Try in Playground
Vision Reasoning Tool Use Streaming System Messages

Overview

MoonshotAI: Kimi K3 is a efficient model from Phala with a 1.0M context window. Priced at $0.0030/1K input, $0.015/1K output.

ANT Routing Intelligence

Limited data

Total Requests

1

P50 Latency

15ms

P95 Latency

15ms

Selection Rate

0.0%

of eligible requests

Intelligence Score

35/100

Quick Start

from openai import OpenAI

client = OpenAI(
    base_url="https://api.antbase.ai/v1",
    api_key="YOUR_ANT_API_KEY",
)

response = client.chat.completions.create(
    model="phala/moonshotai/kimi-k3",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)