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.
Follow these steps to start tracing your application with HoneyHive.
Navigate to the projects page
Create a project
Follow the steps as shown in the interactive guide below to create a project. Get your API key
Click on the organization name in the top right corner of the screen, then click Copy API Key from the dropdown Installation
To install our SDKs, run the following commands in the shell. Initialize the tracer
Initializing the HoneyHiveTracer marks the beginning of your session and allows you to begin tracing your program.from honeyhive import HoneyHiveTracer
# place the code below at the beginning of your application execution
HoneyHiveTracer.init(
api_key="MY_HONEYHIVE_API_KEY", # paste your API key here
project="MY_HONEYHIVE_PROJECT_NAME", # paste your project name here
)