├── .gitignore ├── README.md ├── app.py ├── requirements.txt ├── screenshot.png └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | **.history** 2 | **.vscode** -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpetimhaxhiu/agi-taskgenius-gpt/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpetimhaxhiu/agi-taskgenius-gpt/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpetimhaxhiu/agi-taskgenius-gpt/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpetimhaxhiu/agi-taskgenius-gpt/HEAD/screenshot.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpetimhaxhiu/agi-taskgenius-gpt/HEAD/templates/index.html --------------------------------------------------------------------------------