Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejwitowski committed Jan 3, 2025
1 parent 2572197 commit 0f95d10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ import sentience
from openai import OpenAI

client = OpenAI(
base_url="<https://api.galadriel.com/v1/verified>",
base_url="https://api.galadriel.com/v1/verified",
api_key="Bearer GALADRIEL_API_KEY",
)

completion = client.chat.completions.create(
model="gpt-4o", // also works with finetuned OpenAI models
model="gpt-4o",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello!"},
Expand Down

0 comments on commit 0f95d10

Please sign in to comment.