studioglobal
Câu trả lờiURL công khai23 thg 4, 202619 nguồn

Tìm kiếm và kiểm chứng thông tin: Cách dùng Kimi K2.6 qua API như thế nào?

Có thể dùng Kimi K2.6 qua API theo cách gần giống OpenAI API, nhưng từ bằng chứng hiện có, phần chắc chắn nhất là cách kết nối vào nền tảng Kimi/Moonshot và các endpoint chính; còn ví dụ payload đầy đủ riêng cho đúng...

Có thể dùng Kimi K2.6 qua API theo cách gần giống OpenAI API, nhưng từ bằng chứng hiện có, phần chắc chắn nhất là cách kết nối vào nền tảng Kimi/Moonshot và các endpoint chính; còn ví dụ payload đầy đủ riêng cho đúng model ID của Kimi K2.6 thì bằng chứng hiện tại chưa hiển thị rõ. [3][7][8] Cách dùng qua API chính thức

Bài học chính

  • Có thể dùng Kimi K2.6 qua API theo cách gần giống OpenAI API, nhưng từ bằng chứng hiện có, phần chắc chắn nhất là cách kết nối vào nền tảng Kimi/Moonshot và các endpoint chính; còn ví dụ payload đầy đủ riêng cho đúng model ID của Kimi K2.6 thì bằng chứng hiện tại chưa hiển thị rõ
  • ## Cách dùng qua API chính thức của Kimi/Moonshot

Câu trả lời nghiên cứu

Có thể dùng Kimi K2.6 qua API theo cách gần giống OpenAI API, nhưng từ bằng chứng hiện có, phần chắc chắn nhất là cách kết nối vào nền tảng Kimi/Moonshot và các endpoint chính; còn ví dụ payload đầy đủ riêng cho đúng model ID của Kimi K2.6 thì bằng chứng hiện tại chưa hiển thị rõ. [3][7][8]

Cách dùng qua API chính thức của Kimi/Moonshot

  • Kimi Open Platform cung cấp HTTP API tương thích OpenAI, nên có thể dùng trực tiếp OpenAI SDK. [3]
  • Khi dùng SDK, cần đặt base_urlhttps://api.moonshot.ai/v1. [3]
  • Nếu gọi HTTP trực tiếp, endpoint gốc cũng là https://api.moonshot.ai/v1. [3]
  • API chat có tài liệu “Basic Information”, cho thấy cách gọi theo kiểu chat.completions.create(...) với modelmessages, tức cùng kiểu request body như OpenAI Chat Completions. [4]
  • Có endpoint kiểm tra số dư tại
    GET https://api.moonshot.ai/v1/users/me/balance
    và xác thực bằng header
    Authorization: Bearer ...
    . [5]
  • Có endpoint liệt kê model tại
    GET https://api.moonshot.ai/v1/models
    , và tài liệu model list xác nhận Kimi K2.6 đã được phát hành. [8]
  • Ngoài gọi realtime, nền tảng còn có Batch API tại
    POST https://api.moonshot.ai/v1/batches
    . [6]

Các bước thực tế nên làm

  1. Tạo tài khoản API và lấy API key. [2]
  2. Nạp số dư vào tài khoản nếu muốn dùng model qua API. [2]
  3. Cấu hình client/SDK với
    base_url = https://api.moonshot.ai/v1
    . [3]
  4. Gọi API chat theo chuẩn OpenAI-compatible, truyền modelmessages. [3][4]
  5. Nếu chưa chắc model ID chính xác của Kimi K2.6, gọi endpoint /models để kiểm tra danh sách model khả dụng trước. [8]

Mẫu gọi API tối thiểu

Ví dụ theo đúng hướng dẫn tổng quan của Kimi là dùng OpenAI SDK với base_url của Moonshot. [3]

python
from openai import OpenAI

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

resp = client.chat.completions.create(
    model="KIMI_K2_6_MODEL_ID",
    messages=[
        {"role": "user", "content": "Xin chào, hãy tự giới thiệu."}
    ]
)
print(resp)
  • Phần model="KIMI_K2_6_MODEL_ID" ở trên chỉ là chỗ điền model ID thực tế; trong bằng chứng hiện có, tôi không thấy snippet nào hiển thị trực tiếp tên model ID chính xác của Kimi K2.6 trong request mẫu. [7][8]
  • Nếu cần kiểm tra khả năng truy cập và billing trước, có thể gọi endpoint balance bằng Bearer token. [5]

