这两天玩了一下月之暗面出的Kimi.ai,使用体验上个人觉得比字节的豆包,或者科大讯飞的好用很多。值得投币的是可以给它一个网页让它替我们总结这个网页的内容,还有导入pdf进行总结的功能。用完直呼666!
- Kimi应用:kimi.moonshot.cn/
- 月之暗面用户中心:platform.moonshot.cn/console/inf... (这里可以获取apiKey)
下面是接口调用的核心代码:
js
function chatWithKimi() {
try {
//请求接口这块儿我使用的是axios,你也可以用fetch。
const response = await axios.post(
`https://api.moonshot.cn/v1/chat/completions`,
{
model: 'moonshot-v1-8k',
// inputValue为用户输入信息
messages: [
{ role: 'user', content: inputValue },
],
// 使用什么采样温度,值越高随机度越高,官方建议使用0.3.详细看官方文档
temperature: 0.3,
},
{
headers: {
Authorization: `Bearer ${这里输入你的apiKey}`,
},
}
)
console.log(
'response.data.choices[0].message',
response.data.choices[0]?.message?.content
)
} catch (error) {
console.error('Error:', error)
}
}
这是调用成功后返回的结果
接下来会利用Kimi的Api做一个属于自己的web ai网页并上线如果有朋友需要教程可以私信我哦!