6
6
7
7
A simple Python code that connects to OpenAI's ChatGPT and executes the returned results.
8
8
9
+ ## Demo
10
+
11
+ ![ Demo] ( images/example.gif )
12
+
9
13
## Key Features 💡
10
14
11
15
- Interact with your computer using natural language
12
16
- Automatically executes the command from the response of ChatGPT
13
17
- Good for complex tasks like handling Git and extracting tar files
14
18
- No need to search StackOverflow for commands, AiShell has got you covered
15
19
16
- ### Simple Utility commands 🛠
17
-
18
- [ ![ utility] ( https://asciinema.org/a/556670.svg )] ( https://asciinema.org/a/556670?speed=5 )
19
-
20
- ### A powerful git assistant 💪🏻👨💻💻
21
-
22
- [ ![ git assistant] ( https://asciinema.org/a/556677.svg )] ( https://asciinema.org/a/556677?speed=5 )
23
-
24
20
## Installation 🔧
25
21
26
22
``` sh
@@ -30,7 +26,7 @@ pip install aishell
30
26
## Usage 📝
31
27
32
28
``` sh
33
- python -m aishell --help
29
+ aishell --help
34
30
```
35
31
36
32
## Prerequisites 📚
@@ -41,10 +37,23 @@ python -m aishell --help
41
37
42
38
## Getting Started 🚀
43
39
40
+ ### For those who want to use reverse-engineered ` ChatGPT `
41
+
42
+ 1 . Login on < https://chat.openai.com/ >
43
+ 1 . Get your 'accessToken` from < https://chat.openai.com/api/auth/session >
44
+ 1 . ` export CHATGPT_ACCESS_KEY=<your access token> `
45
+ 1 . Enjoy AiShell
46
+
47
+ ### For those who want to use ` GPT-3 `
48
+
44
49
1 . Create account on OpenAI
45
50
1 . Go to < https://platform.openai.com/account/api-keys > , Copy API key
46
51
1 . Set the API key as an environment variable ` OPENAI_API_KEY ` or inject it directly into the code by editing it.
47
- 1 . [ Install] ( #installation )
52
+ 1 . Enjoy AiShell
53
+
54
+ ### For those who want to use Official ChatGPT API ` gpt-3.5-turbo `
55
+
56
+ - Currently not supported, but soon will be supported!
48
57
49
58
## Contributions 💬
50
59
0 commit comments