├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── agent.py ├── app.py ├── editor.py ├── index.html ├── prompts ├── __init__.py ├── notetaker.py ├── orchestrator.py └── programmer.py ├── requirements.txt └── start.sh /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordspline/DevOn/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordspline/DevOn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordspline/DevOn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordspline/DevOn/HEAD/README.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordspline/DevOn/HEAD/agent.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordspline/DevOn/HEAD/app.py -------------------------------------------------------------------------------- /editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordspline/DevOn/HEAD/editor.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordspline/DevOn/HEAD/index.html -------------------------------------------------------------------------------- /prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prompts/notetaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordspline/DevOn/HEAD/prompts/notetaker.py -------------------------------------------------------------------------------- /prompts/orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordspline/DevOn/HEAD/prompts/orchestrator.py -------------------------------------------------------------------------------- /prompts/programmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordspline/DevOn/HEAD/prompts/programmer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordspline/DevOn/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | env WHERE_EXECUTE="asdf" gradio app.py --------------------------------------------------------------------------------