update README

This commit is contained in:
Vinlic 2024-03-09 14:42:18 +08:00
parent 3a34174bf2
commit a4c65fa30e

View File

@ -4,6 +4,10 @@
https://udify.app/chat/Po0F6BMJ15q5vu2P
## 接入准备
从kimi获取refresh_token进入kimi随便发起一个对话然后F12打开开发者工具从Application > Local Storage中找到refresh_token的值这将作为API_KEY。
## 安装
请先安装好Node.js环境并且配置好环境变量确认node命令可用。
@ -49,3 +53,22 @@ pm2 reload kimi-free-api
```shell
pm2 stop kimi-free-api
```
## 发起请求
目前支持与openai兼容的 `/v1/chat/completions` 接口
POST /v1/chat/completions
```json
{
"messages": [
{
"role": "user",
"content": "测试"
}
],
// 如果使用SSE流请设置为true
"stream": false
}
```