update chat-openai-api

This commit is contained in:
jingyaogong 2025-04-18 12:43:57 +08:00
parent d9453ed9a3
commit 7da201a944

View File

@ -7,13 +7,13 @@ client = OpenAI(
stream = True
conversation_history_origin = []
conversation_history = conversation_history_origin.copy()
history_messages_num = 2 # 设置为偶数Q+A为0则每次不携带历史对话进行独立QA
while True:
conversation_history = conversation_history_origin.copy()
query = input('[Q]: ')
conversation_history.append({"role": "user", "content": query})
response = client.chat.completions.create(
model="minimind",
messages=conversation_history,
messages=conversation_history[-history_messages_num:],
stream=stream
)
if not stream: