Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def main():
api_key="-",
)

model = "Qwen/Qwen2.5-3B-Instruct"
model = client.models.list().data[0].id

print("Guided Choice Completion:")
print(guided_choice_completion(client, model))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def main():
}]

response = client.chat.completions.create(
model="meta-llama/Llama-3.1-8B-Instruct",
model=client.models.list().data[0].id,
messages=messages,
response_format={
"type":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
like DeepSeekR1. The thinking process will not be guided by the JSON
schema provided by the user. Only the final output will be structured.

To run this example, you need to start the vLLM server with the reasoning
To run this example, you need to start the vLLM server with the reasoning
parser:

```bash
Expand Down