added main module for accessing all services

This commit is contained in:
Raju Komati
2023-04-28 00:40:43 +05:30
parent 25428d58d5
commit 920fe19608
63 changed files with 511 additions and 443 deletions

View File

@@ -7,7 +7,5 @@ print('token', token)
sleep(2)
for response in quora.StreamingCompletion.create(model='gpt-3.5-turbo',
prompt='hello world',
token=token):
print(response.completion.choices[0].text, end="", flush=True)
for response in quora.StreamingCompletion.create(model='ChatGPT', prompt='hello world', token=token):
print(response.text, flush=True)