import requests
import json
API 基本信息
base_url = “http://localhost:8080/"
chat_id = "ed73414a-ad33-11ef-a8f2-0242ac11" # 使用你自己的 chat_id
api_key = "application-481bf5efc1913a5819b4e*******” # 使用你的 API Key
请求头信息
headers = {
“Authorization”: api_key,
“Content-Type”: “application/json”,
“Accept”: “application/json”
}
请求体
data = {
“message”: “你好!”, # 替换为你要发送的消息
“re_chat”: False, # 是否重新开始对话
“stream”: True # 是否以流式方式返回响应
}
发送 POST 请求
response = requests.post(f"{base_url}/{chat_id}", headers=headers, data=json.dumps(data))
处理响应
if response.status_code == 200:
response_data = response.json()
print(“聊天响应:”, response_data)
else:
print(“请求失败,状态码:”, response.status_code, “错误信息:”, response.text)