@mcp-use/agent 2.0.0-beta.21 → 2.0.0-beta.22
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/.tsbuildinfo +1 -1
- package/dist/index.js +1 -1
- package/dist/langchain.js +5 -3
- package/dist/langchain.js.map +1 -1
- package/dist/observability/langfuse.d.ts.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
package/dist/langchain.js
CHANGED
|
@@ -24,10 +24,12 @@ function getEnvVar(key) {
|
|
|
24
24
|
}
|
|
25
25
|
async function initializeLangfuse(agentId, metadata, metadataProvider, tagsProvider) {
|
|
26
26
|
try {
|
|
27
|
-
const langfuseModule = await import("langfuse
|
|
27
|
+
const langfuseModule = await import("@langfuse/langchain").catch(
|
|
28
|
+
() => null
|
|
29
|
+
);
|
|
28
30
|
if (!langfuseModule) {
|
|
29
31
|
logger7.debug(
|
|
30
|
-
"Langfuse package not installed - tracing disabled. Install with: npm install langfuse
|
|
32
|
+
"Langfuse package not installed - tracing disabled. Install with: npm install @langfuse/langchain"
|
|
31
33
|
);
|
|
32
34
|
return;
|
|
33
35
|
}
|
|
@@ -1680,7 +1682,7 @@ var ObservabilityManager = class {
|
|
|
1680
1682
|
};
|
|
1681
1683
|
|
|
1682
1684
|
// src/version.ts
|
|
1683
|
-
var VERSION = "2.0.0-beta.
|
|
1685
|
+
var VERSION = "2.0.0-beta.22";
|
|
1684
1686
|
function getPackageVersion() {
|
|
1685
1687
|
return VERSION;
|
|
1686
1688
|
}
|