├── .dockerignore ├── .env.example ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile.backend ├── LICENSE ├── README.md ├── compose.yaml ├── data ├── pitch_deck.md ├── playbook.md ├── the_pmarca_blog_archive.md └── vc_funding.md ├── docker ├── agent.py ├── main.py └── tools.py ├── environment.yml ├── frontend ├── Dockerfile ├── frontend.py └── requirements.txt ├── logo.png ├── scripts ├── agent.py ├── main.py └── tools.py ├── setup.ps1 ├── setup.sh ├── shell ├── conda_env.sh └── run.sh ├── start_services.ps1 ├── start_services.sh └── workflow.png /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | GROQ_API_KEY="gsk_***" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile.backend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/Dockerfile.backend -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/README.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/compose.yaml -------------------------------------------------------------------------------- /data/pitch_deck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/data/pitch_deck.md -------------------------------------------------------------------------------- /data/playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/data/playbook.md -------------------------------------------------------------------------------- /data/the_pmarca_blog_archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/data/the_pmarca_blog_archive.md -------------------------------------------------------------------------------- /data/vc_funding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/data/vc_funding.md -------------------------------------------------------------------------------- /docker/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/docker/agent.py -------------------------------------------------------------------------------- /docker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/docker/main.py -------------------------------------------------------------------------------- /docker/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/docker/tools.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/environment.yml -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/frontend/frontend.py -------------------------------------------------------------------------------- /frontend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/frontend/requirements.txt -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/logo.png -------------------------------------------------------------------------------- /scripts/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/scripts/agent.py -------------------------------------------------------------------------------- /scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/scripts/main.py -------------------------------------------------------------------------------- /scripts/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/scripts/tools.py -------------------------------------------------------------------------------- /setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/setup.ps1 -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/setup.sh -------------------------------------------------------------------------------- /shell/conda_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/shell/conda_env.sh -------------------------------------------------------------------------------- /shell/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/shell/run.sh -------------------------------------------------------------------------------- /start_services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/start_services.ps1 -------------------------------------------------------------------------------- /start_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/start_services.sh -------------------------------------------------------------------------------- /workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/ragcoon/HEAD/workflow.png --------------------------------------------------------------------------------