- All prototyping notebooks are in the prototypes directory.
- All final agents will live in in the src directory.
- Install
uvPackage Manager:pip install uv
To get startedfollow these steps:
-
Clone the repository:
git clone https://github.com/... cd ... -
Create a
.envfile:
Copy the .env.example file to .env and update the environment variables as needed:
cp .env.example .env- Run LangGraph Server:
a. Install uv package manager python pip install uv
b. Create Virtual Environment and activate it
uv venv
source .venv/bin/activatec. Install packages in pyproject.toml
uv rund. Run LangGraph Server
- Ensure you have docker engine running (i.e: Open Docker Desktop)
uv pip install langgraph-cli
uv run langgraph upIf you get any error in d step stop all containers, run docker system prune and try again.
https://github.com/panaversity/langgraph-agents-template.git-
Install Docker Desktop
-
Open Docker Desktop
-
Run Below Command to create Docker Image & also Container up
docker compose up Or if we want to run in detach mode ( Background )
docker compose up -d - Click Below Link to view your graph
- Simply Down Your Container
docker compose down- Then again up your container
docker compose up -d- It's reflect your local changes in Container & Graph
- in
configration.pyfile change the below 26 number line:
default="openai/gpt-4o",
To
default="google_genai/gemini-1.5-flash",