Query Parameters
The following parameters can be defined to filter the events*Required if using filters
Initialize the honeyhive SDK
LLM data export
Below are listed the most common log export flows for LLM data that is logged to our platform. These are useful for both fine-tuning your models and understanding how your users are interacting with your application.Query LLM events based on evaluator score
Assuming that you have logged events with theContext Relevance evaluator running on them.
To retrieve all the ‘model’ events that have a Context Relevance score above a specific threshold (e.g., 3), use the following query:
Query LLM events based on end-user feedback
Assuming that you have logged events and further set feedbackrating on them.
To retrieve all the ‘model’ events that have a rating score above a specific threshold (e.g., 3), use the following query:
Query LLM events based on metadata
Assuming you are running an experiment and want to retrieve events of an experiment. We pass the unique identifier undermetadata.experiment-id.
To retrieve all the ‘model’ events that have a specific value for experiment-id, use the following query:
Event based export
Very often for multi-step or agentic applications, you might want to export a particular event’s input-output data to setup evaluator or fine-tuning datasets on that step in your pipeline. To retrieve a specific event using its name, you can use the following query:Single session data export
In the case of agents or complex RAG pipelines, you might want to query the full session data to understand the context of the conversation or the state of the agent. To retrieve all children events belonging to a session, use the following query:Multiple session data export
In order to careful multi-step analysis or to understand the context of the conversation across multiple sessions, you might want to query multiple sessions.We automatically aggregate certain properties automatically for all sessions as described here.

