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:
parent
25428d58d5
commit
51697d3216
1 changed files with 3 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
import forefront
|
import forefront
|
||||||
|
|
||||||
# create an account
|
# create an account
|
||||||
token = forefront.Account.create(logging=True)
|
token = forefront.Account.create(logging=False)
|
||||||
print(token)
|
print(token)
|
||||||
|
|
||||||
# get a response
|
# get a response
|
||||||
|
@ -12,4 +12,5 @@ for response in forefront.StreamingCompletion.create(token = token,
|
||||||
prompt = 'hello world', model='gpt-4'):
|
prompt = 'hello world', model='gpt-4'):
|
||||||
|
|
||||||
print(response.completion.choices[0].text, end = '')
|
print(response.completion.choices[0].text, end = '')
|
||||||
```
|
print("")
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue