├── .gitignore ├── Pipfile ├── README.md ├── UI.py ├── alpaca_turbo.py ├── api.py ├── bin ├── linux ├── mac └── win.exe ├── example_use.py ├── interact.py ├── prompts.json ├── prompts.py ├── requirements.txt ├── templates └── index.html ├── webui.bat └── webui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/.gitignore -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/README.md -------------------------------------------------------------------------------- /UI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/UI.py -------------------------------------------------------------------------------- /alpaca_turbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/alpaca_turbo.py -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/api.py -------------------------------------------------------------------------------- /bin/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/bin/linux -------------------------------------------------------------------------------- /bin/mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/bin/mac -------------------------------------------------------------------------------- /bin/win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/bin/win.exe -------------------------------------------------------------------------------- /example_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/example_use.py -------------------------------------------------------------------------------- /interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/interact.py -------------------------------------------------------------------------------- /prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/prompts.json -------------------------------------------------------------------------------- /prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gradio==3.22.1 2 | rich 3 | pexpect 4 | psutil 5 | fastapi 6 | uvicorn 7 | jinja2 -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/templates/index.html -------------------------------------------------------------------------------- /webui.bat: -------------------------------------------------------------------------------- 1 | python3 webui.py 2 | -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderatallah/Alpaca-Turbo/HEAD/webui.py --------------------------------------------------------------------------------