We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 662ea21 commit 3158ed2Copy full SHA for 3158ed2
src/backend/base/langflow/components/agents/tool_calling.py
@@ -45,5 +45,5 @@ def create_agent_runnable(self):
45
try:
46
return create_tool_calling_agent(self.llm, self.tools or [], prompt)
47
except NotImplementedError as e:
48
- message = f"{self.display_name} does not support tool calling." "Please try using a compatible model."
+ message = f"{self.display_name} does not support tool calling. Please try using a compatible model."
49
raise NotImplementedError(message) from e
0 commit comments