This repository contains a collection of cookbooks to show you how to build LLM applications using LlamaCloud to help manage your data pipelines, and LlamaIndex as the core orchestration framework.
examples/getting_started.ipynb
) and paste the API key into the first cell block that reads os.environ["PLATFORM_API_KEY"] = "..."
index_name
and project_name
from the deployed index into the LlamaCloudIndex
initialization in the notebook.That should get you started! You should now be able to create an e2e pipeline with a LlamaCloud pipeline as the backend.
Here's some commands for installing the Python dependencies & running Jupyter.
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
jupyter lab
Notebooks are in examples
.
Note: if you encounter package issues when running notebook examples, please rm -rf .venv
and repeat the above steps again.