├── .gitignore ├── README.md ├── chatgptdb ├── __init__.py ├── action_log.py ├── auth.py ├── chatgpt.py ├── key_value_store.py └── messages.py ├── demo.py ├── poem_demo.py ├── poetry.lock ├── pyproject.toml └── static ├── screenshot.png └── token.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/README.md -------------------------------------------------------------------------------- /chatgptdb/__init__.py: -------------------------------------------------------------------------------- 1 | from .chatgpt import * -------------------------------------------------------------------------------- /chatgptdb/action_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/chatgptdb/action_log.py -------------------------------------------------------------------------------- /chatgptdb/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/chatgptdb/auth.py -------------------------------------------------------------------------------- /chatgptdb/chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/chatgptdb/chatgpt.py -------------------------------------------------------------------------------- /chatgptdb/key_value_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/chatgptdb/key_value_store.py -------------------------------------------------------------------------------- /chatgptdb/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/chatgptdb/messages.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/demo.py -------------------------------------------------------------------------------- /poem_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/poem_demo.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/pyproject.toml -------------------------------------------------------------------------------- /static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/static/screenshot.png -------------------------------------------------------------------------------- /static/token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/chatdb/HEAD/static/token.png --------------------------------------------------------------------------------