olivebot/123.py

23 lines
566 B
Python
Raw Normal View History

2025-08-08 17:17:58 +08:00
import requests
import json
url = "https://api.mixrai.com/v1/chat/completions"
# 'xxx' is your API key, 换成你的令牌
api_key = "xxx"
payload = json.dumps(
{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Hello!"}]}
)
headers = {
"Accept": "application/json",
"Authorization": api_key,
"User-Agent": "Apifox/1.0.0 (https://apifox.com)",
"Content-Type": "application/json",
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
print("----下面是API Key----")
print(api_key)