Simple repository to review and test basic concepts of LangGraph agents.
The recommended way to create the Conda environment is using the provided environment.yml file:
conda env create -f environment.yml
conda activate agentsThis ensures you have the correct Python version and Poetry installed within the environment.
Once the conda environment is active and has Poetry, install the project dependencies:
poetry installYou can run the agent using the LangGraph development server:
langgraph devAlternatively, run the FastAPI application which exposes the agent via an API endpoint:
fastapi dev app/api.py