diff --git a/bootstraprag/cli.py b/bootstraprag/cli.py index 4bb7701..9dfc4da 100644 --- a/bootstraprag/cli.py +++ b/bootstraprag/cli.py @@ -35,6 +35,7 @@ def create(project_name, framework, template, observability): 'rag-with-flare', 'rag-with-self-correction', 'rag-with-controllable-agents', + 'rag-with-llama-parse', 'llama-deploy-with-simplemq', 'llama-deploy-with-rabbitmq', 'llama-deploy-with-kafka' diff --git a/bootstraprag/templates/llamaindex/rag_with_llama_parse/readme.md b/bootstraprag/templates/llamaindex/rag_with_llama_parse/readme.md new file mode 100644 index 0000000..91efdb0 --- /dev/null +++ b/bootstraprag/templates/llamaindex/rag_with_llama_parse/readme.md @@ -0,0 +1,10 @@ +## Llama-Parse RAG + +create a readme.md file markdown all in one shot with below details + +1. install the project using `pip install bootstrap-rag` +2. run the bootstrap-rag using `bootstraprag create ` +3. select llamaindex +4. select rag-with-llama-parse +5. change the details accordingly in `.env` example DB_URL, DB_PASSWORD, LLAMA_CLOUD api key etc. +6. run `python main.py` \ No newline at end of file diff --git a/setup.py b/setup.py index 46f10d3..bdedc5c 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='bootstrap-rag', - version='0.0.9', + version='0.0.10', long_description=long_description, long_description_content_type="text/markdown", packages=find_packages(),