https://github.com/stuartleeks/autogen-explorations
This is a repo for personal explorations of autogen - it's not intended to be useful to anyone other than me. If you do find it useful, that's a nice bonus!
https://github.com/stuartleeks/autogen-explorations
Last synced: 10 months ago
JSON representation
This is a repo for personal explorations of autogen - it's not intended to be useful to anyone other than me. If you do find it useful, that's a nice bonus!
- Host: GitHub
- URL: https://github.com/stuartleeks/autogen-explorations
- Owner: stuartleeks
- License: mit
- Created: 2025-03-06T13:46:15.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-25T09:09:04.000Z (about 1 year ago)
- Last Synced: 2025-07-12T02:03:38.567Z (11 months ago)
- Language: Python
- Size: 319 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# autogen explorations
This is a repo for personal explorations of autogen - it's not intended to be useful to anyone other than me. If you do find it useful, that's a nice bonus!
## random notes to sort
```bash
# install dependencies
poetry install
# TODO - add this to .bashrc?
eval $(poetry env activate)
```
```bash
# compile ts
(cd app_web/ts && tsc --watch)
# compile scss
cd app_web/scss
sass index.scss:../css/index.css # or sass --watch index.scss:../css/index.css
```