Skip to content

AsyncFuncAI/rabbitholes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

15 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

🐰 Open Source RabbitHole - Knowledge Explorer

Deploy on Railway

πŸš€ Quick Deploy

Railway Deployment

  1. Click the "Deploy on Railway" button above
  2. Set up your environment variables in Railway:
    TAVILY_API_KEY=your_tavily_api_key
    GOOGLE_AI_API_KEY=your_google_ai_api_key
    
  3. Railway will automatically detect the Dockerfile and deploy your application

πŸ› οΈ Local Development

Prerequisites

  • Node.js 18 or higher
  • npm or yarn
  • Docker (optional)

Setup

  1. Clone the repository:
git clone https://github.com/yourusername/rabbitholes.git
cd rabbitholes
  1. Install dependencies:
npm install
  1. Create environment files:

For backend (backend/.env):

PORT=3000
TAVILY_API_KEY=your_tavily_api_key
GOOGLE_AI_API_KEY=your_google_ai_api_key

For frontend (frontend/.env.development):

REACT_APP_API_URL=http://localhost:3000/api
  1. Start development servers:
# Start both frontend and backend in development mode
npm run dev

# Or start them separately
npm run frontend:dev
npm run backend:dev

🐳 Docker Development

  1. Build the Docker image:
docker build -t rabbitholes .
  1. Run the container:
docker run -p 3000:3000 \
  -e TAVILY_API_KEY=your_tavily_api_key \
  -e GOOGLE_AI_API_KEY=your_google_ai_api_key \
  rabbitholes

Or using docker-compose:

docker-compose up

πŸ“¦ Project Structure

rabbitholes/
β”œβ”€β”€ frontend/              # React frontend
β”‚   β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ public/
β”‚   └── package.json
β”œβ”€β”€ backend/              # Express backend
β”‚   β”œβ”€β”€ src/
β”‚   └── package.json
β”œβ”€β”€ Dockerfile           # Production Dockerfile
β”œβ”€β”€ docker-compose.yml   # Docker compose configuration
└── package.json        # Root package.json for workspace

πŸ”‘ Environment Variables

Backend Variables

  • PORT - Server port (default: 3000)
  • TAVILY_API_KEY - Your Tavily API key
  • GOOGLE_AI_API_KEY - Your Google AI API key

Frontend Variables

πŸ“ License

MIT

Open RabbitHoles 🐰

"Buy Me A Coffee"

Introducing Open RabbitHoles - an open source implementation inspired by the original RabbitHoles app, but with our own twist. Dive deep into the rabbit holes without the premium price tag. This tool helps you dive deep into any topics, discover unexpected connections, and visualize your research journey in an interactive mind map.

Built with React, Node.js, and powered by a combination of Tavily and Google AI, this implementation offers a unique approach to mind map style exploration and knowledge mapping.

Screenshots πŸ“Έ

Main Interface The main interface showing the "SEEK KNOWLEDGE" header and search functionality

Consciousness Exploration An example exploration map showing topics around cosmic consciousness, panpsychism, and quantum entanglement

Da Vinci Mysteries Exploring connections between Da Vinci's work and scientific mysteries

Why Open RabbitHoles? πŸ€”

  • πŸ†“ Free and open source alternative to premium research tools
  • πŸ”„ Unique implementation combining multiple AI providers for better results
  • 🎯 Custom-built visualization algorithms for knowledge mapping
  • πŸš€ Enhanced with Tavily's search capabilities
  • πŸ’‘ Powered by Google Gemini for deeper insights

Features πŸš€

  • Interactive mind-map style exploration
  • AI-powered content generation and connections
  • Beautiful, fluid UI with React Flow
  • Real-time topic exploration and visualization
  • Seamless backend integration with OpenAI

Tech Stack πŸ’»

Frontend

  • React
  • TypeScript
  • React Flow
  • Tailwind CSS
  • Dagre (for graph layouts)

Backend

  • Node.js
  • Express
  • TypeScript
  • OpenAI API integration

Architecture πŸ—οΈ

Potential production architecture for the project.

graph TD
    subgraph "Frontend Layer"
        UI[React UI]
        RF[React Flow Visualization]
        Store[State Management]
        UI --> RF
        UI <--> Store
        RF <--> Store
    end

    subgraph "Backend Core"
        direction TB
        API[Express API Gateway]
        Router[Dynamic Route Handler]
        Cache[In-Memory Response Cache]
        QP[Query Processor]
        CO[Conversation Orchestrator]
        
        API --> Router
        Router --> QP
        QP <--> Cache
        QP --> CO
    end

    subgraph "AI Service Layer"
        direction TB
        TO[Topic Orchestrator]
        subgraph "Search Services"
            TS[Tavily Search Engine]
            TC[Topic Contextualizer]
        end
        
        subgraph "AI Processing"
            GE[Gemini Engine]
            PP[Prompt Processor]
            KM[Knowledge Mapper]
        end
    end

    subgraph "Data Flow"
        Store <--> API
        Router <--> TO
        TO <--> TS
        TO <--> TC
        CO <--> PP
        PP <--> GE
        GE <--> KM
        KM --> TC
    end

    style Frontend Layer fill:#e1f5fe,stroke:#01579b
    style Backend Core fill:#e8f5e9,stroke:#2e7d32
    style AI Service Layer fill:#fce4ec,stroke:#c2185b
    style Data Flow fill:#fff3e0,stroke:#ef6c00
Loading

Getting Started 🌟

Prerequisites

  • Node.js (v14 or higher)
  • npm or yarn
  • OpenAI API key

Installation

  1. Clone the repository
git clone https://github.com/AsyncFuncAI/rabbitholes.git
cd rabbitholes
  1. Install dependencies
# Install root dependencies
npm install

# Install frontend dependencies
cd frontend
npm install

# Install backend dependencies
cd ../backend
npm install
  1. Set up environment variables
# In backend/.env
PORT=3000
TAVILY_API_KEY= your_tavily_api_key
GOOGLE_AI_API_KEY= your_google_api_key
  1. Start the development servers
# Start backend (from backend directory)
npm run dev

# Start frontend (from frontend directory)
npm start

Usage 🎯

  1. Open your browser and navigate to http://localhost:3001
  2. Enter a topic you want to explore in the search bar
  3. Watch as the AI generates connections and builds your exploration map
  4. Click on nodes to dive deeper into subtopics
  5. Save and share your exploration paths

Contributing 🀝

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License πŸ“

This project is licensed under the MIT License - see the LICENSE file for details.

Credits πŸ™

This project is powered by Dojoma AI. Special thanks to team from Dojoma AI for contributing to this project.


Built with ❀️ + πŸ‡ΊπŸ‡Έ