一 接口代码
有时间继续测试
python
import openai
# 填入你的api_key
openai.api_key = ""
models = openai.Model.list()
# 定义API参数
params = {'role': "user", "content": ''}
# 定义循环
while True:
# 获取用户输入
user_input = input("请输入您的消息:")
if user_input.lower() == "quit":
break
# 更新API参数
params["content"] = user_input
# 发送请求到API
#response = requests.get(url, params=params)
completion = openai.ChatCompletion.create(model="gpt-3.5-turbo", messages=[
params])
print(completion.choices[0].message.content)
二 jupyter 推荐使用版本
1 安装 Jupyter 版本 1.0.0:
python
pip install jupyter==1.0.0
2 安装 Jupyter Notebook 版本 6.4.5:
python
pip install notebook==6.4.5
3 安装 scikit-learn 版本 1.1.3:
python
pip install scikit-learn==1.1.3