Fix api call for cloudflare API (#467)

This commit is contained in:
soky srm
2025-12-19 13:18:43 +01:00
committed by GitHub
parent 64c25725c9
commit 0d52566cc1

View File

@@ -339,19 +339,23 @@ class Provider::Openai < Provider
if function_results.any?
# Build assistant message with tool_calls
tool_calls = function_results.map do |fn_result|
# Convert arguments to JSON string if it's not already a string
arguments = fn_result[:arguments]
arguments_str = arguments.is_a?(String) ? arguments : arguments.to_json
{
id: fn_result[:call_id],
type: "function",
function: {
name: fn_result[:name],
arguments: fn_result[:arguments]
arguments: arguments_str
}
}
end
messages << {
role: "assistant",
content: nil,
content: "", # Some OpenAI-compatible APIs require string, not null
tool_calls: tool_calls
}