kimi逆向api
pip install revKimi --upgrade
具体用法可查看方法Type Hint
from revKimi import Chatbot
chatbot = Chatbot(config_path="./config.json")
config_path
为JSON配置文件路径,若不填则默认"./config.json",若无配置文件会自动创建
配置参数寻找方法如下图
from revKimi import Chatbot
chatbot = Chatbot(config=config)
resp = chatbot.ask(
prompt="你好", # 提问内容
conversation_id=<conversation_id>,# 会话ID(不填则会新建)
timeout=<timeout>,# 超时时间(默认10秒
use_search = False, # 是否使用搜索
file = None, # 文件二进制数据(传入代表上传文件)
)
请求中的file
参数为上传文件的二进制数据,可通过如下方法获取:
with open("test.txt", "rb") as f:
file = f.read()
{
"conversation_id": "coroksr5cfui11n4gql0",
"text": "你好!很高兴和你交流。有什么我可以帮你的吗?"
}
resp = chatbot.create_conversation([name])
chatbot.delete_conversation(<conversation_id>)
resp = chatbot.get_conversations([size])
resp = chatbot.get_history(<conversation_id>, [last])