vectorvein 0.2.74__py3-none-any.whl → 0.2.75__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/openai_compatible_client.py +7 -0
- {vectorvein-0.2.74.dist-info → vectorvein-0.2.75.dist-info}/METADATA +1 -1
- {vectorvein-0.2.74.dist-info → vectorvein-0.2.75.dist-info}/RECORD +5 -5
- {vectorvein-0.2.74.dist-info → vectorvein-0.2.75.dist-info}/WHEEL +0 -0
- {vectorvein-0.2.74.dist-info → vectorvein-0.2.75.dist-info}/entry_points.txt +0 -0
@@ -504,6 +504,9 @@ class OpenAICompatibleChatClient(BaseChatClient):
|
|
504
504
|
**tools_params, # type: ignore
|
505
505
|
)
|
506
506
|
|
507
|
+
if not response.choices:
|
508
|
+
raise ValueError(f"No response choices: {response}")
|
509
|
+
|
507
510
|
result = {
|
508
511
|
"content": response.choices[0].message.content,
|
509
512
|
"reasoning_content": getattr(response.choices[0].message, "reasoning_content", None),
|
@@ -979,6 +982,10 @@ class AsyncOpenAICompatibleChatClient(BaseAsyncChatClient):
|
|
979
982
|
else OPENAI_NOT_GIVEN,
|
980
983
|
**tools_params, # type: ignore
|
981
984
|
)
|
985
|
+
|
986
|
+
if not response.choices:
|
987
|
+
raise ValueError(f"No response choices: {response}")
|
988
|
+
|
982
989
|
result = {
|
983
990
|
"content": response.choices[0].message.content,
|
984
991
|
"reasoning_content": getattr(response.choices[0].message, "reasoning_content", None),
|
@@ -1,6 +1,6 @@
|
|
1
|
-
vectorvein-0.2.
|
2
|
-
vectorvein-0.2.
|
3
|
-
vectorvein-0.2.
|
1
|
+
vectorvein-0.2.75.dist-info/METADATA,sha256=0XmvjphnKcmaW1y4pAIMFOYkeF5nihc8xCOmLsDoT38,4567
|
2
|
+
vectorvein-0.2.75.dist-info/WHEEL,sha256=thaaA2w1JzcGC48WYufAs8nrYZjJm8LqNfnXFOFyCC4,90
|
3
|
+
vectorvein-0.2.75.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
|
@@ -19,7 +19,7 @@ vectorvein/chat_clients/minimax_client.py,sha256=YOILWcsHsN5tihLTMbKJIyJr9TJREMI
|
|
19
19
|
vectorvein/chat_clients/mistral_client.py,sha256=1aKSylzBDaLYcFnaBIL4-sXSzWmXfBeON9Q0rq-ziWw,534
|
20
20
|
vectorvein/chat_clients/moonshot_client.py,sha256=gbu-6nGxx8uM_U2WlI4Wus881rFRotzHtMSoYOcruGU,526
|
21
21
|
vectorvein/chat_clients/openai_client.py,sha256=Nz6tV45pWcsOupxjnsRsGTicbQNJWIZyxuJoJ5DGMpg,527
|
22
|
-
vectorvein/chat_clients/openai_compatible_client.py,sha256=
|
22
|
+
vectorvein/chat_clients/openai_compatible_client.py,sha256=4WYtgnjFzLCgv6EK_9wvolv_ayg1mj9tmUxm_eByeZ0,48835
|
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
|
@@ -65,4 +65,4 @@ vectorvein/workflow/utils/analyse.py,sha256=msmvyz35UTYTwqQR5sg9H0sm1vxmGDSmep9X
|
|
65
65
|
vectorvein/workflow/utils/check.py,sha256=B_NdwqIqnc7Ko2HHqFpfOmWVaAu21tPITe0szKfiZKc,11414
|
66
66
|
vectorvein/workflow/utils/json_to_code.py,sha256=P8dhhSNgKhTnW17qXNjLO2aLdb0rA8qMAWxhObol2TU,7295
|
67
67
|
vectorvein/workflow/utils/layout.py,sha256=j0bRD3uaXu40xCS6U6BGahBI8FrHa5MiF55GbTrZ1LM,4565
|
68
|
-
vectorvein-0.2.
|
68
|
+
vectorvein-0.2.75.dist-info/RECORD,,
|
File without changes
|
File without changes
|