mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-26 12:41:56 +03:00
11 lines
289 B
Python
11 lines
289 B
Python
|
import forefront
|
||
|
|
||
|
# create an account
|
||
|
token = forefront.Account.create(logging=True)
|
||
|
print(token)
|
||
|
|
||
|
# get a response
|
||
|
for response in forefront.StreamingCompletion.create(token = token,
|
||
|
prompt = 'hello world', model='gpt-4'):
|
||
|
|
||
|
print(response.completion.choices[0].text, end = '')
|