├── .gitignore ├── README.md ├── app.py ├── faiss_index ├── index.faiss └── index.pkl ├── ingest.py ├── notion_chatbot_thumbnail_1.png ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvendrix/notion-chatbot-public/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvendrix/notion-chatbot-public/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvendrix/notion-chatbot-public/HEAD/app.py -------------------------------------------------------------------------------- /faiss_index/index.faiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvendrix/notion-chatbot-public/HEAD/faiss_index/index.faiss -------------------------------------------------------------------------------- /faiss_index/index.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvendrix/notion-chatbot-public/HEAD/faiss_index/index.pkl -------------------------------------------------------------------------------- /ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvendrix/notion-chatbot-public/HEAD/ingest.py -------------------------------------------------------------------------------- /notion_chatbot_thumbnail_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvendrix/notion-chatbot-public/HEAD/notion_chatbot_thumbnail_1.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openai 2 | langchain 3 | faiss-cpu 4 | tiktoken -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvendrix/notion-chatbot-public/HEAD/utils.py --------------------------------------------------------------------------------