mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 02:40:14 +01:00
🪢 feat: Add Langfuse Tracing Support (#10292)
* 📦 feat: `@librechat/agents` v2.4.87 for LangFuse Support * 📦 chore: update @librechat/agents to v2.4.88 in package.json and package-lock.json * 📦 chore: update @librechat/agents to v2.4.89 * feat: Add runName configuration to AgentClient and Memory agent for improved tracing
This commit is contained in:
parent
0e05ff484f
commit
70ff6e94f2
5 changed files with 597 additions and 13 deletions
|
|
@ -80,7 +80,7 @@
|
|||
"@azure/storage-blob": "^12.27.0",
|
||||
"@keyv/redis": "^4.3.3",
|
||||
"@langchain/core": "^0.3.62",
|
||||
"@librechat/agents": "^2.4.86",
|
||||
"@librechat/agents": "^2.4.89",
|
||||
"@librechat/data-schemas": "*",
|
||||
"@modelcontextprotocol/sdk": "^1.17.1",
|
||||
"axios": "^1.12.1",
|
||||
|
|
|
|||
|
|
@ -383,9 +383,11 @@ ${memory ?? 'No existing memories'}`;
|
|||
});
|
||||
|
||||
const config = {
|
||||
runName: 'MemoryRun',
|
||||
configurable: {
|
||||
user_id: userId,
|
||||
thread_id: conversationId,
|
||||
provider: llmConfig?.provider,
|
||||
thread_id: `memory-run-${conversationId}`,
|
||||
},
|
||||
streamMode: 'values',
|
||||
recursionLimit: 3,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue