@posthog/ai 8.6.7 → 8.6.8
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/dist/anthropic/index.cjs +10 -5
- package/dist/anthropic/index.cjs.map +1 -1
- package/dist/anthropic/index.mjs +10 -5
- package/dist/anthropic/index.mjs.map +1 -1
- package/dist/gemini/index.cjs +1 -1
- package/dist/gemini/index.mjs +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/langchain/index.cjs +104 -24
- package/dist/langchain/index.cjs.map +1 -1
- package/dist/langchain/index.d.ts +2 -0
- package/dist/langchain/index.mjs +104 -24
- package/dist/langchain/index.mjs.map +1 -1
- package/dist/openai/index.cjs +32 -6
- package/dist/openai/index.cjs.map +1 -1
- package/dist/openai/index.mjs +32 -6
- package/dist/openai/index.mjs.map +1 -1
- package/dist/openai-agents/index.cjs +1 -1
- package/dist/openai-agents/index.mjs +1 -1
- package/dist/vercel/index.cjs +1 -1
- package/dist/vercel/index.mjs +1 -1
- package/package.json +4 -4
|
@@ -151,7 +151,7 @@ const truncate = input => {
|
|
|
151
151
|
return `${truncatedStr}... [truncated]`;
|
|
152
152
|
};
|
|
153
153
|
|
|
154
|
-
var version = "8.6.
|
|
154
|
+
var version = "8.6.8";
|
|
155
155
|
|
|
156
156
|
// Warn when a wrapper's base_url points at the PostHog AI Gateway: the gateway
|
|
157
157
|
// emits its own $ai_generation, so each call would be captured (and, for billable
|
|
@@ -149,7 +149,7 @@ const truncate = input => {
|
|
|
149
149
|
return `${truncatedStr}... [truncated]`;
|
|
150
150
|
};
|
|
151
151
|
|
|
152
|
-
var version = "8.6.
|
|
152
|
+
var version = "8.6.8";
|
|
153
153
|
|
|
154
154
|
// Warn when a wrapper's base_url points at the PostHog AI Gateway: the gateway
|
|
155
155
|
// emits its own $ai_generation, so each call would be captured (and, for billable
|
package/dist/vercel/index.cjs
CHANGED
package/dist/vercel/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@posthog/ai",
|
|
3
|
-
"version": "8.6.
|
|
3
|
+
"version": "8.6.8",
|
|
4
4
|
"description": "PostHog Node.js AI integrations",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"jest": "29.7.0",
|
|
30
30
|
"node-fetch": "^3.3.2",
|
|
31
31
|
"@posthog-tooling/rollup-utils": "1.1.1",
|
|
32
|
-
"
|
|
33
|
-
"posthog-
|
|
32
|
+
"posthog-node": "^5.48.1",
|
|
33
|
+
"@posthog-tooling/tsconfig-base": "1.1.1"
|
|
34
34
|
},
|
|
35
35
|
"keywords": [
|
|
36
36
|
"posthog",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"uuid": "^11.1.0",
|
|
50
50
|
"zod": "^4.1.13",
|
|
51
|
-
"@posthog/core": "^1.46.
|
|
51
|
+
"@posthog/core": "^1.46.9"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"@anthropic-ai/sdk": "^0.112.3",
|