Get up and running with Delve in just a few minutes. Choose your preferred interface below.Documentation Index
Fetch the complete documentation index at: https://wildcampstudio.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
- CLI
- SDK
Installation
Set API Key
Delve uses Claude for taxonomy generation. Set your Anthropic API key:Get your API key from the Anthropic Console
Run Your First Taxonomy Generation
Process a CSV file with text data:Results will be saved to the
./results/ directory with taxonomy, labeled documents, and reports.View Results
Check your output directory for these files:taxonomy.json- Machine-readable taxonomylabeled_documents.json- Documents with categorieslabeled_data.csv- Spreadsheet formatreport.md- Human-readable summary
Next Steps
- Try different data sources
- Customize with CLI options
- See more examples
Common Use Cases
CSV Files
Process customer feedback, support tickets, or survey responses from CSV files.
JSON Data
Handle API responses, logs, or structured data with JSONPath support.
DataFrames
Work directly with pandas DataFrames for in-memory processing.
LangSmith
Analyze LangSmith project runs to categorize LLM interactions.
Quick Alternative: Binary Detection
If you already know the single category you’re looking for, usefind_matches() for faster results:
What Happens During Processing?
- Sampling - Delve samples your dataset (default: 100 documents)
- Summarization - Each document is summarized using Claude Haiku
- Clustering - Documents are grouped into minibatches and analyzed iteratively
- Taxonomy Generation - Categories are discovered and refined across batches
- Validation - The final taxonomy is reviewed for quality
- Labeling - All documents are categorized with explanations
- Export - Results are saved in multiple formats
Need Help?
- Check the CLI Reference for all command options
- See the SDK Reference for API details
- Browse Examples for common patterns
- Read the full Installation Guide for advanced setup
