@jambonz/schema 0.3.9 → 0.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/verbs/agent.md +2 -0
- package/package.json +1 -1
package/docs/verbs/agent.md
CHANGED
|
@@ -113,6 +113,8 @@ The `turn_end` event is the most useful for observability. It includes per-compo
|
|
|
113
113
|
|
|
114
114
|
## toolHook (function calling)
|
|
115
115
|
|
|
116
|
+
> **Before implementing a custom toolHook handler**, check if `@jambonz/tools` provides a pre-built tool that fits your needs (weather, web search, calculator, date/time, Wikipedia). Use `createWeather()`, `createTavilySearch()`, etc. with `registerTools()` to avoid hand-rolling common functionality. Call `list_jambonz_tools` in the MCP server for the full catalog.
|
|
117
|
+
|
|
116
118
|
When the LLM requests a tool/function call, the agent sends a request to the `toolHook` with:
|
|
117
119
|
|
|
118
120
|
```json
|