ai-ebash 0.1.6__py3-none-any.whl → 0.1.8__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ai-ebash
3
- Version: 0.1.6
3
+ Version: 0.1.8
4
4
  Summary: Console utility for integrating artificial intelligence into a Linux terminal.
5
5
  Author: Andrey Bochkarev
6
6
  Author-email: andrey.bch.1976@gmail.com
@@ -6,9 +6,9 @@ aiebash/formatter_text.py,sha256=NRz_pCpakZ9k8477_4Gx1scDXrEbbOaOi-U7WRp6ZWo,847
6
6
  aiebash/llm_factory.py,sha256=SDG4mSStKtairW2FaExbX49vDXITt5LBvHIKJ72nJfk,718
7
7
  aiebash/llm_interface.py,sha256=LufTw-QvXkcQJMRON8RElmalKntk0YRUDHBEcjCDfaM,222
8
8
  aiebash/openai_client.py,sha256=94v86FCrAd1v9SgDRtrCu87iSCnq_o2Zz0iXQdnlWbQ,1264
9
- aiebash/settings.py,sha256=lD8qCEczEe5Fc4gFcqHqnEEmDko0lD6QEldOE68bOBE,1868
10
- ai_ebash-0.1.6.dist-info/METADATA,sha256=gwM4t6wafhhH9bB3hcqaVYk4SUJIUvl8tdBhEfrWTlk,2384
11
- ai_ebash-0.1.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
- ai_ebash-0.1.6.dist-info/entry_points.txt,sha256=bstvFHHX76KHqYpjM8FPoRVvNbQprST74CI30Mr5TIM,45
13
- ai_ebash-0.1.6.dist-info/top_level.txt,sha256=JJ-bWdhWlFCfCQGLhmqzN4_bNO0pfVPRsdbx8o9A9AA,8
14
- ai_ebash-0.1.6.dist-info/RECORD,,
9
+ aiebash/settings.py,sha256=n9B-RHWyjEf3WIB-zYibl0RmLPDeON8HV8CIgwb0qxs,1872
10
+ ai_ebash-0.1.8.dist-info/METADATA,sha256=LGhuYLQVCCJb8DVz7e6pEmMRLGeSmw4UOu6PAx-Pq54,2384
11
+ ai_ebash-0.1.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
+ ai_ebash-0.1.8.dist-info/entry_points.txt,sha256=bstvFHHX76KHqYpjM8FPoRVvNbQprST74CI30Mr5TIM,45
13
+ ai_ebash-0.1.8.dist-info/top_level.txt,sha256=JJ-bWdhWlFCfCQGLhmqzN4_bNO0pfVPRsdbx8o9A9AA,8
14
+ ai_ebash-0.1.8.dist-info/RECORD,,
aiebash/settings.py CHANGED
@@ -11,6 +11,8 @@ USER_CONFIG_PATH = Path(user_config_dir(APP_NAME)) / "config.ini"
11
11
  # Путь к дефолтному конфигу, который лежит рядом с этим файлом
12
12
  DEFAULT_CONFIG_PATH = Path(__file__).parent / "default_config.ini"
13
13
 
14
+
15
+
14
16
  # --- Логика инициализации ---
15
17
  # Если у пользователя нет config.ini, копируем ему дефолтный
16
18
  if not USER_CONFIG_PATH.exists():