vectorvein 0.2.81__py3-none-any.whl → 0.2.83__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 +4 -4
- vectorvein/types/defaults.py +64 -0
- {vectorvein-0.2.81.dist-info → vectorvein-0.2.83.dist-info}/METADATA +1 -1
- {vectorvein-0.2.81.dist-info → vectorvein-0.2.83.dist-info}/RECORD +6 -6
- {vectorvein-0.2.81.dist-info → vectorvein-0.2.83.dist-info}/WHEEL +0 -0
- {vectorvein-0.2.81.dist-info → vectorvein-0.2.83.dist-info}/entry_points.txt +0 -0
@@ -99,7 +99,7 @@ class OpenAICompatibleChatClient(BaseChatClient):
|
|
99
99
|
return AzureOpenAI(
|
100
100
|
azure_endpoint=self.endpoint.api_base,
|
101
101
|
api_key=self.endpoint.api_key,
|
102
|
-
api_version="2025-
|
102
|
+
api_version="2025-03-01-preview",
|
103
103
|
http_client=self.http_client,
|
104
104
|
)
|
105
105
|
else:
|
@@ -336,7 +336,7 @@ class OpenAICompatibleChatClient(BaseChatClient):
|
|
336
336
|
else:
|
337
337
|
max_tokens = self.model_setting.context_length - token_counts - 64
|
338
338
|
|
339
|
-
if "o3-mini" in self.model_id:
|
339
|
+
if "o3-mini" in self.model_id or "o4-mini" in self.model_id:
|
340
340
|
max_completion_tokens = max_tokens
|
341
341
|
max_tokens = NOT_GIVEN
|
342
342
|
|
@@ -581,7 +581,7 @@ class AsyncOpenAICompatibleChatClient(BaseAsyncChatClient):
|
|
581
581
|
return AsyncAzureOpenAI(
|
582
582
|
azure_endpoint=self.endpoint.api_base,
|
583
583
|
api_key=self.endpoint.api_key,
|
584
|
-
api_version="2025-
|
584
|
+
api_version="2025-03-01-preview",
|
585
585
|
http_client=self.http_client,
|
586
586
|
)
|
587
587
|
else:
|
@@ -818,7 +818,7 @@ class AsyncOpenAICompatibleChatClient(BaseAsyncChatClient):
|
|
818
818
|
else:
|
819
819
|
max_tokens = self.model_setting.context_length - token_counts - 64
|
820
820
|
|
821
|
-
if "o3-mini" in self.model_id:
|
821
|
+
if "o3-mini" in self.model_id or "o4-mini" in self.model_id:
|
822
822
|
max_completion_tokens = max_tokens
|
823
823
|
max_tokens = NOT_GIVEN
|
824
824
|
|
vectorvein/types/defaults.py
CHANGED
@@ -339,6 +339,70 @@ QWEN_MODELS: Final[Dict[str, ModelSettingDict]] = {
|
|
339
339
|
"response_format_available": False,
|
340
340
|
"native_multimodal": True,
|
341
341
|
},
|
342
|
+
"qwen3-235b-a22b": {
|
343
|
+
"id": "qwen3-235b-a22b",
|
344
|
+
"context_length": 131072,
|
345
|
+
"max_output_tokens": 8192,
|
346
|
+
"function_call_available": True,
|
347
|
+
"response_format_available": True,
|
348
|
+
"native_multimodal": False,
|
349
|
+
},
|
350
|
+
"qwen3-32b": {
|
351
|
+
"id": "qwen3-32b",
|
352
|
+
"context_length": 131072,
|
353
|
+
"max_output_tokens": 8192,
|
354
|
+
"function_call_available": True,
|
355
|
+
"response_format_available": True,
|
356
|
+
"native_multimodal": False,
|
357
|
+
},
|
358
|
+
"qwen3-30b-a3b": {
|
359
|
+
"id": "qwen3-30b-a3b",
|
360
|
+
"context_length": 131072,
|
361
|
+
"max_output_tokens": 8192,
|
362
|
+
"function_call_available": True,
|
363
|
+
"response_format_available": True,
|
364
|
+
"native_multimodal": False,
|
365
|
+
},
|
366
|
+
"qwen3-14b": {
|
367
|
+
"id": "qwen3-14b",
|
368
|
+
"context_length": 131072,
|
369
|
+
"max_output_tokens": 8192,
|
370
|
+
"function_call_available": True,
|
371
|
+
"response_format_available": True,
|
372
|
+
"native_multimodal": False,
|
373
|
+
},
|
374
|
+
"qwen3-8b": {
|
375
|
+
"id": "qwen3-8b",
|
376
|
+
"context_length": 131072,
|
377
|
+
"max_output_tokens": 8192,
|
378
|
+
"function_call_available": True,
|
379
|
+
"response_format_available": True,
|
380
|
+
"native_multimodal": False,
|
381
|
+
},
|
382
|
+
"qwen3-4b": {
|
383
|
+
"id": "qwen3-4b",
|
384
|
+
"context_length": 131072,
|
385
|
+
"max_output_tokens": 8192,
|
386
|
+
"function_call_available": True,
|
387
|
+
"response_format_available": True,
|
388
|
+
"native_multimodal": False,
|
389
|
+
},
|
390
|
+
"qwen3-1.7b": {
|
391
|
+
"id": "qwen3-1.7b",
|
392
|
+
"context_length": 32768,
|
393
|
+
"max_output_tokens": 8192,
|
394
|
+
"function_call_available": True,
|
395
|
+
"response_format_available": True,
|
396
|
+
"native_multimodal": False,
|
397
|
+
},
|
398
|
+
"qwen3-0.6b": {
|
399
|
+
"id": "qwen3-0.6b",
|
400
|
+
"context_length": 32768,
|
401
|
+
"max_output_tokens": 8192,
|
402
|
+
"function_call_available": True,
|
403
|
+
"response_format_available": True,
|
404
|
+
"native_multimodal": False,
|
405
|
+
},
|
342
406
|
}
|
343
407
|
|
344
408
|
# Yi models
|
@@ -1,6 +1,6 @@
|
|
1
|
-
vectorvein-0.2.
|
2
|
-
vectorvein-0.2.
|
3
|
-
vectorvein-0.2.
|
1
|
+
vectorvein-0.2.83.dist-info/METADATA,sha256=_p3JvMcCL1vV4pyxPdxzvdtqEuyJk5sTAeLXcCM4AQo,4567
|
2
|
+
vectorvein-0.2.83.dist-info/WHEEL,sha256=tSfRZzRHthuv7vxpI4aehrdN9scLjk-dCJkPLzkHxGg,90
|
3
|
+
vectorvein-0.2.83.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=3TBQaFZD5o8GUeOnLz_bQ4gzwGANEVu-8HW4iNNcXTo,49215
|
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
|
@@ -32,7 +32,7 @@ vectorvein/server/token_server.py,sha256=36F9PKSNOX8ZtYBXY_l-76GQTpUSmQ2Y8EMy1H7
|
|
32
32
|
vectorvein/settings/__init__.py,sha256=3Kw3hbvqcIQepAR6Q2m2UXbBnwyJTUm8yAz-aHmbUTg,11163
|
33
33
|
vectorvein/settings/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
34
|
vectorvein/types/__init__.py,sha256=ypg8c8AwF49FrFBMqmgH_eIBH4LFf0KN4kjqQa7zrvM,3376
|
35
|
-
vectorvein/types/defaults.py,sha256=
|
35
|
+
vectorvein/types/defaults.py,sha256=zaUusjyOaPJV-a-e-zOIpNljxk_TSQO5gvnadls-fUY,37065
|
36
36
|
vectorvein/types/enums.py,sha256=LplSVkXLBK-t8TWtJKj_f7ktWTd6CSHWRLb67XKMm54,1716
|
37
37
|
vectorvein/types/exception.py,sha256=KtnqZ-1DstHm95SZAyZdHhkGq1bJ4A9Aw3Zfdu-VIFo,130
|
38
38
|
vectorvein/types/llm_parameters.py,sha256=Bdz9E_x0G96rvJ5TnEFPrU5QV4I2y0YFv7dY4Pq-MuU,7933
|
@@ -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.83.dist-info/RECORD,,
|
File without changes
|
File without changes
|