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 d4667b8 commit e3987bdCopy full SHA for e3987bd
gptme/tools/base.py
@@ -121,7 +121,8 @@ def to_output(self) -> str:
121
return self.to_xml()
122
123
def to_markdown(self) -> str:
124
- return f"```{self.tool} {"".join(self.args)}\n{self.content}\n```"
+ args = " ".join(self.args)
125
+ return f"```{self.tool} {args}\n{self.content}\n```"
126
127
def to_xml(self) -> str:
128
args = " ".join(self.args)
0 commit comments