├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── embeddings.py ├── models.py ├── prompt.md ├── qa.py ├── requirements.txt └── upload_data.py /.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmeyer/readwise-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmeyer/readwise-chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmeyer/readwise-chat/HEAD/README.md -------------------------------------------------------------------------------- /embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmeyer/readwise-chat/HEAD/embeddings.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmeyer/readwise-chat/HEAD/models.py -------------------------------------------------------------------------------- /prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmeyer/readwise-chat/HEAD/prompt.md -------------------------------------------------------------------------------- /qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmeyer/readwise-chat/HEAD/qa.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmeyer/readwise-chat/HEAD/requirements.txt -------------------------------------------------------------------------------- /upload_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmeyer/readwise-chat/HEAD/upload_data.py --------------------------------------------------------------------------------