Full-stack AI enablement platform
Project description
๐ฌ dolphin
โ ๏ธ EXPERIMENTAL - This is a developmental library under active development. APIs and interfaces are unstable and subject to change without notice.
A semantic code search and knowledge management system with AI-native interfaces (MCP, REST API, CLI).
Quick Start
Installation
Core Installation (~200MB)
# Install core functionality with pip
pip install pb-dolphin
# Or with uv (recommended)
uv pip install pb-dolphin
# โ ๏ธ IMPORTANT: Ensure OPENAI_API_KEY is set as env var
export OPENAI_API_KEY="sk-your-key-here"
Optional: Cross-Encoder Reranking (~2GB additional)
For advanced search quality improvement (+20-30% MRR):
# With pip
pip install pb-dolphin[reranking]
# With uv (recommended)
uv pip install pb-dolphin[reranking]
Trade-off: Better relevance but 2-3x slower searches. See Advanced Features for configuration.
Optional: MCP Orchestrator
For MCP server management capabilities:
# With pip
pip install pb-dolphin[orchestrator]
# With uv
uv pip install pb-dolphin[orchestrator]
Basic Usage
# Initialize global knowledge store and index a repository
dolphin init
dolphin add-repo my-project /path/to/project
dolphin index my-project
# Search your indexed code
dolphin search "authentication logic"
# Start API server
dolphin serve
Core Commands
dolphin init- Initialize configuration (auto-creates~/.dolphin/config.toml)dolphin init --repo- Create repo-specific config in current directorydolphin add-repo <name> <path>- Register a repository for indexingdolphin index <name>- Index a repository with language-aware chunkingdolphin search <query>- Search indexed code semanticallydolphin serve- Start REST API server (port 7777)dolphin config --show- Display current configuration
Architecture
High-Level Overview
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ AI Interfaces (Claude, Continue, etc) โ
โโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ MCP Protocol
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Dolphin Knowledge Base โ
โ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโ โ
โ โ MCP Bridge โโโโโบโ REST API โ โ
โ โ (TypeScript)โ โ (Python/FastAPI)โ โ
โ โโโโโโโโโโโโโโโ โโโโโโโโโโฌโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโ
โผ โผ
โโโโโโโโโโโ โโโโโโโโโโโโ
โLanceDB โ โ SQLite โ
โ(Vectors)โ โ(Metadata)โ
โโโโโโโโโโโ โโโโโโโโโโโโ
Key Features
- Language-Aware Chunking - Intelligent code parsing for Python, TypeScript, JavaScript, Markdown
- Semantic Search - OpenAI embeddings with LanceDB vector storage
- MCP Support - Native Model Context Protocol integration for Claude Desktop
- REST API - FastAPI server with search, retrieval, and metadata endpoints
- Unified CLI - Single
dolphincommand for all operations - Auto-Configuration - Smart config hierarchy (repo โ user โ defaults)
Environment Variables
Dolphin requires the following environment variables depending on your usage:
Required for OpenAI Embeddings
# Required when using OpenAI embeddings (recommended for production)
export OPENAI_API_KEY="sk-your-openai-api-key-here"
Getting Your OpenAI API Key
- Visit OpenAI Platform
- Sign up or log in to your account
- Navigate to API Keys
- Click "Create new secret key"
- Copy the key and set it as
OPENAI_API_KEY
Configuration
Dolphin uses a multi-level configuration system:
- Repo-specific (
./.dolphin/config.toml) - Per-repository chunking settings - User-global (
~/.dolphin/config.toml) - Auto-created on first use
Example Config
# ~/.dolphin/config.toml
default_embed_model = "large" # or "small"
[embedding]
provider = "openai"
batch_size = 100
[retrieval]
top_k = 8
score_cutoff = 0.15
Claude Desktop Integration (MCP)
Add to your claude_desktop_config.json:
{
"mcpServers": {
"dolphin": {
"command": "bun",
"args": ["run", "/path/to/dolphin/mcp-bridge/src/index.ts"],
"env": {
"OPENAI_API_KEY": "sk-..."
}
}
}
}
Start the server: dolphin serve
Available MCP tools: search_knowledge, fetch_chunk, fetch_lines, get_vector_store_info
REST API
# Start server
dolphin serve
# Search
curl -X POST http://127.0.0.1:7777/v1/search \
-H "Content-Type: application/json" \
-d '{"query": "authentication", "top_k": 5}'
# List repositories
curl http://127.0.0.1:7777/v1/repos
# Health check
curl http://127.0.0.1:7777/v1/health
Advanced Features
Cross-Encoder Reranking
Cross-encoder reranking improves search result relevance by re-scoring results with a more sophisticated ML model.
Performance Impact:
- โ +20-30% improvement in Mean Reciprocal Rank (MRR)
- โ Better first-result quality - more relevant top results
- โ ๏ธ 2-3x slower searches - cross-encoder is compute-intensive
- โ ๏ธ ~2GB install size - requires torch and sentence-transformers
Installation
# With uv (recommended)
uv pip install pb-dolphin[reranking]
# Or with pip
pip install pb-dolphin[reranking]
Configuration
Enable in your ~/.dolphin/config.toml:
[retrieval.reranking]
enabled = true # Enable cross-encoder reranking
model = "cross-encoder/ms-marco-MiniLM-L-6-v2" # HuggingFace model
device = "" # Auto-detect (CPU or CUDA if available)
batch_size = 32 # Higher = faster but more memory
candidate_multiplier = 4 # Rerank top_k ร multiplier candidates
score_threshold = 0.3 # Minimum relevance score (0-1)
Restart the API server to apply changes:
dolphin serve
When to Use Reranking
Enable when:
- Search quality is critical
- Willing to accept higher latency
- Have sufficient compute resources
- Precision matters more than speed
Don't enable when:
- Speed is priority
- Install size matters
- Basic vector search + hybrid search is sufficient
How It Works
Normal Search:
Query โ Embeddings โ Vector Search โ Top Results
With Reranking:
Query โ Embeddings โ Vector Search โ Fetch top_kร4 candidates
โ Cross-encoder re-scores each (query, result) pair
โ Re-sort by cross-encoder scores โ Top Results
The cross-encoder model evaluates each query-result pair directly, providing more accurate relevance scores than simple vector similarity.
Development Status
Current: Pre-alpha (0.1.x)
- โ Core indexing and search pipeline
- โ Language-aware chunking (Python, TS, JS, Markdown)
- โ REST API with MCP bridge
- โ ๏ธ Developmental stage
Upcoming:
- Performance optimization
- Production hardening
- Evaluation framework
- Expanded language support
Requirements
- Python โฅ3.12
- OpenAI API key (for embeddings)
- Bun (for MCP bridge)
- Git (for repository scanning)
Testing
# Run all tests
uv run pytest
# Run specific test suite
uv run pytest tests/unit/
uv run pytest tests/integration/
License
MIT License
Acknowledgments
Built with LanceDB, OpenAI, FastAPI, and Bun
โ ๏ธ Remember: This is experimental software under active development. Use at your own risk.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pb_dolphin-0.1.11.tar.gz.
File metadata
- Download URL: pb_dolphin-0.1.11.tar.gz
- Upload date:
- Size: 97.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b35e7b8269bc7c3048e31d6da54f8f94a80b6b9f53b66c003be1eb0ab2622f0f
|
|
| MD5 |
6bb508afb9ca9bfd7982261b9463c496
|
|
| BLAKE2b-256 |
8c025377dffbca6d380ca0968360e09a13b7c5826802affe72d6e4cb8355e463
|
File details
Details for the file pb_dolphin-0.1.11-py3-none-any.whl.
File metadata
- Download URL: pb_dolphin-0.1.11-py3-none-any.whl
- Upload date:
- Size: 127.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea826031f18655be9f28c2e565ec058c6c603f71801aefb8845f1b97da1ff4b4
|
|
| MD5 |
673e98b6d1874616ac09f9e6a0166841
|
|
| BLAKE2b-256 |
108a1e8f61790208cdd086b65fcded7f7617a38173be3728bc71e44d34ff664e
|