We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 605ed38 commit 5b89762Copy full SHA for 5b89762
pkg-py/src/querychat/_querychat.py
@@ -137,10 +137,9 @@ def __init__(
137
)
138
139
client = normalize_client(client)
140
- client2 = copy.deepcopy(client)
141
- client2.set_turns([])
142
- client2.system_prompt = prompt
143
- self.client = client2
+ self.client = copy.deepcopy(client)
+ self.client.set_turns([])
+ self.client.system_prompt = prompt
144
145
# Populated when ._server() gets called (in an active session)
146
self._server_values: ModServerResult | None = None
0 commit comments