DeepSearch is an LLM-powered web search engine focused on deep web information retrieval.
- Clone the repository:
git clone https://github.com/HydeYYHH/DeepSearch cd DeepSearch - Setup Search engine
cd search-engine python -m venv .venv source .venv/bin/activate pip install -r requirements.txt
- Setup LLM agent
cd llm-agent python -m venv .venv source .venv/bin/activate pip install -r requirements.txt
- Setup Frontend
cd frontend npm install - Export environment variables
export GOOGLE_API_KEY=Your Google API Key - Run the application
cd search-engine source .venv/bin/activate python server/server.py
cd llm-agent source .venv/bin/activate python main.py
cd frontend npm run dev
docker compose up
