autosh 0.0.8__tar.gz → 0.0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: autosh
3
- Version: 0.0.8
3
+ Version: 0.0.9
4
4
  Summary: The AI-powered, noob-friendly interactive shell
5
5
  Author-email: Wenyu Zhao <wenyuzhaox@gmail.com>
6
6
  License-Expression: MIT
@@ -10,7 +10,7 @@ Requires-Python: >=3.12
10
10
  Requires-Dist: agentia>=0.0.8
11
11
  Requires-Dist: asyncio>=3.4.3
12
12
  Requires-Dist: markdownify>=1.1.0
13
- Requires-Dist: neongrid>=0.0.2
13
+ Requires-Dist: neongrid>=0.0.3
14
14
  Requires-Dist: prompt-toolkit>=3.0.51
15
15
  Requires-Dist: pydantic>=2.11.3
16
16
  Requires-Dist: python-dotenv>=1.1.0
@@ -22,6 +22,8 @@ Description-Content-Type: text/markdown
22
22
 
23
23
  # `autosh` - The AI-powered, noob-friendly interactive shell
24
24
 
25
+ ![recording](recording.gif) <!-- https://ezgif.com/video-to-gif -->
26
+
25
27
  # Getting Started
26
28
 
27
29
  ## Install
@@ -1,5 +1,7 @@
1
1
  # `autosh` - The AI-powered, noob-friendly interactive shell
2
2
 
3
+ ![recording](recording.gif) <!-- https://ezgif.com/video-to-gif -->
4
+
3
5
  # Getting Started
4
6
 
5
7
  ## Install
@@ -40,7 +40,7 @@ class Config(BaseModel):
40
40
  description="The banner for the REPL.",
41
41
  )
42
42
  repl_prompt: str = Field(
43
- default="[bold on cyan]{short_cwd}[/bold on cyan][cyan]\ue0b0[/cyan] ",
43
+ default="{short_cwd}> ",
44
44
  description="The prompt for the REPL user input.",
45
45
  )
46
46
 
@@ -211,8 +211,9 @@ class Session:
211
211
  print()
212
212
  first = False
213
213
  input_prompt = self.__get_input_prompt()
214
- rich.print(input_prompt, end="", flush=True)
215
- prompt = await ng.input("", sync=False, persist="/tmp/autosh-history")
214
+ prompt = await ng.input(
215
+ input_prompt, sync=False, persist="/tmp/autosh-history"
216
+ )
216
217
  prompt = prompt.strip()
217
218
  if prompt in ["exit", "quit"]:
218
219
  break
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "autosh"
3
- version = "0.0.8"
3
+ version = "0.0.9"
4
4
  description = "The AI-powered, noob-friendly interactive shell"
5
5
  authors = [{ name = "Wenyu Zhao", email = "wenyuzhaox@gmail.com" }]
6
6
  requires-python = ">=3.12"
@@ -29,7 +29,7 @@ dependencies = [
29
29
  "tavily-python>=0.5.4",
30
30
  "typer>=0.12.5",
31
31
  "tzlocal>=5.3.1",
32
- "neongrid>=0.0.2",
32
+ "neongrid>=0.0.3",
33
33
  "agentia>=0.0.8",
34
34
  ]
35
35
 
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