├── .env-example ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── docker-compose.yml └── requirements.txt /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas9400/SearXNG-WebSearch-AI/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas9400/SearXNG-WebSearch-AI/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas9400/SearXNG-WebSearch-AI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas9400/SearXNG-WebSearch-AI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas9400/SearXNG-WebSearch-AI/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas9400/SearXNG-WebSearch-AI/HEAD/app.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas9400/SearXNG-WebSearch-AI/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shreyas9400/SearXNG-WebSearch-AI/HEAD/requirements.txt --------------------------------------------------------------------------------