Skip to content

Commit

Permalink
fixing typo in python quick start example
Browse files Browse the repository at this point in the history
  • Loading branch information
jmansdorfer committed Jun 26, 2024
1 parent fce4642 commit ebbb484
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fern/docs/pages/quick_start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ messages = [
]

result = client.chat.completions.create(
"model": "Hermes-2-Pro-Llama-3-8B",
"messages": messages,
"max_tokens": 100
model="Hermes-2-Pro-Llama-3-8B",
messages=messages,
max_tokens=100
)

print(json.dumps(
Expand Down

0 comments on commit ebbb484

Please sign in to comment.