chat-console 0.2.0__tar.gz → 0.2.0.dev1__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.
Files changed (28) hide show
  1. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/PKG-INFO +1 -1
  2. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/chat_console.egg-info/PKG-INFO +1 -1
  3. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/setup.py +1 -1
  4. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/LICENSE +0 -0
  5. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/README.md +0 -0
  6. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/__init__.py +0 -0
  7. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/api/__init__.py +0 -0
  8. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/api/anthropic.py +0 -0
  9. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/api/base.py +0 -0
  10. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/api/ollama.py +0 -0
  11. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/api/openai.py +0 -0
  12. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/config.py +0 -0
  13. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/database.py +0 -0
  14. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/main.py +0 -0
  15. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/models.py +0 -0
  16. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/ui/__init__.py +0 -0
  17. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/ui/chat_interface.py +0 -0
  18. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/ui/chat_list.py +0 -0
  19. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/ui/model_selector.py +0 -0
  20. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/ui/search.py +0 -0
  21. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/ui/styles.py +0 -0
  22. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/app/utils.py +0 -0
  23. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/chat_console.egg-info/SOURCES.txt +0 -0
  24. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/chat_console.egg-info/dependency_links.txt +0 -0
  25. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/chat_console.egg-info/entry_points.txt +0 -0
  26. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/chat_console.egg-info/requires.txt +0 -0
  27. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/chat_console.egg-info/top_level.txt +0 -0
  28. {chat_console-0.2.0 → chat_console-0.2.0.dev1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chat-console
3
- Version: 0.2.0
3
+ Version: 0.2.0.dev1
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chat-console
3
- Version: 0.2.0
3
+ Version: 0.2.0.dev1
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
@@ -14,7 +14,7 @@ with open(os.path.join("app", "__init__.py"), "r", encoding="utf-8") as f:
14
14
 
15
15
  setup(
16
16
  name="chat-console",
17
- version="0.2.0",
17
+ version="0.2.0.dev1",
18
18
  author="Johnathan Greenaway",
19
19
  author_email="john@fimbriata.dev",
20
20
  description="A command-line interface for chatting with LLMs, storing chats and (future) rag interactions",
File without changes