请给出完整python代码
时间: 2023-06-10 08:08:01 浏览: 121
以下是一个简单的 Python 代码示例,用于演示如何使用 CSDN 开发的 ChitGPT 进行对话。
```python
import requests
import json
# ChitGPT 的 API 地址
api_url = "https://api.chit.chat/openai/chitgpt"
while True:
# 用户输入对话内容
user_input = input("你:")
# 将对话内容发送给 ChitGPT
response = requests.post(api_url, data=json.dumps({"text": user_input}))
# 获取 ChitGPT 的回复并输出
chitgpt_output = json.loads(response.text)["text"]
print("ChitGPT:", chitgpt_output)
```
需要注意的是,这个代码示例需要使用 `requests` 和 `json` 两个 Python 模块,请确保你的环境中已经安装了这两个模块。
阅读全文