Moonshot Kimi

Kimi Thinking Preview API

CN Moonshot Kimi
ลองใช้ใน Playground → รับคีย์ API

Kimi Thinking Preview คือโมเดลเชิงตรรกะจาก Moonshot Kimi รองรับการคิดแบบทีละขั้นตอน ให้บริการผ่าน API แบบรวมศูนย์ของ MeshTok

การให้เหตุผล

ราคา (รายการอย่างเป็นทางการ ต่อ 1M โทเค็น)

อินพุต
$4.08/M
เอาต์พุต
$4.08/M

ข้อมูลจำเพาะ

หน้าต่างบริบท128K โทเค็น รูปแบบอินพุตข้อความ สตรีมมิ่งใช่ APIเข้ากันได้กับ OpenAI

วิธีใช้ Kimi Thinking Preview

เปลี่ยนแทน OpenAI ได้ทันที แค่เปลี่ยน base_url และ model เท่านั้น

# Python - pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://meshtok.com/v1",
    api_key="sk-your-MeshTok-key",
)

resp = client.chat.completions.create(
    model="moonshot/kimi-thinking-preview",
    messages=[{"role":"user","content":"Hello!"}],
)
print(resp.choices[0].message.content)
# cURL
curl https://meshtok.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-MeshTok-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"moonshot/kimi-thinking-preview","messages":[{"role":"user","content":"Hello!"}]}'

โมเดลที่เกี่ยวข้อง

โมเดลอื่นๆ ที่คุณอาจสนใจ