Temp patch to remove multiple tool calls (#2720)

This commit is contained in:
Chris Weaver 2024-10-08 11:08:45 -07:00
parent 0e6524dd32
commit 1f0af86454

View File

@ -316,7 +316,9 @@ class Answer:
yield from self._process_llm_stream(
prompt=prompt,
tools=[tool.tool_definition() for tool in self.tools],
# as of now, we don't support multiple tool calls in sequence, which is why
# we don't need to pass this in here
# tools=[tool.tool_definition() for tool in self.tools],
)
return