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

```python
from gpt4free import forefront


# create an account
account_data = forefront.Account.create(logging=False)

# get a response
for response in forefront.StreamingCompletion.create(
    account_data=account_data,
    prompt='hello world',
    model='gpt-4'
):
    print(response.choices[0].text, end='')
print("")

```