1
0
Fork 0

Updated README.md

There is no need for logging as it takes so much space of terminal window. Also, added a print statement to add a line at the end of the Bot's response.
This commit is contained in:
naa 2023-04-28 00:10:34 -04:00 committed by GitHub
parent 25428d58d5
commit 51697d3216
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@
import forefront
# create an account
token = forefront.Account.create(logging=True)
token = forefront.Account.create(logging=False)
print(token)
# get a response
@ -12,4 +12,5 @@ for response in forefront.StreamingCompletion.create(token = token,
prompt = 'hello world', model='gpt-4'):
print(response.completion.choices[0].text, end = '')
```
print("")
```