hjxdl 0.3.22__py3-none-any.whl → 0.3.24__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.
- hdl/_version.py +2 -2
- hdl/utils/llm/llm_wrapper.py +6 -3
- {hjxdl-0.3.22.dist-info → hjxdl-0.3.24.dist-info}/METADATA +1 -1
- {hjxdl-0.3.22.dist-info → hjxdl-0.3.24.dist-info}/RECORD +7 -7
- {hjxdl-0.3.22.dist-info → hjxdl-0.3.24.dist-info}/LICENSE +0 -0
- {hjxdl-0.3.22.dist-info → hjxdl-0.3.24.dist-info}/WHEEL +0 -0
- {hjxdl-0.3.22.dist-info → hjxdl-0.3.24.dist-info}/top_level.txt +0 -0
hdl/_version.py
CHANGED
hdl/utils/llm/llm_wrapper.py
CHANGED
@@ -203,7 +203,10 @@ class OpenAIWrapper(object):
|
|
203
203
|
elif len(image_keys) == 1:
|
204
204
|
image_keys = (image_keys[0],) * 3
|
205
205
|
|
206
|
-
content = [
|
206
|
+
content = [{
|
207
|
+
"type": "text",
|
208
|
+
"text": prompt
|
209
|
+
}]
|
207
210
|
if images:
|
208
211
|
if isinstance(images, str):
|
209
212
|
images = [images]
|
@@ -319,7 +322,7 @@ class OpenAIWrapper(object):
|
|
319
322
|
choice = chunk.choices[0]
|
320
323
|
|
321
324
|
# 如果返回了 tool_calls
|
322
|
-
if hasattr(choice.delta, 'tool_calls') and choice.
|
325
|
+
if hasattr(choice.delta, 'tool_calls') and choice.delta.tool_calls:
|
323
326
|
tool_calls = choice.delta.tool_calls
|
324
327
|
if tool_calls: # 防止为空
|
325
328
|
yield {
|
@@ -329,7 +332,7 @@ class OpenAIWrapper(object):
|
|
329
332
|
return # 直接返回,结束流式输出
|
330
333
|
|
331
334
|
# 返回文本内容
|
332
|
-
|
335
|
+
elif hasattr(choice.delta, 'content'):
|
333
336
|
yield {
|
334
337
|
"type": "text",
|
335
338
|
"content": choice.delta.content
|
@@ -1,5 +1,5 @@
|
|
1
1
|
hdl/__init__.py,sha256=GffnD0jLJdhkd-vo989v40N90sQbofkayRBwxc6TVhQ,72
|
2
|
-
hdl/_version.py,sha256=
|
2
|
+
hdl/_version.py,sha256=xxze0Z9aZc1cnT2UsH5Up2FW8XUOyAB2EqHM_PedmQc,413
|
3
3
|
hdl/args/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
hdl/args/loss_args.py,sha256=s7YzSdd7IjD24rZvvOrxLLFqMZQb9YylxKeyelSdrTk,70
|
5
5
|
hdl/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -134,15 +134,15 @@ hdl/utils/llm/chatgr.py,sha256=5F5PJHe8vz3iCfi4TT54DCLRi1UeJshECdVtgvvvao0,3696
|
|
134
134
|
hdl/utils/llm/embs.py,sha256=Tf0FOYrOFZp7qQpEPiSCXzlgyHH0X9HVTUtsup74a9E,7174
|
135
135
|
hdl/utils/llm/extract.py,sha256=2sK_WJzmYIc8iuWaM9DA6Nw3_6q1O4lJ5pKpcZo-bBA,6512
|
136
136
|
hdl/utils/llm/llama_chat.py,sha256=watcHGOaz-bv3x-yDucYlGk5f8FiqfFhwWogrl334fk,4387
|
137
|
-
hdl/utils/llm/llm_wrapper.py,sha256=
|
137
|
+
hdl/utils/llm/llm_wrapper.py,sha256=sdf6N19pmwXBCYvHfFv8VVPPBpu5SIyXu21W3bFXSx0,13718
|
138
138
|
hdl/utils/llm/vis.py,sha256=SSP6tOwKLq0hWcpM3twI9TitqzBmKjlcGrnXEWYlCzM,26055
|
139
139
|
hdl/utils/llm/visrag.py,sha256=0i-VrxqgiV-J7R3VPshu9oc7-rKjFJOldYik3HDXj6M,10176
|
140
140
|
hdl/utils/schedulers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
141
141
|
hdl/utils/schedulers/norm_lr.py,sha256=bDwCmdEK-WkgxQMFBiMuchv8Mm7C0-GZJ6usm-PQk14,4461
|
142
142
|
hdl/utils/weather/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
143
143
|
hdl/utils/weather/weather.py,sha256=k11o6wM15kF8b9NMlEfrg68ak-SfSYLN3nOOflFUv-I,4381
|
144
|
-
hjxdl-0.3.
|
145
|
-
hjxdl-0.3.
|
146
|
-
hjxdl-0.3.
|
147
|
-
hjxdl-0.3.
|
148
|
-
hjxdl-0.3.
|
144
|
+
hjxdl-0.3.24.dist-info/LICENSE,sha256=lkMiSbeZHBQLB9LJEkS9-L3Z-LBC4yGnKrzHSG8RkPM,2599
|
145
|
+
hjxdl-0.3.24.dist-info/METADATA,sha256=HEeA6mVJG8tifL-Hfoabfd8WP-6YB5Cmd6-rdHHCmAc,1336
|
146
|
+
hjxdl-0.3.24.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
147
|
+
hjxdl-0.3.24.dist-info/top_level.txt,sha256=-kxwTM5JPhylp06z3zAVO3w6_h7wtBfBo2zgM6YZoTk,4
|
148
|
+
hjxdl-0.3.24.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|