Skip to content

Commit 593bcda

Browse files
Update intel-qwen3-agent.md (#3121)
Fix typo in Qwen3-8B speculative decoding example where the streamer parameter was incorrectly spelled as 'reamer'.
1 parent 40204ae commit 593bcda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intel-qwen3-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ device = "GPU"
5151
model = LLMPipeline(target_path, device, draft_model=draft_model(draft_path, device))
5252

5353
streamer = lambda x: print(x, end="", flush=True)
54-
model.generate("What is speculative decoding and how does it improve inference speed?", max_new_tokens=100, reamer=streamer)
54+
model.generate("What is speculative decoding and how does it improve inference speed?", max_new_tokens=100, streamer=streamer)
5555
```
5656

5757
> [!NOTE]

0 commit comments

Comments
 (0)