2025-02-23 00:01:25 +08:00

11 lines
432 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import requests
url = "http://localhost:123" # API 地址
data = {
"prompt": "Hello, how are you?" # 请求数据prompt 为用户输入
}
response = requests.post(url, json=data) # 发送 POST 请求,传递 JSON 数据
if response.status_code == 200: # 检查响应是否成功
print(response.text) # 直接获取并打印返回的完整响应
else:
print(f"请求失败,状态码: {response.status_code}")