Skip to content

Latest commit

 

History

History
67 lines (45 loc) · 1.49 KB

README.md

File metadata and controls

67 lines (45 loc) · 1.49 KB

Agno Cookbooks

Getting Started

The getting started guide walks through the basics of building Agents with Agno. Recipes build on each other, introducing new concepts and capabilities.

Agent Concepts

The concepts cookbook walks through the core concepts of Agno.

Examples

The examples cookbook contains real world examples of building agents with Agno.

Playground

The playground cookbook contains examples of interacting with agents using the Agno Agent UI.

Workflows

The workflows cookbook contains examples of building workflows with Agno.

Scripts

Just a place to store setup scripts like run_pgvector.sh etc

Setup

Create and activate a virtual environment

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

Install libraries

pip install -U openai agno  # And all other packages you might need

Export your keys

export OPENAI_API_KEY=***
export GOOGLE_API_KEY=***

Run a cookbook

python cookbook/.../example.py