Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
AvenCores committed Apr 25, 2023
1 parent 408110d commit d40f81a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ def clear():
while True:
youinput = input(colored("\n👨 You ", "yellow") + colored(">> ", "green"))
try:
response = quora.Completion.create(model = 'sage',
prompt = youinput,
token = 'AuYSfjZVc5eyAzrWjKmjFg%3D%3D')
response = quora.Completion.create(model = 'sage', prompt = youinput, token = 'AuYSfjZVc5eyAzrWjKmjFg%3D%3D')
output = response.completion.choices[0].text
print(colored("\n🤖 CHATGPT V4.0 ", "cyan") + colored(">> ", "green") + output)
except Exception as e:
Expand Down

0 comments on commit d40f81a

Please sign in to comment.