ai-ebash 0.1.8__tar.gz → 0.1.9__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.
@@ -0,0 +1 @@
1
+ include src/aiebash/default_config.ini
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ai-ebash
3
- Version: 0.1.8
3
+ Version: 0.1.9
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
@@ -2,3 +2,4 @@
2
2
  requires = ["setuptools>=61.0"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
+
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = ai-ebash
3
- version = 0.1.8
3
+ version = 0.1.9
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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ai-ebash
3
- Version: 0.1.8
3
+ Version: 0.1.9
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
@@ -12,6 +12,7 @@ src/aiebash/__init__.py
12
12
  src/aiebash/__main__.py
13
13
  src/aiebash/api_client.py
14
14
  src/aiebash/block_runner.py
15
+ src/aiebash/default_config.ini
15
16
  src/aiebash/formatter_text.py
16
17
  src/aiebash/llm_factory.py
17
18
  src/aiebash/llm_interface.py
@@ -0,0 +1,12 @@
1
+ [global]
2
+ #api_url = https://openai-proxy.andrey-bch-1976.workers.dev/v1/chat/completions
3
+ #api_key =
4
+ #model = gpt-4o-mini
5
+ context = Ты профессиональный системный администратор, помощник по Linux. Пользователь - новичок в Linux, помоги ему. Система Ubuntu, оболочка $SHELL. При ответе учитывай, что пользователь работает в терминале Bash.Отвечай всегда на русском языке. Ты разговариваешь с пользователем в терминале.
6
+ debug = False
7
+
8
+ [openai_over_proxy]
9
+ BACKEND=openai_over_proxy
10
+ MODEL=gpt-4o-mini
11
+ API_URL=https://openai-proxy.andrey-bch-1976.workers.dev/v1/chat/completions
12
+ API_KEY=
@@ -1 +0,0 @@
1
- include aiebash/default_config.ini
File without changes