├── README.md ├── data └── example.txt ├── requirements.txt ├── server.py ├── static ├── script.js └── style.css └── templates ├── folder_results.html ├── home.html └── results.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmix/llama-index-flask-demo/HEAD/README.md -------------------------------------------------------------------------------- /data/example.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | docx2txt==0.8 2 | Flask==2.2.3 3 | llama_index==0.4.15 4 | -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmix/llama-index-flask-demo/HEAD/server.py -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmix/llama-index-flask-demo/HEAD/static/script.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmix/llama-index-flask-demo/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/folder_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmix/llama-index-flask-demo/HEAD/templates/folder_results.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmix/llama-index-flask-demo/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmix/llama-index-flask-demo/HEAD/templates/results.html --------------------------------------------------------------------------------