Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Looking for latest HoneyHive v2? See v2 docs here.
Programmatically export datasets from HoneyHive
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}")
Was this page helpful?