Intern S1 Pro 是上海人工智能实验室的旗舰模型,可通过 MeshTok 统一 API 使用。
直接替换OpenAI。只需改base_url和模型。
# 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="intern/intern-s1-pro", 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":"intern/intern-s1-pro","messages":[{"role":"user","content":"Hello!"}]}'
你可能考虑的其他模型。
General-purpose chat model.
Step-by-step reasoning model.
Multimodal vision model.
DeepSeek’s flagship reasoning model.