pycoze 0.1.406__py3-none-any.whl → 0.1.407__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pycoze/bot/chat_base.py +4 -0
- {pycoze-0.1.406.dist-info → pycoze-0.1.407.dist-info}/METADATA +1 -1
- {pycoze-0.1.406.dist-info → pycoze-0.1.407.dist-info}/RECORD +6 -6
- {pycoze-0.1.406.dist-info → pycoze-0.1.407.dist-info}/LICENSE +0 -0
- {pycoze-0.1.406.dist-info → pycoze-0.1.407.dist-info}/WHEEL +0 -0
- {pycoze-0.1.406.dist-info → pycoze-0.1.407.dist-info}/top_level.txt +0 -0
pycoze/bot/chat_base.py
CHANGED
@@ -132,6 +132,7 @@ async def stream_openai_response(conversation_history, start_new_stream):
|
|
132
132
|
text_content += buffer[:json_start_match.start()]
|
133
133
|
# 如果 text_content 不为空,先 yield 文本
|
134
134
|
if text_content.strip():
|
135
|
+
print("yield text", text_content.strip())
|
135
136
|
yield ("text", text_content.strip())
|
136
137
|
text_content = ""
|
137
138
|
# 进入 JSON 代码块模式
|
@@ -148,6 +149,7 @@ async def stream_openai_response(conversation_history, start_new_stream):
|
|
148
149
|
# 提取 JSON 代码块内容
|
149
150
|
json_block_content += buffer[:json_end_match.start()]
|
150
151
|
# yield JSON 代码块
|
152
|
+
print("yield json", json_block_content.strip())
|
151
153
|
yield ("json", json_block_content.strip())
|
152
154
|
json_block_content = ""
|
153
155
|
in_json_block = False
|
@@ -177,10 +179,12 @@ async def stream_openai_response(conversation_history, start_new_stream):
|
|
177
179
|
if in_json_block:
|
178
180
|
# 如果仍在 JSON 代码块模式,处理剩余的 JSON 内容
|
179
181
|
if json_block_content.strip():
|
182
|
+
print("yield json", json_block_content.strip())
|
180
183
|
yield ("json", json_block_content.strip())
|
181
184
|
else:
|
182
185
|
# 如果不在 JSON 代码块模式,处理剩余的文本内容
|
183
186
|
if text_content.strip():
|
187
|
+
print("yield json", text_content.strip())
|
184
188
|
yield ("text", text_content.strip())
|
185
189
|
|
186
190
|
|
@@ -11,7 +11,7 @@ pycoze/api/lib/web.py,sha256=GWgtiTJOolKOX2drXcwuyqTcbo5FQVxa1NuBGcNyjyc,223
|
|
11
11
|
pycoze/api/lib/window.py,sha256=dkzWfLwn5pE_L0DfQ38K8nx9tQyT5KO-GYyXi0rytFc,2073
|
12
12
|
pycoze/bot/__init__.py,sha256=rL3Q-ycczRpSFfKn84fg3QBl5k22WpyeIU5qOEjEby8,79
|
13
13
|
pycoze/bot/chat.py,sha256=qEuMxH0cVFU9QSU36FrOsjhRAxtsvOv7CQtuXvM3F6Y,6446
|
14
|
-
pycoze/bot/chat_base.py,sha256=
|
14
|
+
pycoze/bot/chat_base.py,sha256=tuJeUCkmVKxOkiAsFwkD9ua6mBjwoLY94kIWsCU1qO8,11875
|
15
15
|
pycoze/bot/lib.py,sha256=_bQ52mKsWgFGAogFHnmRBJbvK_tPOwsAJ8NqJNMR5K4,7210
|
16
16
|
pycoze/bot/message.py,sha256=udnIi-h4QgGzkbr_5VcAsVGjoLp9wXJSfBCeuOz7_Bk,802
|
17
17
|
pycoze/bot/prompt.md,sha256=t7NQdiiNe-jCDVfeVbvTPfq5WK5nF8CxFUQUFMyXJlo,13880
|
@@ -31,8 +31,8 @@ pycoze/utils/arg.py,sha256=jop1tBfe5hYkHW1NSpCeaZBEznkgguBscj_7M2dWfrs,503
|
|
31
31
|
pycoze/utils/env.py,sha256=5pWlXfM1F5ZU9hhv1rHlDEanjEW5wf0nbyez9bNRqqA,559
|
32
32
|
pycoze/utils/socket.py,sha256=bZbFFRH4mfThzRqt55BAAGQ6eICx_ja4x8UGGrUdAm8,2428
|
33
33
|
pycoze/utils/text_or_file.py,sha256=gpxZVWt2DW6YiEg_MnMuwg36VNf3TX383QD_1oZNB0Y,551
|
34
|
-
pycoze-0.1.
|
35
|
-
pycoze-0.1.
|
36
|
-
pycoze-0.1.
|
37
|
-
pycoze-0.1.
|
38
|
-
pycoze-0.1.
|
34
|
+
pycoze-0.1.407.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
35
|
+
pycoze-0.1.407.dist-info/METADATA,sha256=57lOsTt5WHoai1A0OdESmCUTCSDcH8w0i-Z81pOrlOw,854
|
36
|
+
pycoze-0.1.407.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
37
|
+
pycoze-0.1.407.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
38
|
+
pycoze-0.1.407.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|