Comparing version 3.35.3 to 3.36.0
@@ -524,3 +524,3 @@ 'use strict'; | ||
/** | ||
* @description Batched ingestion for Langfuse Tracing. If you want to use tracing via the API, such as to build your own Langfuse client implementation, this is the only API route you need to implement. Notes: - Introduction to data model: https://langfuse.com/docs/tracing-data-model - Batch sizes are limited to 3.5 MB in total. You need to adjust the number of events per batch accordingly. - The API does not return a 4xx status code for input errors. Instead, it responds with a 207 status code, which includes a list of the encountered errors. | ||
* @description Batched ingestion for Langfuse Tracing. If you want to use tracing via the API, such as to build your own Langfuse client implementation, this is the only API route you need to implement. Within each batch, there can be multiple events. Each event has a type, an id, a timestamp, metadata and a body. Internally, we refer to this as the "event envelope" as it tells us something about the event but not the trace. We use the event id within this envelope to deduplicate messages to avoid processing the same event twice, i.e. the event id should be unique per request. The event.body.id is the ID of the actual trace and will be used for updates and will be visible within the Langfuse App. I.e. if you want to update a trace, you'd use the same body id, but separate event IDs. Notes: - Introduction to data model: https://langfuse.com/docs/tracing-data-model - Batch sizes are limited to 3.5 MB in total. You need to adjust the number of events per batch accordingly. - The API does not return a 4xx status code for input errors. Instead, it responds with a 207 status code, which includes a list of the encountered errors. | ||
* | ||
@@ -958,3 +958,3 @@ * @tags Ingestion | ||
var version = "3.35.3"; | ||
var version = "3.36.0"; | ||
@@ -961,0 +961,0 @@ class Langfuse extends langfuseCore.LangfuseCore { |
{ | ||
"name": "langfuse", | ||
"version": "3.35.3", | ||
"version": "3.36.0", | ||
"engines": { | ||
@@ -40,5 +40,5 @@ "node": ">=18" | ||
"dependencies": { | ||
"langfuse-core": "^3.35.3" | ||
"langfuse-core": "^3.36.0" | ||
}, | ||
"gitHead": "9c0338f1257b7d6979833c6e1cf5c2cd063a734e", | ||
"gitHead": "c3668368533b9ad90ac5db6b6120d34749bc6d00", | ||
"devDependencies": { | ||
@@ -45,0 +45,0 @@ "typedoc": "^0.26.8" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
514981
4741
Updatedlangfuse-core@^3.36.0