abstractassistant 0.2.6__py3-none-any.whl → 0.2.7__py3-none-any.whl

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.
@@ -14,7 +14,12 @@ def main():
14
14
  """Create macOS app bundle for AbstractAssistant."""
15
15
  try:
16
16
  # Import the app bundle generator
17
- from abstractassistant.setup_macos_app import MacOSAppBundleGenerator
17
+ try:
18
+ import setup_macos_app
19
+ MacOSAppBundleGenerator = setup_macos_app.MacOSAppBundleGenerator
20
+ except ImportError:
21
+ # Fallback: try importing from abstractassistant package
22
+ from abstractassistant.setup_macos_app import MacOSAppBundleGenerator
18
23
 
19
24
  # Find the package directory
20
25
  import abstractassistant
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: abstractassistant
3
- Version: 0.2.6
3
+ Version: 0.2.7
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
@@ -78,6 +78,12 @@ This will:
78
78
  - Create a macOS app bundle in `/Applications`
79
79
  - Add AbstractAssistant to your Dock for easy access
80
80
 
81
+ **Alternative**: After installation, create the app bundle manually:
82
+ ```bash
83
+ pip install abstractassistant
84
+ create-app-bundle
85
+ ```
86
+
81
87
  #### 🔧 Standard Installation
82
88
  ```bash
83
89
  # Install from PyPI
@@ -98,7 +104,7 @@ For detailed installation instructions including prerequisites and voice setup,
98
104
  # Launch the assistant
99
105
  assistant
100
106
 
101
- # Or create macOS app bundle after installation
107
+ # Create macOS app bundle after installation
102
108
  create-app-bundle
103
109
  ```
104
110
 
@@ -3,7 +3,7 @@ abstractassistant/__init__.py,sha256=homfqMDh6sX2nBROtk6-y72jnrStPph8gEOeT0OjKyU
3
3
  abstractassistant/app.py,sha256=-Nkgj1IruGhiuyMt7-EQPBwxXoeIykaO1FYKlS520zA,34032
4
4
  abstractassistant/cli.py,sha256=SQPxQCLjX-LOlhSEvG302D0AOyxlxo5QM2imxr9wxmc,4385
5
5
  abstractassistant/config.py,sha256=KodfPYTpHtavJyne-h-B-r3kbEt1uusSY8GknGLtDL8,5809
6
- abstractassistant/create_app_bundle.py,sha256=PrOKIaYMW-v3gAEPCxaS2FUkhCfVd6PRU99DxYEEcXs,1471
6
+ abstractassistant/create_app_bundle.py,sha256=LAZdp2C90ikMVd3KPdwNYBYUASbHpypOJIwvx6fQyXM,1698
7
7
  abstractassistant/web_server.py,sha256=_pqMzy13qfim9BMBqQJQifWyX7UQXFD_sZeiu4ZBt40,12816
8
8
  abstractassistant/core/__init__.py,sha256=TETStgToTe7QSsCZgRHDk2oSErlLJoeGN0sFg4Yx2_c,15
9
9
  abstractassistant/core/llm_manager.py,sha256=yIvFj0pSLeC22PsaD0a3I4PjylO5Qvju8P_1e9iyXAM,11376
@@ -20,9 +20,9 @@ abstractassistant/ui/ui_styles.py,sha256=VoGlrZI3YJzDKPv9LWz39W3XcFI4N952rkzXb8M
20
20
  abstractassistant/utils/__init__.py,sha256=7Q3BxyXETkt3tm5trhuLTyL8PoECOK0QiK-0KUVAR2Q,16
21
21
  abstractassistant/utils/icon_generator.py,sha256=MH3giercjE6Dh100EZ_8kw5WC0PVwd5F4inKfRDLp2w,10455
22
22
  abstractassistant/utils/markdown_renderer.py,sha256=sTn045glqxh5QU3LIuYp7zQpBIuwf5e3cWZzDz5i0Yw,12620
23
- abstractassistant-0.2.6.dist-info/licenses/LICENSE,sha256=QUjFNAE-0yOkW9-Rle2axkpkt9H7xiZ2VbN-VeONhxc,1106
24
- abstractassistant-0.2.6.dist-info/METADATA,sha256=7OmP5oqZ9ZPzCyTWGbRH-xCBmpr92q-jKnofEmC4u_8,11156
25
- abstractassistant-0.2.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
- abstractassistant-0.2.6.dist-info/entry_points.txt,sha256=MIzeCh0XG6MbhIzBHtkdEjmjxYBsQrGFevq8Y1L8Jkc,118
27
- abstractassistant-0.2.6.dist-info/top_level.txt,sha256=oEcSXZAqbflTfZRfF4dogUq6TC1Nqyplq4JgC0CZnLI,34
28
- abstractassistant-0.2.6.dist-info/RECORD,,
23
+ abstractassistant-0.2.7.dist-info/licenses/LICENSE,sha256=QUjFNAE-0yOkW9-Rle2axkpkt9H7xiZ2VbN-VeONhxc,1106
24
+ abstractassistant-0.2.7.dist-info/METADATA,sha256=oE3-3e4BiaeEFEYv6q7yHiUG45aAGnwcFHZ3SUhdH7A,11283
25
+ abstractassistant-0.2.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
+ abstractassistant-0.2.7.dist-info/entry_points.txt,sha256=MIzeCh0XG6MbhIzBHtkdEjmjxYBsQrGFevq8Y1L8Jkc,118
27
+ abstractassistant-0.2.7.dist-info/top_level.txt,sha256=oEcSXZAqbflTfZRfF4dogUq6TC1Nqyplq4JgC0CZnLI,34
28
+ abstractassistant-0.2.7.dist-info/RECORD,,