This tutorial guides you through running a basic agent from this repository in just a few steps. We’ll use the Summarization Agent as an example.
git clone https://github.com/your‑username/curated_llm_apps.git
cd curated_llm_appsOur starter agents live under the top‑level agents folder. For the summarisation example:
cd agents/summarization_agentpython3 -m venv .venv
source .venv/bin/activateEach example lists its optional dependencies in its README.md. For summarization, you may install transformers to run a local model:
pip install transformersIf you plan to use OpenAI’s API instead, install the OpenAI package and set your OPENAI_API_KEY environment variable.
python main.pyThe placeholder script will print a message indicating where to add your own code. Follow the suggestions in the example’s README.md to implement the desired functionality.
Use the helper script scripts/create_agent.py to generate additional agent skeletons. Refer to other examples in the advanced, teams, and rag folders for inspiration.