Skip to content

Commit 6bdb1fa

Browse files
committed
Fix typo
1 parent 0ac2df3 commit 6bdb1fa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aishell/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env python
22

3-
from revChatGPT.Official import Chatbot
4-
53
import os
4+
65
import typer
6+
from revChatGPT.Official import Chatbot
77

88
API_KEY = os.environ.get('OPENAI_API_KEY') or ''
99

@@ -47,7 +47,7 @@ def make_prompt(requirements: str) -> str:
4747
def ask(text: str):
4848
question = make_prompt(text)
4949
response = ask_chatgpt(question)
50-
typer.echo(f'\033[3mexecuted: {response}\033[0m')
50+
typer.echo(f'\033[3mexecuting: {response}\033[0m')
5151
os.system(response)
5252

5353

0 commit comments

Comments
 (0)