Skip to content

Commit

Permalink
style: simplify double string on the same line
Browse files Browse the repository at this point in the history
  • Loading branch information
italojohnny authored and ogabrielluiz committed Oct 29, 2024
1 parent 3951f22 commit 68add01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ def create_agent_runnable(self):
try:
return create_tool_calling_agent(self.llm, self.tools or [], prompt)
except NotImplementedError as e:
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."
raise NotImplementedError(message) from e

0 comments on commit 68add01

Please sign in to comment.