pycoze 0.1.419__py3-none-any.whl → 0.1.420__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 CHANGED
@@ -119,11 +119,10 @@ async def stream_openai_response(conversation_history, start_new_stream):
119
119
  info("assistant", chunk)
120
120
  buffer += chunk
121
121
 
122
- if "\n" not in chunk:
122
+ if "\n" not in chunk: # 行为基本的处理单位
123
123
  continue
124
124
  # 处理 buffer 中的内容
125
125
  while buffer:
126
- print("while buffer", buffer)
127
126
  if not in_json_block:
128
127
  # 查找 JSON 代码块的起始标记
129
128
  json_start_match = re.search(r"```json", buffer, re.IGNORECASE)
@@ -132,7 +131,6 @@ async def stream_openai_response(conversation_history, start_new_stream):
132
131
  text_content += buffer[:json_start_match.start()]
133
132
  # 如果 text_content 不为空,先 yield 文本
134
133
  if text_content.strip():
135
- print("yield text", text_content.strip())
136
134
  yield ("text", text_content.strip())
137
135
  text_content = ""
138
136
  # 进入 JSON 代码块模式
@@ -149,7 +147,6 @@ async def stream_openai_response(conversation_history, start_new_stream):
149
147
  # 提取 JSON 代码块内容
150
148
  json_block_content += buffer[:json_end_match.start()]
151
149
  # yield JSON 代码块
152
- print("yield json", json_block_content.strip())
153
150
  yield ("json", json_block_content.strip())
154
151
  json_block_content = ""
155
152
  in_json_block = False
@@ -167,7 +164,6 @@ async def stream_openai_response(conversation_history, start_new_stream):
167
164
  print(f"Error: {e}", style="bold red")
168
165
  break
169
166
 
170
- print("end", "buffer", buffer, "in_json_block", in_json_block, "json_block_content", json_block_content, "text_content", text_content, "!!" )
171
167
  # 处理 buffer 中剩余的内容
172
168
  if buffer:
173
169
  if in_json_block:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pycoze
3
- Version: 0.1.419
3
+ Version: 0.1.420
4
4
  Summary: Package for pycoze only!
5
5
  Author: Yuan Jie Xiong
6
6
  Author-email: aiqqqqqqq@qq.com
@@ -12,7 +12,7 @@ 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
14
  pycoze/bot/chat_base copy.py,sha256=WZRB08zN4OeYAjSxccgu69Jb-k8tfbNwskqi5LmBF20,11979
15
- pycoze/bot/chat_base.py,sha256=WYIgvCnYqh6Q8DMf1_MYJ9EvmdnR99kpZnB3O5nmlig,12131
15
+ pycoze/bot/chat_base.py,sha256=Uh2MxkcgRRp3GjP9BPlGAlHrb1Gd_VHTr79rDJ-i8x4,11815
16
16
  pycoze/bot/lib.py,sha256=_bQ52mKsWgFGAogFHnmRBJbvK_tPOwsAJ8NqJNMR5K4,7210
17
17
  pycoze/bot/message.py,sha256=udnIi-h4QgGzkbr_5VcAsVGjoLp9wXJSfBCeuOz7_Bk,802
18
18
  pycoze/bot/prompt.md,sha256=t7NQdiiNe-jCDVfeVbvTPfq5WK5nF8CxFUQUFMyXJlo,13880
@@ -32,8 +32,8 @@ pycoze/utils/arg.py,sha256=jop1tBfe5hYkHW1NSpCeaZBEznkgguBscj_7M2dWfrs,503
32
32
  pycoze/utils/env.py,sha256=5pWlXfM1F5ZU9hhv1rHlDEanjEW5wf0nbyez9bNRqqA,559
33
33
  pycoze/utils/socket.py,sha256=bZbFFRH4mfThzRqt55BAAGQ6eICx_ja4x8UGGrUdAm8,2428
34
34
  pycoze/utils/text_or_file.py,sha256=gpxZVWt2DW6YiEg_MnMuwg36VNf3TX383QD_1oZNB0Y,551
35
- pycoze-0.1.419.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
36
- pycoze-0.1.419.dist-info/METADATA,sha256=XtNAAfDXMb58zhZQaI6Dxf3WUhWfGDsBVnyyTR4I-og,854
37
- pycoze-0.1.419.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
38
- pycoze-0.1.419.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
39
- pycoze-0.1.419.dist-info/RECORD,,
35
+ pycoze-0.1.420.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
36
+ pycoze-0.1.420.dist-info/METADATA,sha256=fTu_e7L5sy2gnsvyTWBpvIxCqbi-KhuEL5GM-fyrH3g,854
37
+ pycoze-0.1.420.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
38
+ pycoze-0.1.420.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
39
+ pycoze-0.1.420.dist-info/RECORD,,