A microservice to create agents and langgraph workflows
- Note: This service does not provide the LLM logic. This service will only create Agents with a set of logic provided to the service
- Create virtual environment
python3 -m venv venv
- Activate virtual environment
For windows:
.\venv\Scripts\activate
For Mac/Linux:
source venv/bin/activate
- Go into source directory:
cd src
- Run the following command:
uvicorn main:app --reload