← Back to context Comment by Bolwin 3 days ago What do you mean by custom format? Non-json? 1 comment Bolwin Reply pcwelder 2 days ago Could be json or non json. Instead of using tools in API, you ask model to share structured output in text. You parse the string to get the JSON. Gives much more control over things you can do.For example model shares<tool_call name="getWeather"> <param name="city">London</param> </tool_call>
pcwelder 2 days ago Could be json or non json. Instead of using tools in API, you ask model to share structured output in text. You parse the string to get the JSON. Gives much more control over things you can do.For example model shares<tool_call name="getWeather"> <param name="city">London</param> </tool_call>
Could be json or non json. Instead of using tools in API, you ask model to share structured output in text. You parse the string to get the JSON. Gives much more control over things you can do.
For example model shares
<tool_call name="getWeather"> <param name="city">London</param> </tool_call>