moonshotai/Kimi-K2-Thinking

Kimi's latest and most powerful open-source model.

LLMINT4NEW
Home
Explore
Moonshot LLM Models
moonshotai/Kimi-K2-Thinking
LLM

Kimi's latest and most powerful open-source model.

1. Code Examples

2. OpenAI SDK

import requests

url = "https://api.atlascloud.ai/v1/chat/completions"
headers = {
    "Content-Type": "application/json",
    "Authorization": "Bearer $ATLASCLOUD_API_KEY"
}
data = {
    "model": "moonshotai/Kimi-K2-Thinking",
    "messages": [
        {
            "role": "user",
            "content": "what is difference between http and https"
        }
    ],
    "max_tokens": 1024,
    "temperature": 0.7,
    "stream": True
}

response = requests.post(url, headers=headers, json=data)
print(response.json())

Start From 300+ Models,

Explore all models