1 Star 0 Fork 0

Mortal Fu、/minimind

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
chat_openai_api.py 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
gongjingyao 提交于 2024-08-31 23:19 . update minimind-v1
from openai import OpenAI
client = OpenAI(
api_key="none",
base_url="http://202.195.167.142:8000/v1"
)
# 初始化对话历史列表
conversation_history_origin = []
conversation_history = conversation_history_origin.copy()
while True:
conversation_history = conversation_history_origin.copy()
query = input('[Q]:')
# 将用户的问题添加到对话历史中
conversation_history.append({"role": "user", "content": query})
# Chat completion API
stream = client.chat.completions.create(
model="minimind",
messages=conversation_history, # 传递整个对话历史
stream=True
)
print('[A]: ', end='')
assistant_res = ''
for chunk in stream:
# 将生成的回复实时打印出来
print(chunk.choices[0].delta.content or "", end="")
assistant_res += chunk.choices[0].delta.content or ""
# 当完成生成回复后,将LLM的回答也添加到对话历史中
conversation_history.append({"role": "assistant", "content": assistant_res})
print()
# # Example: reuse your existing OpenAI setup
# from openai import OpenAI
#
# # Point to the local server
# client = OpenAI(base_url="http://202.195.167.206:8000/v1", api_key="none")
#
# completion = client.chat.completions.create(
# model="minimind",
# messages=[{"role": "user", "content": "世界上最高的山是?"}],
# stream=False
# )
#
# print(completion.choices[0].message)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lhwz666/minimind.git
git@gitee.com:lhwz666/minimind.git
lhwz666
minimind
minimind
master

搜索帮助