summaryrefslogblamecommitdiffstats
path: root/g4f/.v1/gpt4free/forefront/README.md
blob: 7a59fe8e44f90c44854278d5fd673e726684bfce (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                                                        

 
                   

                                                      
                
                                                     


                              

                                           
         
 
  
### 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("")

```