Environment Setup

Let’s get your environment setup for the hackathon. Here are the steps:

  1. Create a virtual environment
  2. Install libraries
  3. Export your API keys

Create a virtual environment

You can use python3 -m venv or uv to create a virtual environment.

python3 -m venv .venv
source .venv/bin/activate

Install libraries

Install the agno python package along with the models and tools you want to use.

pip install -U agno openai

Export your API keys

Export the API keys for the models and tools you want to use.

export OPENAI_API_KEY=***

Next