├── .gitignore ├── RAG_SaSS ├── README.md ├── app.py ├── create_embeddings.py ├── get_transcript.py ├── requirements.txt ├── transcripts.zip └── upsert_serverless.py ├── RAG_opensource ├── README.md ├── app.py ├── create_embeddings.py ├── get_transcript.py ├── insert_embeddings.py └── requirements.txt ├── RAG_web_search ├── README.md ├── app.py └── requirements.txt └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | -------------------------------------------------------------------------------- /RAG_SaSS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_SaSS/README.md -------------------------------------------------------------------------------- /RAG_SaSS/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_SaSS/app.py -------------------------------------------------------------------------------- /RAG_SaSS/create_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_SaSS/create_embeddings.py -------------------------------------------------------------------------------- /RAG_SaSS/get_transcript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_SaSS/get_transcript.py -------------------------------------------------------------------------------- /RAG_SaSS/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_SaSS/requirements.txt -------------------------------------------------------------------------------- /RAG_SaSS/transcripts.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_SaSS/transcripts.zip -------------------------------------------------------------------------------- /RAG_SaSS/upsert_serverless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_SaSS/upsert_serverless.py -------------------------------------------------------------------------------- /RAG_opensource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_opensource/README.md -------------------------------------------------------------------------------- /RAG_opensource/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_opensource/app.py -------------------------------------------------------------------------------- /RAG_opensource/create_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_opensource/create_embeddings.py -------------------------------------------------------------------------------- /RAG_opensource/get_transcript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_opensource/get_transcript.py -------------------------------------------------------------------------------- /RAG_opensource/insert_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_opensource/insert_embeddings.py -------------------------------------------------------------------------------- /RAG_opensource/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_opensource/requirements.txt -------------------------------------------------------------------------------- /RAG_web_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_web_search/README.md -------------------------------------------------------------------------------- /RAG_web_search/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_web_search/app.py -------------------------------------------------------------------------------- /RAG_web_search/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/RAG_web_search/requirements.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spara/RAG_step-by-step/HEAD/README.md --------------------------------------------------------------------------------