Quick Start Guide
Get up and running with Deep Research in minutes
1
Get Your API Keys
Venice.ai API Key
- Visit Venice.ai
- Sign up for an account
- Navigate to API settings
- Generate a new API key
Brave Search API Key
- Go to Brave Search API
- Create a developer account
- Visit API Keys section
- Generate a new API key
2
Clone & Configure
bash
# Clone the repository
git clone https://github.com/georgeglarson/deep-research-privacy.git
cd deep-research-privacy
# Copy example config
cp .env.example .env
Edit .env with your API keys:
env
VENICE_API_KEY=your_venice_api_key_here
BRAVE_API_KEY=your_brave_search_api_key_here
3
Choose Your Setup
Option 1: Direct Node.js
bash
# Install dependencies
npm install
# Start the application
npm start
Option 2: Docker Container
bash
# Run with Docker Compose
docker-compose up