mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-23 09:10:13 +03:00
11 lines
328 B
Python
11 lines
328 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='')
|