Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubknejzlik committed Aug 12, 2024
1 parent 0085478 commit 205dec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/completions/completion-with-functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ export const completionWithFunctions = async (
model: model ?? 'gpt-4o-mini',
messages: _messages,
tools: functions?.map(functionToOpenAIChatCompletionTool),
parallel_tool_calls: parallelToolCalls,
...rest,
stream: false
})
console.log('???', JSON.stringify(response, null, 2))

let message = response?.choices?.[0]?.message

Expand Down

0 comments on commit 205dec5

Please sign in to comment.