Skip to content

@iqai/adk@0.8.1

Choose a tag to compare

@github-actions github-actions released this 04 Mar 16:33
· 220 commits to main since this release
5995a4c

Patch Changes

  • 58eeac4: fix: handle null answer from Tavily API in WebSearchTool

    Tavily returns "answer": null by default when include_answer is not set, but the Zod schema typed answer as z.string().optional() which rejects null. Changed to z.string().nullish() to accept both null and undefined.