├── .env ├── LICENSE ├── README.md ├── chatbot.py ├── requirements.txt └── utils.py /.env: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY='' 2 | ACTIVELOOP_TOKEN='' -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priya-dwivedi/chat-with-code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priya-dwivedi/chat-with-code/HEAD/README.md -------------------------------------------------------------------------------- /chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priya-dwivedi/chat-with-code/HEAD/chatbot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priya-dwivedi/chat-with-code/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priya-dwivedi/chat-with-code/HEAD/utils.py --------------------------------------------------------------------------------