init commit
This commit is contained in:
commit
439c894b39
37 changed files with 18468 additions and 0 deletions
54
README.md
Normal file
54
README.md
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
# 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
|
||||
Loading…
Reference in a new issue