ooooh cool! ๐
say, what tool calling format do you use?
Im transitioning from thus verbose one:
# Thought
Hmmmm let me thing - okay imma call this tool
# Actions
[
{
"name": "tool_name",
"args": {"arg1": value, ...}
}
]
# Observation
results here
# Thought
[...]
to this much simpler format:
blablabla my thoughts here
Tool: tool_name(arg1, arg2, ...)
Result: results here
aha okay, let me iterate based on the results
Tool: [...]
works great for rapid calls, but u gotta handle all those parenthesis... incase it wants to useultiline strings and such...
oh yea - im building a FOSS Godot game engine assistant, in case anyone cares
whats your experience been like?