pull/934/head
Tekky 8 months ago committed by GitHub
parent 6c2e3cc53c
commit 4b9504dbcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -133,6 +133,7 @@ docker compose down
### The `g4f` Package
#### ChatCompletion
```py
import g4f
@ -171,7 +172,25 @@ response = g4f.ChatCompletion.create(
for message in response:
print(message)
```
##### Completion
```py
import g4f
allowed_models = [
'code-davinci-002',
'text-ada-001',
'text-babbage-001',
'text-curie-001',
'text-davinci-002',
'text-davinci-003'
]
response = g4f.Completion.create(
model = 'text-davinci-003',
prompt = 'say this is a test')
print(response)
```
##### Providers:
```py

Loading…
Cancel
Save