用python写一段调用chatgpt的脚本
时间: 2023-02-19 17:37:04 浏览: 127
python调用shell脚本
这是一段示例代码:
from chatgpt import ChatGPT
chatgpt = ChatGPT()
while True:
query = input('你:')
response = chatgpt.chat(query)
print('ChatGPT:', response)
阅读全文
python调用shell脚本