chat-console 0.4.6__tar.gz → 0.4.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {chat_console-0.4.6 → chat_console-0.4.9}/PKG-INFO +1 -1
- {chat_console-0.4.6 → chat_console-0.4.9}/app/__init__.py +1 -1
- chat_console-0.4.9/app/console_chat.py +1751 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/chat_console.egg-info/PKG-INFO +1 -1
- chat_console-0.4.6/app/console_chat.py +0 -816
- {chat_console-0.4.6 → chat_console-0.4.9}/LICENSE +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/README.md +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/api/__init__.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/api/anthropic.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/api/base.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/api/ollama.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/api/openai.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/config.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/console_main.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/console_utils.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/database.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/main.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/models.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/ui/__init__.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/ui/borders.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/ui/chat_interface.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/ui/chat_list.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/ui/model_browser.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/ui/model_selector.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/ui/search.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/ui/styles.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/app/utils.py +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/chat_console.egg-info/SOURCES.txt +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/chat_console.egg-info/dependency_links.txt +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/chat_console.egg-info/entry_points.txt +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/chat_console.egg-info/requires.txt +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/chat_console.egg-info/top_level.txt +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/setup.cfg +0 -0
- {chat_console-0.4.6 → chat_console-0.4.9}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: chat-console
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.9
|
4
4
|
Summary: A command-line interface for chatting with LLMs, storing chats and (future) rag interactions
|
5
5
|
Home-page: https://github.com/wazacraftrfid/chat-console
|
6
6
|
Author: Johnathan Greenaway
|