We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e6524d commit 1f0af86Copy full SHA for 1f0af86
backend/danswer/llm/answering/answer.py
@@ -316,7 +316,9 @@ def _raw_output_for_explicit_tool_calling_llms(
316
317
yield from self._process_llm_stream(
318
prompt=prompt,
319
- tools=[tool.tool_definition() for tool in self.tools],
+ # as of now, we don't support multiple tool calls in sequence, which is why
320
+ # we don't need to pass this in here
321
+ # tools=[tool.tool_definition() for tool in self.tools],
322
)
323
324
return
0 commit comments