ai-ebash 0.1.6__tar.gz → 0.1.8__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.
- ai_ebash-0.1.8/MANIFEST.in +1 -0
- {ai_ebash-0.1.6/src/ai_ebash.egg-info → ai_ebash-0.1.8}/PKG-INFO +1 -1
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/pyproject.toml +1 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/setup.cfg +2 -1
- {ai_ebash-0.1.6 → ai_ebash-0.1.8/src/ai_ebash.egg-info}/PKG-INFO +1 -1
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/aiebash/settings.py +2 -0
- ai_ebash-0.1.6/MANIFEST.in +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/README.md +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/ai_ebash.egg-info/SOURCES.txt +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/ai_ebash.egg-info/dependency_links.txt +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/ai_ebash.egg-info/entry_points.txt +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/ai_ebash.egg-info/requires.txt +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/ai_ebash.egg-info/top_level.txt +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/aiebash/__init__.py +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/aiebash/__main__.py +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/aiebash/api_client.py +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/aiebash/block_runner.py +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/aiebash/formatter_text.py +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/aiebash/llm_factory.py +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/aiebash/llm_interface.py +0 -0
- {ai_ebash-0.1.6 → ai_ebash-0.1.8}/src/aiebash/openai_client.py +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
include aiebash/default_config.ini
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[metadata]
|
2
2
|
name = ai-ebash
|
3
|
-
version = 0.1.
|
3
|
+
version = 0.1.8
|
4
4
|
author = Andrey Bochkarev
|
5
5
|
author_email = andrey.bch.1976@gmail.com
|
6
6
|
description = Console utility for integrating artificial intelligence into a Linux terminal.
|
@@ -9,6 +9,7 @@ long_description_content_type = text/markdown
|
|
9
9
|
license = MIT
|
10
10
|
|
11
11
|
[options]
|
12
|
+
include_package_data = True
|
12
13
|
packages = find:
|
13
14
|
package_dir =
|
14
15
|
=src
|
@@ -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():
|
ai_ebash-0.1.6/MANIFEST.in
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|