@prometheus-ai/ai 0.5.0 → 0.5.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@prometheus-ai/ai",
4
- "version": "0.5.0",
4
+ "version": "0.5.1",
5
5
  "description": "Unified LLM API with automatic model discovery and provider configuration",
6
6
  "homepage": "https://prometheus.trivlab.com",
7
7
  "author": "Uttam Trivedi",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "@bufbuild/protobuf": "^2.12.0",
42
- "@prometheus-ai/utils": "0.5.0",
42
+ "@prometheus-ai/utils": "0.5.1",
43
43
  "openai": "^6.39.0",
44
44
  "partial-json": "^0.1.7",
45
45
  "zod": "4.4.3"
@@ -7,6 +7,9 @@ import { runGoogleOAuthLogin } from "./google-oauth-shared";
7
7
  import type { OAuthController, OAuthCredentials } from "./types";
8
8
 
9
9
  const decode = (s: string) => atob(s);
10
+ // Native-app OAuth credentials identify the public Google/Antigravity client.
11
+ // They are not user OAuth tokens, and installed apps cannot keep client
12
+ // credentials confidential. See docs/secrets.md for the release hygiene note.
10
13
  const CLIENT_ID = decode(
11
14
  "MTA3MTAwNjA2MDU5MS10bWhzc2luMmgyMWxjcmUyMzV2dG9sb2poNGc0MDNlcC5hcHBzLmdvb2dsZXVzZXJjb250ZW50LmNvbQ==",
12
15
  );
@@ -9,6 +9,9 @@ import { runGoogleOAuthLogin } from "./google-oauth-shared";
9
9
  import type { OAuthController, OAuthCredentials } from "./types";
10
10
 
11
11
  const decode = (s: string) => atob(s);
12
+ // Native-app OAuth credentials identify the public Google/Gemini CLI client.
13
+ // They are not user OAuth tokens, and installed apps cannot keep client
14
+ // credentials confidential. See docs/secrets.md for the release hygiene note.
12
15
  const CLIENT_ID = decode(
13
16
  "NjgxMjU1ODA5Mzk1LW9vOGZ0Mm9wcmRybnA5ZTNhcWY2YXYzaG1kaWIxMzVqLmFwcHMuZ29vZ2xldXNlcmNvbnRlbnQuY29t",
14
17
  );