forked from EricLBuehler/mistral.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstreaming.py
More file actions
25 lines (23 loc) · 674 Bytes
/
streaming.py
File metadata and controls
25 lines (23 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from mistralrs import Runner, Which, ChatCompletionRequest
runner = Runner(
which=Which.GGUF(
tok_model_id="Qwen/Qwen3-0.6B",
quantized_model_id="unsloth/Qwen3-0.6B-GGUF",
quantized_filename="Qwen3-0.6B-Q4_K_M.gguf",
)
)
res = runner.send_chat_completion_request(
ChatCompletionRequest(
model="default",
messages=[
{"role": "user", "content": "Tell me a story about the Rust type system."}
],
max_tokens=256,
presence_penalty=1.0,
top_p=0.1,
temperature=0.1,
stream=True,
)
)
for chunk in res:
print(chunk.choices[0].delta.content, end="", flush=True)