vectorvein 0.2.74__py3-none-any.whl → 0.2.76__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.
@@ -395,7 +395,7 @@ class OpenAICompatibleChatClient(BaseChatClient):
395
395
  completion_tokens_details=chunk.usage.completion_tokens_details,
396
396
  )
397
397
 
398
- if len(chunk.choices) == 0 or not chunk.choices[0].delta:
398
+ if not chunk.choices or len(chunk.choices) == 0 or not chunk.choices[0].delta:
399
399
  if usage:
400
400
  yield ChatCompletionDeltaMessage(usage=usage)
401
401
  continue
@@ -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),
@@ -871,7 +874,7 @@ class AsyncOpenAICompatibleChatClient(BaseAsyncChatClient):
871
874
  prompt_tokens_details=chunk.usage.prompt_tokens_details,
872
875
  )
873
876
 
874
- if len(chunk.choices) == 0 or not chunk.choices[0].delta:
877
+ if not chunk.choices or len(chunk.choices) == 0 or not chunk.choices[0].delta:
875
878
  if usage:
876
879
  yield ChatCompletionDeltaMessage(usage=usage)
877
880
  continue
@@ -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
1
  Metadata-Version: 2.1
2
2
  Name: vectorvein
3
- Version: 0.2.74
3
+ Version: 0.2.76
4
4
  Summary: VectorVein Python SDK
5
5
  Author-Email: Anderson <andersonby@163.com>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
- vectorvein-0.2.74.dist-info/METADATA,sha256=yfe3P46Pnisf2CF6ZEhzUzbNfLLUJLcncCzSgtb436U,4567
2
- vectorvein-0.2.74.dist-info/WHEEL,sha256=thaaA2w1JzcGC48WYufAs8nrYZjJm8LqNfnXFOFyCC4,90
3
- vectorvein-0.2.74.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
1
+ vectorvein-0.2.76.dist-info/METADATA,sha256=cFu9iUHyoeR_EjmbcI-Soe2wxaOndkvK-hgDjTExzWE,4567
2
+ vectorvein-0.2.76.dist-info/WHEEL,sha256=tSfRZzRHthuv7vxpI4aehrdN9scLjk-dCJkPLzkHxGg,90
3
+ vectorvein-0.2.76.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=pKvUvZMcE2b2WAftF_XyO1m5WlUlvB5VBtvSGVW29H0,48613
22
+ vectorvein/chat_clients/openai_compatible_client.py,sha256=_vt-yMC62MygFLVuMuWij53SRW-dC0KHeTxmhcn5ZCs,48877
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.74.dist-info/RECORD,,
68
+ vectorvein-0.2.76.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: pdm-backend (2.4.3)
2
+ Generator: pdm-backend (2.4.4)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any