给出python调用实例代码
时间: 2023-11-09 21:48:15 浏览: 80
Python 调用Java实例详解
5星 · 资源好评率100%
以下是一个简单的 Python 调用 ChitGPT 进行对话的示例代码:
```python
import requests
API_ENDPOINT = "https://api.chitgpt.com/chatbot"
API_KEY = "YOUR_API_KEY" # 替换为你的 API Key
# 发送 POST 请求,请求参数为问题和 API Key
def ask_question(question):
headers = {"Authorization": f"Bearer {API_KEY}"}
data = {"question": question}
response = requests.post(url=API_ENDPOINT, headers=headers, json=data)
return response.json()
# 开始对话
while True:
question = input("请输入您的问题:")
if question == "退出":
break
response = ask_question(question)
print(response["answer"])
```
提示:在使用此代码之前,请确保已经申请了 API Key 并替换掉代码中的 YOUR_API_KEY。
阅读全文