Skip to content

@iqai/adk@0.8.5

Choose a tag to compare

@github-actions github-actions released this 27 Mar 16:25
· 133 commits to main since this release
0c8d230

Patch Changes

  • d25219b: fix: deduplicate concurrent database session initialization

  • 2336621: fix: share endInvocation flag by reference between parent/child contexts

    endInvocation was a primitive boolean copied by value when creating child
    invocation contexts, so sub-agents setting it to true never propagated to
    the parent. Wrapped in a shared InvocationFlags object passed by reference.

  • b4b6887: fix: standardize evaluation timestamps to milliseconds

  • 751b3e9: fix: handle all Part types in GcsArtifactService

  • 800239b: fix: use correct invocationId when merging parallel function responses

  • d35873a: fix: guard streaming tool call JSON.parse to prevent generator crashes

  • c6ff7ef: fix: vector storage delete/count bypass stale in-memory cache

    Filter-based delete() and count() in VectorStorageProvider now delegate to the underlying vector store instead of relying on an in-memory cache that is empty after process restart.

  • fbb3c30: fix: replace random score stubs with real Vertex AI evaluation API calls

  • 7c9ddf6: fix: resolve race condition in LocalEvalService constructor