forefront (gpt-4)
This commit is contained in:
11
testing/forefront_test.py
Normal file
11
testing/forefront_test.py
Normal file
@@ -0,0 +1,11 @@
|
||||
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 = '')
|
||||
Reference in New Issue
Block a user