nikost
nikost
LLangfuse
Created by Marc on 1/24/2024 in #get-support
Good question, haven't used the flowise
Thanks for the suggestion. Very helpful. I tried the api and I can get the traces for a session. I see that the object has the schema :
{
"id": "",
"externalId": null,
"timestamp": "2024-01-24T19:36:52.289Z",
"name": "",
"userId": null,
"metadata": {
"tags": []
},
"release": null,
"version": null,
"projectId": "",
"public": false,
"bookmarked": false,
"tags": [],
"input": {
"input": ""
},
"output": {
"output": ""
},
"sessionId": ""
}
{
"id": "",
"externalId": null,
"timestamp": "2024-01-24T19:36:52.289Z",
"name": "",
"userId": null,
"metadata": {
"tags": []
},
"release": null,
"version": null,
"projectId": "",
"public": false,
"bookmarked": false,
"tags": [],
"input": {
"input": ""
},
"output": {
"output": ""
},
"sessionId": ""
}
Is there any way to pass the externalId ? I have in my flowise requests these :
overrideConfig: {
analytics: {
langFuse: {
chatId: "sampleChatId",
userId: "sampleUser1",
sessionId: "sampleSessionId",
externalId: "sampleExternalId"
}
},
sessionId: "sampleSession"
}
overrideConfig: {
analytics: {
langFuse: {
chatId: "sampleChatId",
userId: "sampleUser1",
sessionId: "sampleSessionId",
externalId: "sampleExternalId"
}
},
sessionId: "sampleSession"
}
sessionId and userId are visible in langfuse, but the externalId still is null
5 replies