vectorvein 0.2.30__py3-none-any.whl → 0.2.31__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.
- vectorvein/chat_clients/utils.py +11 -0
- {vectorvein-0.2.30.dist-info → vectorvein-0.2.31.dist-info}/METADATA +1 -1
- {vectorvein-0.2.30.dist-info → vectorvein-0.2.31.dist-info}/RECORD +5 -5
- {vectorvein-0.2.30.dist-info → vectorvein-0.2.31.dist-info}/WHEEL +0 -0
- {vectorvein-0.2.30.dist-info → vectorvein-0.2.31.dist-info}/entry_points.txt +0 -0
vectorvein/chat_clients/utils.py
CHANGED
@@ -559,6 +559,7 @@ def format_workflow_messages(message: dict, content: str, backend: BackendType):
|
|
559
559
|
def transform_from_openai_message(message: ChatCompletionMessageParam, backend: BackendType):
|
560
560
|
role = message.get("role", "user")
|
561
561
|
content = message.get("content", "")
|
562
|
+
tool_calls = message.get("tool_calls", [])
|
562
563
|
|
563
564
|
if backend == BackendType.Anthropic:
|
564
565
|
if role == "tool":
|
@@ -582,6 +583,16 @@ def transform_from_openai_message(message: ChatCompletionMessageParam, backend:
|
|
582
583
|
formatted_content.append(format_image_message(item["image_url"]["url"], backend))
|
583
584
|
else:
|
584
585
|
formatted_content.append(item)
|
586
|
+
if tool_calls:
|
587
|
+
for tool_call in tool_calls:
|
588
|
+
formatted_content.append(
|
589
|
+
{
|
590
|
+
"type": "tool_use",
|
591
|
+
"id": tool_call["id"],
|
592
|
+
"name": tool_call["function"]["name"],
|
593
|
+
"input": json.loads(tool_call["function"]["arguments"]),
|
594
|
+
}
|
595
|
+
)
|
585
596
|
return {"role": role, "content": formatted_content}
|
586
597
|
else:
|
587
598
|
return {"role": role, "content": content}
|
@@ -1,6 +1,6 @@
|
|
1
|
-
vectorvein-0.2.
|
2
|
-
vectorvein-0.2.
|
3
|
-
vectorvein-0.2.
|
1
|
+
vectorvein-0.2.31.dist-info/METADATA,sha256=6bAhtke289AGWRwg2q8KMxxxgs78Mt8o2nfpO7444qk,4570
|
2
|
+
vectorvein-0.2.31.dist-info/WHEEL,sha256=thaaA2w1JzcGC48WYufAs8nrYZjJm8LqNfnXFOFyCC4,90
|
3
|
+
vectorvein-0.2.31.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
4
4
|
vectorvein/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
vectorvein/api/__init__.py,sha256=lfY-XA46fgD2iIZTU0VYP8i07AwA03Egj4Qua0vUKrQ,738
|
6
6
|
vectorvein/api/client.py,sha256=xF-leKDQzVyyy9FnIRaz0k4eElYW1XbbzeRLcpnyk90,33047
|
@@ -23,7 +23,7 @@ vectorvein/chat_clients/openai_compatible_client.py,sha256=d6V6T_FvPxEuOhHoQC-NH
|
|
23
23
|
vectorvein/chat_clients/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
24
|
vectorvein/chat_clients/qwen_client.py,sha256=-ryh-m9PgsO0fc4ulcCmPTy1155J8YUy15uPoJQOHA0,513
|
25
25
|
vectorvein/chat_clients/stepfun_client.py,sha256=zsD2W5ahmR4DD9cqQTXmJr3txrGuvxbRWhFlRdwNijI,519
|
26
|
-
vectorvein/chat_clients/utils.py,sha256=
|
26
|
+
vectorvein/chat_clients/utils.py,sha256=g7lIzuTrZgm3Tq6skTRu8_xUpml8EfRFFMuFEKQm7Vc,26267
|
27
27
|
vectorvein/chat_clients/xai_client.py,sha256=eLFJJrNRJ-ni3DpshODcr3S1EJQLbhVwxyO1E54LaqM,491
|
28
28
|
vectorvein/chat_clients/yi_client.py,sha256=RNf4CRuPJfixrwLZ3-DEc3t25QDe1mvZeb9sku2f8Bc,484
|
29
29
|
vectorvein/chat_clients/zhipuai_client.py,sha256=Ys5DSeLCuedaDXr3PfG1EW2zKXopt-awO2IylWSwY0s,519
|
@@ -62,4 +62,4 @@ vectorvein/workflow/nodes/vector_db.py,sha256=t6I17q6iR3yQreiDHpRrksMdWDPIvgqJs0
|
|
62
62
|
vectorvein/workflow/nodes/video_generation.py,sha256=qmdg-t_idpxq1veukd-jv_ChICMOoInKxprV9Z4Vi2w,4118
|
63
63
|
vectorvein/workflow/nodes/web_crawlers.py,sha256=LsqomfXfqrXfHJDO1cl0Ox48f4St7X_SL12DSbAMSOw,5415
|
64
64
|
vectorvein/workflow/utils/json_to_code.py,sha256=F7dhDy8kGc8ndOeihGLRLGFGlquoxVlb02ENtxnQ0C8,5914
|
65
|
-
vectorvein-0.2.
|
65
|
+
vectorvein-0.2.31.dist-info/RECORD,,
|
File without changes
|
File without changes
|