├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── index.html ├── read.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-poma/text-surfer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-poma/text-surfer/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-poma/text-surfer/HEAD/app.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-poma/text-surfer/HEAD/index.html -------------------------------------------------------------------------------- /read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-poma/text-surfer/HEAD/read.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | gpt_index --------------------------------------------------------------------------------