File size: 339 Bytes
a4b70d9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from g4f.client import Client
client = Client()
response = client.chat.completions.create(
model="gpt-4o",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "how does a court case get to the Supreme Court?"}
],
)
print(response.choices[0].message.content)
|