forked from EricLBuehler/mistral.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqwen3.py
More file actions
106 lines (92 loc) · 2.98 KB
/
qwen3.py
File metadata and controls
106 lines (92 loc) · 2.98 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
from openai import OpenAI
import httpx
import textwrap
import json
def log_response(response: httpx.Response):
request = response.request
print(f"Request: {request.method} {request.url}")
print(" Headers:")
for key, value in request.headers.items():
if key.lower() == "authorization":
value = "[...]"
if key.lower() == "cookie":
value = value.split("=")[0] + "=..."
print(f" {key}: {value}")
print(" Body:")
try:
request_body = json.loads(request.content)
print(textwrap.indent(json.dumps(request_body, indent=2), " "))
except json.JSONDecodeError:
print(textwrap.indent(request.content.decode(), " "))
print(f"Response: status_code={response.status_code}")
print(" Headers:")
for key, value in response.headers.items():
if key.lower() == "set-cookie":
value = value.split("=")[0] + "=..."
print(f" {key}: {value}")
client = OpenAI(api_key="foobar", base_url="http://localhost:1234/v1/")
# Enable this to log requests and responses
# client._client = httpx.Client(
# event_hooks={"request": [print], "response": [log_response]}
# )
messages = [
{
"role": "user",
"content": "Hello! How many rs in strawberry?",
},
]
# ------------------------------------------------------------------
# First question, thinking mode is enabled by default
# ------------------------------------------------------------------
completion = client.chat.completions.create(
model="default",
messages=messages,
max_tokens=1024,
frequency_penalty=1.0,
top_p=0.1,
temperature=0,
)
resp = completion.choices[0].message.content
print(resp)
messages.append({"role": "assistant", "content": completion.choices[0].message.content})
messages = [
{
"role": "user",
"content": "How many rs in blueberry? /no_think",
},
]
# ------------------------------------------------------------------
# Second question, disable thinking mode with extra body or /no_think
# ------------------------------------------------------------------
completion = client.chat.completions.create(
model="default",
messages=messages,
max_tokens=1024,
frequency_penalty=1.0,
top_p=0.1,
temperature=0,
# enable_thinking=False,
)
resp = completion.choices[0].message.content
print(resp)
messages.append({"role": "assistant", "content": completion.choices[0].message.content})
messages = [
{
"role": "user",
"content": "Are you sure? /think",
},
]
# ------------------------------------------------------------------
# Third question, reenable thinking mode with extra body or /think
# ------------------------------------------------------------------
completion = client.chat.completions.create(
model="default",
messages=messages,
max_tokens=1024,
frequency_penalty=1.0,
top_p=0.1,
temperature=0,
# enable_thinking=False,
)
resp = completion.choices[0].message.content
print(resp)