From dfb540506789e458150e46a348726b655e6565fe Mon Sep 17 00:00:00 2001 From: taro1025 Date: Fri, 6 Dec 2024 22:03:15 +0900 Subject: [PATCH] Fix: Move 'messages << message' outside of loop to prevent duplicate entries --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d152756b..8c9e4ff2 100644 --- a/README.md +++ b/README.md @@ -489,6 +489,10 @@ response = message = response.dig("choices", 0, "message") if message["role"] == "assistant" && message["tool_calls"] + + # For a subsequent message with the role "tool", OpenAI requires the preceding message to have a tool_calls argument. + messages << message + message["tool_calls"].each do |tool_call| tool_call_id = tool_call.dig("id") function_name = tool_call.dig("function", "name") @@ -504,9 +508,6 @@ if message["role"] == "assistant" && message["tool_calls"] # decide how to handle end - # For a subsequent message with the role "tool", OpenAI requires the preceding message to have a tool_calls argument. - messages << message - messages << { tool_call_id: tool_call_id, role: "tool",