Temp patch to remove multiple tool calls (#2720)

This commit is contained in:
Chris Weaver 2024-10-08 11:08:45 -07:00 committed by GitHub
parent 3ef72b8d1a
commit aa69fe762b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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