abstractassistant 0.3.3__tar.gz → 0.3.5__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 (35) hide show
  1. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/CHANGELOG.md +21 -0
  2. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/PKG-INFO +3 -3
  3. abstractassistant-0.3.5/abstractassistant/ui/history_dialog.py +1026 -0
  4. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/ui/provider_manager.py +2 -2
  5. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/ui/qt_bubble.py +454 -29
  6. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant.egg-info/SOURCES.txt +0 -1
  7. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/docs/architecture.md +15 -2
  8. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/pyproject.toml +6 -3
  9. abstractassistant-0.3.3/abstractassistant/ui/history_dialog.py +0 -502
  10. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/ACKNOWLEDGMENTS.md +0 -0
  11. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/CONTRIBUTING.md +0 -0
  12. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/LICENSE +0 -0
  13. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/MANIFEST.in +0 -0
  14. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/README.md +0 -0
  15. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/__init__.py +0 -0
  16. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/app.py +0 -0
  17. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/cli.py +0 -0
  18. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/config.py +0 -0
  19. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/core/__init__.py +0 -0
  20. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/core/llm_manager.py +0 -0
  21. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/core/tts_manager.py +0 -0
  22. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/create_app_bundle.py +0 -0
  23. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/ui/__init__.py +0 -0
  24. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/ui/chat_bubble.py +0 -0
  25. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/ui/toast_manager.py +0 -0
  26. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/ui/toast_window.py +0 -0
  27. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/ui/tts_state_manager.py +0 -0
  28. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/ui/ui_styles.py +0 -0
  29. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/utils/__init__.py +0 -0
  30. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/utils/icon_generator.py +0 -0
  31. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/utils/markdown_renderer.py +0 -0
  32. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/abstractassistant/web_server.py +0 -0
  33. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/docs/getting-started.md +0 -0
  34. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/docs/installation.md +0 -0
  35. {abstractassistant-0.3.3 → abstractassistant-0.3.5}/setup.cfg +0 -0
@@ -2,6 +2,27 @@
2
2
 
3
3
  All notable changes to AbstractAssistant will be documented in this file.
4
4
 
5
+ ## [0.3.5] - 2026-01-07
6
+
7
+ ### Fixed
8
+ - **Packaging / installability**: narrowed the default `abstractcore[...]` dependency set to avoid GPU-only stacks (notably vLLM) being installed on macOS, which could break `assistant --help` due to transitive `datasets/pyarrow` incompatibilities.
9
+
10
+
11
+ ## [0.3.4] - 2025-10-27
12
+
13
+ ### Improved
14
+ - **Chat History Management**: Enhanced message deletion and history dialog handling
15
+ - Streamlined message deletion process with improved error handling
16
+ - Removed excessive debug output for cleaner user experience
17
+ - Enhanced widget management for better performance in history dialog
18
+ - Improved UI consistency during message operations
19
+ - Better error handling and widget lifecycle management
20
+
21
+ ### Fixed
22
+ - **Code Cleanup**: Removed debug print statements that cluttered console output
23
+ - Cleaner codebase with reduced unnecessary logging
24
+ - Maintained UI integrity during message deletions
25
+ - Enhanced performance through optimized widget management
5
26
 
6
27
  ## [0.3.3] - 2025-10-24
7
28
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: abstractassistant
3
- Version: 0.3.3
3
+ Version: 0.3.5
4
4
  Summary: A sleek (macOS) system tray application providing instant access to LLMs
5
5
  Author-email: Laurent-Philippe Albou <contact@abstractcore.ai>
6
6
  License-Expression: MIT
@@ -21,14 +21,14 @@ Classifier: Topic :: Desktop Environment
21
21
  Requires-Python: >=3.9
22
22
  Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
- Requires-Dist: abstractcore[all]>=2.5.0
24
+ Requires-Dist: abstractcore[anthropic,lmstudio,ollama,openai,tools]>=2.9.1
25
25
  Requires-Dist: pystray>=0.19.4
26
26
  Requires-Dist: Pillow>=10.0.0
27
27
  Requires-Dist: PyQt5>=5.15.0
28
28
  Requires-Dist: markdown>=3.5.0
29
29
  Requires-Dist: pygments>=2.16.0
30
30
  Requires-Dist: pymdown-extensions>=10.0
31
- Requires-Dist: abstractvoice>=0.5.1
31
+ Requires-Dist: abstractvoice>=0.5.2
32
32
  Requires-Dist: pyperclip>=1.8.2
33
33
  Requires-Dist: plyer>=2.1.0
34
34
  Requires-Dist: tomli>=2.0.0; python_version < "3.11"