summaryrefslogtreecommitdiffstats
path: root/forefront/README.md
blob: a2be81870535ea5725ddb3934fc3fc4c6cbd7bc5 (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
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("")
```