Nếu dùng bên trung gian thay vì API chính thức

  • Có tài liệu bên thứ ba từ AIMLAPI cho model kimi-k2-6, và ví dụ của họ gọi
    POST https://api.aimlapi.com/v1/chat/completions
    . [1]
  • Điều này cho thấy Kimi K2.6 cũng có thể được truy cập qua nhà cung cấp trung gian, nhưng đây không phải endpoint chính thức của Kimi/Moonshot. [1][3]

Điều đã kiểm chứng được và điều chưa chắc

  • Đã kiểm chứng được rằng Kimi API là OpenAI-compatible và dùng base URL https://api.moonshot.ai/v1. [3]
  • Đã kiểm chứng được rằng có tài liệu riêng cho Kimi K2.6 và tài liệu model list xác nhận Kimi K2.6 đã phát hành. [7][8]
  • Đã kiểm chứng được rằng nền tảng có các endpoint cho chat, list models, balance, và batch. [4][5][6][8]
  • Chưa kiểm chứng được từ bằng chứng hiện có tên model ID chính xác cần điền khi gọi Kimi K2.6 trong request body. Insufficient evidence. [7][8]

Nếu bạn muốn, tôi có thể viết tiếp cho bạn một mẫu hoàn chỉnh bằng curl, Python, hoặc JavaScript theo đúng kiểu OpenAI-compatible, với chỗ nào chưa xác minh được tôi sẽ đánh dấu rõ.

Hỗ trợ hình ảnh

