Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.48 KB

File metadata and controls

49 lines (32 loc) · 1.48 KB

Building Agentic Systems with Generative AI

Building Agentic AI Systems, published by Packt

Create intelligent, autonomous AI agents, that can reason, plan, adapt, and execute.

Instructions to setup Environment

Running the Notebooks

You can run the notebooks in this repository in two ways:

Option 1: Google Colab

Each notebook can be opened directly in Google Colab by clicking on the "Open in Google Colab" badge in the notebook's header:

Open In Colab

This is the quickest way to get started as it requires no local setup.

Option 2: Local Jupyter Server

To run the notebooks locally, follow these steps:

  1. Clone the repository

    git clone https://github.com/PacktPublishing/Building-Agentic-AI-Systems.git agentic-systems
    cd agentic-systems
  2. Create a virtual environment

    python -m venv venv
    source venv/bin/activate  # On Windows: venv\Scripts\activate
  3. Install dependencies

    pip install -r requirements.txt
  4. Launch Jupyter Notebook

    jupyter notebook
  5. Navigate to the notebooks directory in the Jupyter interface and select the notebook you want to run.

Note: Some notebooks may require additional dependencies or environment variables. Check the notebook header for specific requirements.