summaryrefslogtreecommitdiffstats
path: root/gpt4free/forefront/README.md
blob: 887097ec8c6bdc8b7ad0f82188886788cfc1accc (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.choices[0].text, end='')
print("")
```