Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Zen instruments the following AI SDKs to track which models are used and how man
- ✅ [`@mistralai/mistralai`](https://www.npmjs.com/package/@mistralai/mistralai) 1.x
- ✅ [`@anthropic-ai/sdk`](https://www.npmjs.com/package/@anthropic-ai/sdk) ^0.40.x
- ✅ [`@aws-sdk/client-bedrock-runtime`](https://www.npmjs.com/package/@aws-sdk/client-bedrock-runtime) 3.x
- ✅ [`ai`](https://www.npmjs.com/package/ai) 5.x, 4.x
- ✅ [`ai`](https://www.npmjs.com/package/ai) 6.x, 5.x, 4.x
- ✅ [`@google/genai`](https://www.npmjs.com/package/@google/genai) ^1.6.0

_Note: Prompt injection attacks are currently not covered by Zen._
Expand Down
2 changes: 1 addition & 1 deletion library/agent/Agent.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ t.test("it sends started event", async (t) => {
t.same(logger.getMessages(), [
"Starting agent v0.0.0...",
"Found token, reporting enabled!",
"mongodb@6.20.0 is supported!",
"mongodb@6.21.0 is supported!",
]);
});

Expand Down
4 changes: 2 additions & 2 deletions library/helpers/getPackageVersion.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as t from "tap";
import { getPackageVersion } from "./getPackageVersion";

t.test("it resolves the version of a package", async (t) => {
t.same(getPackageVersion("express"), "5.1.0");
t.same(getPackageVersion("express"), "5.2.1");
t.same(getPackageVersion("non-existing-package"), undefined);
t.same(getPackageVersion("@google-cloud/functions-framework"), "4.0.0");
t.same(getPackageVersion("@google-cloud/functions-framework"), "4.0.1");
});
Loading