├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── app.py ├── data ├── _put_json_here_ └── secrets.template.toml ├── history.py ├── llms.py ├── pyproject.toml ├── static ├── activity.js ├── favicon.ico ├── index.html ├── screenshot.png ├── script.js └── style.css └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/app.py -------------------------------------------------------------------------------- /data/_put_json_here_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/secrets.template.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/data/secrets.template.toml -------------------------------------------------------------------------------- /history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/history.py -------------------------------------------------------------------------------- /llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/llms.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/pyproject.toml -------------------------------------------------------------------------------- /static/activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/static/activity.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/static/index.html -------------------------------------------------------------------------------- /static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/static/screenshot.png -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/static/script.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/static/style.css -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirableio/chat-history/HEAD/utils.py --------------------------------------------------------------------------------