月之暗面 Kimi

可用模型清单:https://platform.moonshot.cn/docs/intro#%E6%A8%A1%E5%9E%8B%E5%88%97%E8%A1%A8

因为Kimi API适配了OpenAI的接口格式规范,我们推荐您使用OAIClient进行请求。

import Agently
agent = (
    Agently.create_agent()
        .set_settings("current_model", "OAIClient")
        .set_settings("model.OAIClient.auth", { "api_key": "<Your-API-Key>" })
        # 使用月之暗面的API Base URL
        .set_settings("model.OAIClient.url", "https://api.moonshot.cn/v1")
        # 如果需要切换模型,可参考模型清单: https://platform.moonshot.cn/docs/intro#%E6%A8%A1%E5%9E%8B%E5%88%97%E8%A1%A8
        .set_settings("model.OAIClient.options", { "model": "moonshot-v1-8k" })
)