Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tristandevs authored Dec 2, 2024
1 parent 96e2ff5 commit 451ab16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ from shuttleai import ShuttleAI
shuttleai = ShuttleAI()

response = shuttleai.chat.completions.create(
model="shuttle-2.5",
model="shuttle-3",
messages=[{"role": "user", "content": "What day is today?"}],
internet=True
internet=False
)

print(chunk.choices[0].message.content)
Expand All @@ -63,7 +63,7 @@ async def main():
shuttleai = AsyncShuttleAI()

response = await shuttleai.chat.completions.create(
model="shuttle-2.5",
model="shuttle-3",
messages=[{"role": "user", "content": "Imagine an AI like no other, its name is ShuttleAI."}],
)

Expand Down

0 comments on commit 451ab16

Please sign in to comment.