summaryrefslogtreecommitdiffstats
path: root/gpt4free/forefront/README.md
blob: 3d0aac4d12aab0fbd69bc9567b45791cfb24e2f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
### Example: `forefront` (use like openai pypi package) <a name="example-forefront"></a>

```python

from gpt4free import forefront

# create an account
token = forefront.Account.create(logging=False)
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='')
print("")
```