Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.honeyhive.ai/llms.txt

Use this file to discover all available pages before exploring further.

Download dataset contents to use in your own scripts, pipelines, or external tools. This is useful for local analysis, backing up data, or integrating with other systems.
import os
from honeyhive import HoneyHive

client = HoneyHive(api_key=os.environ["HH_API_KEY"])

response = client.datapoints.list(dataset_name="My Q&A Dataset")

for dp in response.datapoints:
    print(f"Inputs: {dp.inputs}")
    print(f"Ground Truth: {dp.ground_truth}")

Next Steps

Import Datasets

Upload new datasets to HoneyHive

Run Experiments

Evaluate using your datasets