You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pypi release 0.0.9 [Fix: Windows install, github not set-up, and imorove examples] (#14)
Fixes:
- 🪟 Windows installs were running into decoding issues. Now decoding
scheme is explicitly stated. Fixes#8#11
- ✅ Removed the assert that checked for user_id. If a user_id is not
found, it assign a per session unique_id. Fixes#3
Improvements:
- 💼 Brief welcome message.
- 🚀 Better examples that demonstrate the power of gorilla
- 🦍 Logo in README
Copy file name to clipboardExpand all lines: README.md
+13-11Lines changed: 13 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
# Gorilla CLI
2
2
3
-
Gorilla CLI revolutionizes your command-line interactions with a user-centric tool that understands natural language commands. Simply state your objective, and Gorilla CLI will generate potential commands for execution. No more need to recall intricate command-line arguments!
Gorilla CLI powers your command-line interactions with a user-centric tool. Simply state your objective, and Gorilla CLI will generate potential commands for execution. Gorilla today supports ~1500 APIs, including Kubernetes, AWS, GCP, Azure, GitHub, Conda, Curl, Sed, and many more. No more recalling intricate CLI arguments! 🦍
4
6
5
7
Developed by UC Berkeley as a research prototype, Gorilla-CLI prioritizes user control and confidentiality:
6
8
- Commands are executed solely with your explicit approval.
@@ -16,27 +18,27 @@ pip install gorilla-cli
16
18
17
19
## Usage
18
20
19
-
Activate Gorilla CLI with a straightforward `gorilla` followed by your command in plain English.
21
+
Activate Gorilla CLI with `gorilla` followed by your task in plain English.
20
22
21
-
For instance, to list all files in the current directory, type:
23
+
For instance, to generate a file with 100 random characters, type:
22
24
23
25
```bash
24
-
$ gorilla I want to list all files in the current directory
26
+
$ gorilla generate 100 random characters into a file called test.txt
25
27
```
26
28
27
29
or if you prefer, you can use quotes to avoid issues with string parsing:
28
30
29
31
```bash
30
-
$ gorilla "I want to list all files in the current directory"
32
+
$ gorilla "generate 100 random characters into a file called test.txt"
31
33
```
32
34
33
-
Gorilla CLI will then generate potential commands. Simply use the arrow keys to navigate through the options, then press enter to execute the chosen command.
35
+
Gorilla CLI will then generate candidate commands. Use the arrow keys to navigate through the options, then press enter to execute the chosen command.
0 commit comments