Fullstack framework for building agent workflows
  • JavaScript 96%
  • Python 3.9%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2025-08-11 14:51:24 -04:00
src init commit 2025-08-11 14:51:24 -04:00
.gitignore init commit 2025-08-11 14:51:24 -04:00
conf.yml init commit 2025-08-11 14:51:24 -04:00
README.md init commit 2025-08-11 14:51:24 -04:00
requirements.txt init commit 2025-08-11 14:51:24 -04:00

Agent Framework

Fullstack framework tailored for agent workflows

Features include:

Document tools and models with new docstring protocol

	doc.py, crud.py, order.py

Auto dependency injection (no enforced repo structure)

	link.py, serve.py

UI template definition along side models

	order.py

General comments on design:

Requests come in at serve.py

They are routed to server depending on subdomain (route.py)

Server routes are collected on boot and available globally

Repo structure is flexible which is great for dev satisfaction

Develop

Creates a virtual environment

python3 -m venv env

Activates environment

source env/bin/activate

Install dependencies

pip install -r requirements.txt

Run

cd src/

python3 main.py

See it build various routes, runners, and handlers, as well as start the webserver