May be a Twitter screenshot of text that says 'Welcome to Kimi wel.cometoKiniCodeCL Code CLI! Send /help for help information. birectary:popojete/taeanaps /project/Landingpage- sam
May be a Twitter screenshot of text that says 'Welcome to Kimi wel.cometoKiniCodeCL Code CLIMay be a Twitter screenshot of text that says 'Welcome to Kimi wel.cometoKiniCodeCL Code CLI! Send /help for help information. birectary:popojete/taeanaps /project/Landingpage- sample Directory: Session: sioetele48-e 8df8eóde-26e1 Model: kimi-for coding Tip: Spot bug or have feedback? ype Select a model feedback right
May be a graphic of battery, capacitor and text that says 'Kimi KimiK2.6 K2.6 GPT-5.4 GPT-5.4(xhigh) (xhigh) Claude Opus 4.6 (max effort) Gemini 3. Pro (thinking high) Humanity sLa
May be a graphic of battery, capacitor and text that says 'Kimi KimiK2.6 K2.6 GPT-5.4 GPT-5.4(xhigh) (xhigh) Claude Opus 4.6 (max effort) GeMay be a graphic of battery, capacitor and text that says 'Kimi KimiK2.6 K2.6 GPT-5.4 GPT-5.4(xhigh) (xhigh) Claude Opus 4.6 (max effort) Gemini 3. Pro (thinking high) Humanity sLastExam Last Exam K BrowseComp DeepSearchQA (f1 score) Toolathlon OSWorld OSWorld-Verified Verified K Terminal- Terminal-Bench2.0 Bench 2.0 (
promptun.official's profile picture
promptun.official's profile picture
pricepertoken's profile picture
pricepertoken's profile picture
unclejobs.ai's profile picture
unclejobs.ai's profile picture
A dark background features the Moonshot AI logo at the top, a waving hand emoji on the left, and large text welcoming visitors to Moonshot AI, followed by smaller text describing t
API Overview - Kimi API PlatformA dark background features the Moonshot AI logo at the top, a waving hand emoji on the left, and large text welcoming visitors to Moonshot AI, followed by smaller text describing the company's mission to transition energy into intelligence.

Trao đổi nghiên cứu

Bạn

Câu hỏi nghiên cứu

Tìm kiếm và kiểm chứng thông tin: Cách dùng Kimi K2.6 qua API như thế nào?

Studio Global AI19 nguồn

Câu trả lời được trích dẫn

Có thể dùng Kimi K2.6 qua API theo cách gần giống OpenAI API, nhưng từ bằng chứng hiện có, phần chắc chắn nhất là cách kết nối vào nền tảng Kimi/Moonshot và các endpoint chính; còn ví dụ payload đầy đủ riêng cho đúng model ID của Kimi K2.6 thì bằng chứng hiện tại chưa hiển thị rõ. [3][7][8]

Cách dùng qua API chính thức của Kimi/Moonshot

  • Kimi Open Platform cung cấp HTTP API tương thích OpenAI, nên có thể dùng trực tiếp OpenAI SDK. [3]
  • Khi dùng SDK, cần đặt base_urlhttps://api.moonshot.ai/v1. [3]
  • Nếu gọi HTTP trực tiếp, endpoint gốc cũng là https://api.moonshot.ai/v1. [3]
  • API chat có tài liệu “Basic Information”, cho thấy cách gọi theo kiểu chat.completions.create(...) với modelmessages, tức cùng kiểu request body như OpenAI Chat Completions. [4]
  • Có endpoint kiểm tra số dư tại
    GET https://api.moonshot.ai/v1/users/me/balance
    và xác thực bằng header
    Authorization: Bearer ...
    . [5]
  • Có endpoint liệt kê model tại
    GET https://api.moonshot.ai/v1/models
    , và tài liệu model list xác nhận Kimi K2.6 đã được phát hành. [8]
  • Ngoài gọi realtime, nền tảng còn có Batch API tại
    POST https://api.moonshot.ai/v1/batches
    . [6]

Các bước thực tế nên làm

  1. Tạo tài khoản API và lấy API key. [2]
  2. Nạp số dư vào tài khoản nếu muốn dùng model qua API. [2]
  3. Cấu hình client/SDK với
    base_url = https://api.moonshot.ai/v1
    . [3]
  4. Gọi API chat theo chuẩn OpenAI-compatible, truyền modelmessages. [3][4]
  5. Nếu chưa chắc model ID chính xác của Kimi K2.6, gọi endpoint /models để kiểm tra danh sách model khả dụng trước. [8]

Mẫu gọi API tối thiểu

Ví dụ theo đúng hướng dẫn tổng quan của Kimi là dùng OpenAI SDK với base_url của Moonshot. [3]

python
from openai import OpenAI

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

resp = client.chat.completions.create(
    model="KIMI_K2_6_MODEL_ID",
    messages=[
        {"role": "user", "content": "Xin chào, hãy tự giới thiệu."}
    ]
)
print(resp)
  • Phần model="KIMI_K2_6_MODEL_ID" ở trên chỉ là chỗ điền model ID thực tế; trong bằng chứng hiện có, tôi không thấy snippet nào hiển thị trực tiếp tên model ID chính xác của Kimi K2.6 trong request mẫu. [7][8]
  • Nếu cần kiểm tra khả năng truy cập và billing trước, có thể gọi endpoint balance bằng Bearer token. [5]

Nếu dùng bên trung gian thay vì API chính thức

  • Có tài liệu bên thứ ba từ AIMLAPI cho model kimi-k2-6, và ví dụ của họ gọi
    POST https://api.aimlapi.com/v1/chat/completions
    . [1]
  • Điều này cho thấy Kimi K2.6 cũng có thể được truy cập qua nhà cung cấp trung gian, nhưng đây không phải endpoint chính thức của Kimi/Moonshot. [1][3]

Điều đã kiểm chứng được và điều chưa chắc

  • Đã kiểm chứng được rằng Kimi API là OpenAI-compatible và dùng base URL https://api.moonshot.ai/v1. [3]
  • Đã kiểm chứng được rằng có tài liệu riêng cho Kimi K2.6 và tài liệu model list xác nhận Kimi K2.6 đã phát hành. [7][8]
  • Đã kiểm chứng được rằng nền tảng có các endpoint cho chat, list models, balance, và batch. [4][5][6][8]
  • Chưa kiểm chứng được từ bằng chứng hiện có tên model ID chính xác cần điền khi gọi Kimi K2.6 trong request body. Insufficient evidence. [7][8]

Nếu bạn muốn, tôi có thể viết tiếp cho bạn một mẫu hoàn chỉnh bằng curl, Python, hoặc JavaScript theo đúng kiểu OpenAI-compatible, với chỗ nào chưa xác minh được tôi sẽ đánh dấu rõ.

Người ta cũng hỏi

Câu trả lời ngắn gọn cho "Tìm kiếm và kiểm chứng thông tin: Cách dùng Kimi K2.6 qua API như thế nào?" là gì?

Có thể dùng Kimi K2.6 qua API theo cách gần giống OpenAI API, nhưng từ bằng chứng hiện có, phần chắc chắn nhất là cách kết nối vào nền tảng Kimi/Moonshot và các endpoint chính; còn ví dụ payload đầy đủ riêng cho đúng model ID của Kimi K2.6 thì bằng chứng hiện tại chưa hiển thị rõ

Những điểm chính cần xác nhận đầu tiên là gì?

Có thể dùng Kimi K2.6 qua API theo cách gần giống OpenAI API, nhưng từ bằng chứng hiện có, phần chắc chắn nhất là cách kết nối vào nền tảng Kimi/Moonshot và các endpoint chính; còn ví dụ payload đầy đủ riêng cho đúng model ID của Kimi K2.6 thì bằng chứng hiện tại chưa hiển thị rõ ## Cách dùng qua API chính thức của Kimi/Moonshot

Tôi nên khám phá chủ đề liên quan nào tiếp theo?

Tiếp tục với "Tìm kiếm và kiểm chứng thông tin: Làm sao triển khai hoặc tích hợp Kimi K2.6 vào app / production workflow?" để có góc nhìn khác và trích dẫn bổ sung.

Mở trang liên quan

Tôi nên so sánh điều này với cái gì?

Kiểm tra chéo câu trả lời này với "Show me top 5 trending search question Vietnamese users often ask about Kimi K2.6 now. Show me both Vietnamese language & English version wi".

Mở trang liên quan

Tiếp tục nghiên cứu của bạn

Nguồn

  • [1] kimi-k2-6 | AI/ML API Documentationdocs.aimlapi.com

    import requests import requests import json # for getting a structured output with indentation import json # for getting a structured output with indentation response = requests.post( response = requests.post( "https://api.aimlapi.com/v1/chat/completions", "https://api.aimlapi.com/v1/chat/completions", headers={ headers={ # Insert your AIML API Key instead of : # Insert your AIML API Key instead of : "Authorization":"Bearer ", "Authorization":"Bearer ", "Content-Type":"application/json" "Content-Type":"application/json" }, }, json={ json={ "model":"moonshot/kimi-k2-6", "model":"moonshot/kimi-…

  • [2] Moonshot AI (Kimi K2.6) - TypingMind Docsdocs.typingmind.com

    Moonshot AI (Kimi K2.6). ## Step 1: Create a Moonshot API account. Go to and create a new Moonshot API account. ## Step 2: Set up Moonshot API account. To use the model via API, you’ll need to add balance to your account. ## Step 3: Get your Moonshot API key. Be sure to copy and save it securely — you’ll need it to set up Kimi K2 on TypingMind. ## Step 4: Set up Kimi as custom model on TypingMind. On TypingMind, go to Models —> Add Custom Models and enter the following details:. * Enter the endpoint: https://api.moonshot.ai/v1/chat/completions. * Enter the Model ID and context length: `ki…

  • [3] Kimi K2.6 - Kimi API Platformplatform.kimi.ai
  • [4] Quickstart with the Kimi API - Kimi API Platformplatform.kimi.ai

    create( model = "kimi-k2.5", model = "kimi-k2.5", messages = [ messages = [ {"role": "system", "content": "You are Kimi, an AI assistant provided by Moonshot AI. Moonshot AI is a proper noun and should not be translated."}, {"role": "system", "content": "You are Kimi, an AI assistant provided by Moonshot AI. Moonshot AI is a proper noun and should not be translated."}, {"role": "user", "content": "Hello, my name is Li Lei. What is 1+1?"} {"role": "user", "content": "Hello, my name is Li Lei. What is 1+1?"} ] ])) # We receive a response from the Kimi large language model via the API (role=assi…

  • [5] MoonshotAI: Kimi K2.6 – API Quickstart | OpenRouteropenrouter.ai

    MoonshotAI: Kimi K2.6. ### moonshotai/kimi-k2.6. Kimi K2.6 is Moonshot AI's next-generation multimodal model, designed for long-horizon coding, coding-driven UI/UX generation, and multi-agent orchestration. It handles complex end-to-end coding tasks across Python, Rust, and Go, and can convert prompts and visual inputs into production-ready interfaces. ## Sample code and API for Kimi K2.6. ### OpenRouter normalizes requests and responses across providers for you. OpenRouter supports reasoning-enabled models that can show their step-by-step thinking process. Use the reasoning parameter in…

  • [6] How to Access Kimi K2 API?analyticsvidhya.com

    Kimi K2 is a state-of-the-art open-source large language model built by Moonshot AI. We covered all about its benchmark, performance, and access points in detail in an earlier article: Kimi K2 the best open-source agentic model. Data Scale: Kimi K2 was pre-trained on 15.5 trillion tokens, which develops the model’s knowledge and ability to generalize. API: Kimi K2 can be integrated with your code using either the Together API or Moonshot’s API, supporting agentic workflows and the use of tools. Employing Kimi K2 with LangGraph can allow for some powerful, autonomous multi-step, agenti…

  • [7] How to Use Kimi K2 API with Clarifai | Fast, Scalable AI Inferenceclarifai.com

    How to Use Kimi K2 API via Clarifai: complete guide for developers. Kimi K2 is an open-weight Mixture-of-Experts (MoE) language model from Moonshot AI, designed for reasoning-heavy workloads such as coding, agentic workflows, long-context analysis, and tool-based decision making. Clarifai makes Kimi K2 available through the Playground and an OpenAI-compatible API, allowing you to run the model without managing GPUs, inference infrastructure, or scaling logic. This guide walks through everything you need to know to use Kimi K2 effectively on Clarifai, from understanding the model variants to…

  • [8] https://platform.kimi.ai/docs/guide/kimi-k2-6-quickstart - Threadsthreads.com

    Moonshot AI's Kimi K2.6 scored 58.6 on SWE Bench Pro, topping GPT 5.4 and Claude Opus 4.6. Image 5: Kimi K2.6 - Kimi API Platform Image 6 platform.kimi.ai Kimi K2.6 - Kimi API Platform. ype Select a model feedback right in this session every report ( navigate, Enter select, Kimi-k2.6 (Kimi Code) (current) Enable thinking mode? BREAKING: Moonshot AI releases Kimi K2.6 multimodal model for long-horizon coding, UI/UX generation, and multi-agent orchestration. Kimi K2.6 is Moonshot AI's next-generation multimodal model, designed for long-horizon coding, UI/UX generation, and multi-agent orchestra…

  • [9] Kimi API Platform - Agentic AI Directory | Agentic.aiagentic.ai

    Long-context Kimi models with tool calling for agentic apps. An API platform for building AI applications with Kimi’s K2.5/K2.6 models. It supports long context, tool calling, vision input, and autonomous agent workflows for developers. Kimi API Platform is a hosted LLM API service from Moonshot AI aimed at developers building AI products and agent workflows. The platform centers on Kimi’s newer K2.5 and K2.6 models, which are positioned for coding, dialogue, visual reasoning, and multi-step tool use. The site also lists official tools such as web search, memory, code execution, file fetching…

  • [10] Kimi K2 is the large language model series developed by Moonshot ...github.com

    Skip to content. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert. * Code. * Issues 61. * Pull requests 3. * [Actions](https://github.c…

  • [11] Kimi API Platformplatform.moonshot.ai
  • [12] Moonshot AImoonshot.ai

    Image 1. KimiAPIResearchDownloadCareers. Image 2. KimiAPIResearchDownloadCareers. ![Image 3](bl…

  • [13] API Overview - Kimi API Platformplatform.kimi.ai
    Using the API. ##### API Reference. ##### Batch API. # API Overview. https://api.moonshot.aihttps://api.moonshot.ai. Kimi Open Platform provides OpenAI-compatible HTTP APIs. You can use the OpenAI SDK directly. When using SDKs, set base_url to https://api.moonshot.ai/v1. When calling HTTP endpoints directly, use the full path such as https://api.moonshot.ai/v1/chat/completions. ## ​ OpenAI Compatibility. Our API is compatible with the OpenAI Chat Completions API in request/response format. * Simply point base_url to https://api.moonshot.ai/v1 to switch. All API requests requir…
  • [14] Basic Information - Kimi API Platformplatform.kimi.ai

    create( model = "kimi-k2.5", model = "kimi-k2.5", messages = [ messages = [ {"role": "system", "content": "You are Kimi, an AI assistant provided by Moonshot AI. {{ "id": "cmpl-04ea926191a14749b7f2c7a48a68abc6", "id": "cmpl-04ea926191a14749b7f2c7a48a68abc6", "object": "chat.completion", "object": "chat.completion", "created": 1698999496, "created": 1698999496, "model": "kimi-k2.5", "model": "kimi-k2.5", "choices": [ "choices": [ { { "index": 0, "index": 0, "message": { "message": { "role": "assistant", "role": "assistant", "content": "Hello, Li Lei! create( model="kimi-k2.5", model ="kimi-k2.…

  • [15] Check Balance - Kimi API Platformplatform.kimi.ai

    Kimi API Platform home pagelight logodark logo. ##### Using the API. ##### API Reference. ##### Batch API. curl --request GET \ curl --request GET \ --url https://api.moonshot.ai/v1/users/me/balance \ --url https://api.moonshot.ai/v1/users/me/balance \ --header 'Authorization: Bearer ' --header 'Authorization: Bearer '. {{ "code": 123, "code": 123, "data": { "data": { "available_balance": 49.58894, "available_balance": 49.58894, "voucher_balance": 46.58893, "voucher_balance": 46.58893, "cash_balance": 3.00001 "cash_balance": 3.00001 }, }, "scode": "0x0", "scode": "0x0", "status": true "status…

  • [16] Create Batch - Kimi API Platformplatform.kimi.ai

    curl --request POST \ curl --request POST \ --url https://api.moonshot.ai/v1/batches \ --url https://api.moonshot.ai/v1/batches \ --header 'Authorization: Bearer ' \ --header 'Authorization: Bearer ' \ --header 'Content-Type: application/json' \ --header 'Content-Type: application/json' \ --data ' --data '{{ "input_file_id": "", "input_file_id": "", "endpoint": "/v1/chat/completions", "endpoint": "/v1/chat/completions", "completion_window": "" "completion_window": ""}} ' '. {{ "id": "", "id": "", "object": "batch", "object": "batch", "endpoint": "", "endpoint": "", "input_file_id": "", "input…

  • [17] List Models - Kimi API Platformplatform.kimi.ai

    🎉 Kimi K2.6 has been released with improved long-context coding stability. Top-up bonus event in progress 🔗. Kimi API Platform home pagelight logodark logo. ##### Using the API. ##### Capabilities. ##### API Reference. ##### Files. ##### Batch API. curl --request GET \ --url https://api.moonshot.ai/v1/models \ --header 'Authorization: Bearer '. { "object": "list", "data": [ { "id": "kimi-k2.5", "object": "model", "created": 123, "owned_by": "moonshot", "context_length": 123, "supports_image_in": true, "supports_video_in": true, "supports_reasoning": true } ] }. # List Models. List all curre…

  • [18] Upload File - Kimi API Platformplatform.kimi.ai

    from pathlib import Path from pathlib import Path from openai import OpenAI from openai import OpenAI client = OpenAI(client = OpenAI( api_key = "$MOONSHOT_API_KEY", api_key = "$MOONSHOT_API_KEY", base_url = "https://api.moonshot.ai/v1", base_url = "https://api.moonshot.ai/v1",)) # xlnet.pdf is an example file; we support pdf, doc, and image formats.# xlnet.pdf is an example file; we support pdf, doc, and image formats.file_object = client.files.create(file=Path("xlnet.pdf"), purpose="file-extract") file_object = client.files.create(file =Path("xlnet.pdf"), purpose ="file-extract") # Note: re…

  • [19] Estimate Tokens - Kimi API Platformplatform.kimi.ai

    curl --request POST \ curl --request POST \ --url https://api.moonshot.ai/v1/tokenizers/estimate-token-count \ --url https://api.moonshot.ai/v1/tokenizers/estimate-token-count \ --header 'Authorization: Bearer ' \ --header 'Authorization: Bearer ' \ --header 'Content-Type: application/json' \ --header 'Content-Type: application/json' \ --data ' --data '{{ "model": "kimi-k2.5", "model": "kimi-k2.5", "messages": [ "messages": [ { { "role": "system", "role": "system", "content": "", "content": "", "name": null, "name": null, "partial": false "partial": false } } ] ]}} ' '. curl --request POST \…