Skip to main content

Requirements

Python 3.9+

Delve requires Python 3.9 or higher. Check your version with python --version

Installation Methods

API Key Configuration

Anthropic API Key (Required)

Delve uses Claude models from Anthropic. You’ll need an API key:
1

Get an API Key

Sign up and get your API key from the Anthropic Console
2

Set Environment Variable

Set your API key as an environment variable:
Add this to your ~/.bashrc, ~/.zshrc, or ~/.profile to make it permanent.
3

Verify Installation

Check that Delve can access your API key:

LangSmith API Key (Optional)

If you want to use LangSmith as a data source:
Get your LangSmith API key from LangSmith.

Environment Variables

Create a .env file in your project directory for easy management:
.env
Load it in your Python scripts:

Verify Installation

Test that everything is working:

Using with uv

If you installed with uv, you can run Delve without activating a virtual environment:

Using with Virtual Environments

If you prefer traditional virtual environments:

Troubleshooting

Make sure you’ve installed Delve in your current environment:
If using a virtual environment, ensure it’s activated.
Ensure your ANTHROPIC_API_KEY environment variable is set:
If empty, set it:
Your API key may be invalid or expired. Get a new one from the Anthropic Console.
Delve requires Python 3.9+. Upgrade your Python version:
Install Python 3.9+ from python.org

Next Steps

Quickstart

Run your first taxonomy generation

CLI Reference

Learn all CLI commands

SDK Reference

Explore the Python SDK

Examples

See code examples