summaryrefslogtreecommitdiffstats
path: root/gpt4free/forefront/README.md
blob: 35ba9897ab9b1f389302866b4fca0ecfc9afee4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
### 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("")
```