vectorvein 0.3.3__py3-none-any.whl → 0.3.5__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/anthropic_client.py +8 -8
- vectorvein/chat_clients/base_client.py +10 -10
- vectorvein/chat_clients/openai_compatible_client.py +12 -8
- vectorvein/types/defaults.py +7 -0
- {vectorvein-0.3.3.dist-info → vectorvein-0.3.5.dist-info}/METADATA +1 -1
- {vectorvein-0.3.3.dist-info → vectorvein-0.3.5.dist-info}/RECORD +8 -8
- {vectorvein-0.3.3.dist-info → vectorvein-0.3.5.dist-info}/WHEEL +0 -0
- {vectorvein-0.3.3.dist-info → vectorvein-0.3.5.dist-info}/entry_points.txt +0 -0
@@ -284,7 +284,7 @@ class AnthropicChatClient(BaseChatClient):
|
|
284
284
|
tools: Iterable[ToolParam] | NotGiven = OPENAI_NOT_GIVEN,
|
285
285
|
tool_choice: ToolChoice | NotGiven = OPENAI_NOT_GIVEN,
|
286
286
|
response_format: ResponseFormat | NotGiven = OPENAI_NOT_GIVEN,
|
287
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
287
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
288
288
|
top_p: float | NotGiven | None = OPENAI_NOT_GIVEN,
|
289
289
|
skip_cutoff: bool = False,
|
290
290
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = OPENAI_NOT_GIVEN,
|
@@ -325,7 +325,7 @@ class AnthropicChatClient(BaseChatClient):
|
|
325
325
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
326
326
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
327
327
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
328
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
328
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
329
329
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
330
330
|
skip_cutoff: bool = False,
|
331
331
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = OPENAI_NOT_GIVEN,
|
@@ -366,7 +366,7 @@ class AnthropicChatClient(BaseChatClient):
|
|
366
366
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
367
367
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
368
368
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
369
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
369
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
370
370
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
371
371
|
skip_cutoff: bool = False,
|
372
372
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = OPENAI_NOT_GIVEN,
|
@@ -406,7 +406,7 @@ class AnthropicChatClient(BaseChatClient):
|
|
406
406
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
407
407
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
408
408
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
409
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
409
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
410
410
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
411
411
|
skip_cutoff: bool = False,
|
412
412
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = OPENAI_NOT_GIVEN,
|
@@ -889,7 +889,7 @@ class AsyncAnthropicChatClient(BaseAsyncChatClient):
|
|
889
889
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
890
890
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
891
891
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
892
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
892
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
893
893
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
894
894
|
skip_cutoff: bool = False,
|
895
895
|
audio: ChatCompletionAudioParam | OpenAINotGiven = OPENAI_NOT_GIVEN,
|
@@ -930,7 +930,7 @@ class AsyncAnthropicChatClient(BaseAsyncChatClient):
|
|
930
930
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
931
931
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
932
932
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
933
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
933
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
934
934
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
935
935
|
skip_cutoff: bool = False,
|
936
936
|
audio: ChatCompletionAudioParam | OpenAINotGiven = OPENAI_NOT_GIVEN,
|
@@ -971,7 +971,7 @@ class AsyncAnthropicChatClient(BaseAsyncChatClient):
|
|
971
971
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
972
972
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
973
973
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
974
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
974
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
975
975
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
976
976
|
skip_cutoff: bool = False,
|
977
977
|
audio: ChatCompletionAudioParam | OpenAINotGiven = OPENAI_NOT_GIVEN,
|
@@ -1011,7 +1011,7 @@ class AsyncAnthropicChatClient(BaseAsyncChatClient):
|
|
1011
1011
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
1012
1012
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
1013
1013
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
1014
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
1014
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
1015
1015
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
1016
1016
|
skip_cutoff: bool = False,
|
1017
1017
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = OPENAI_NOT_GIVEN,
|
@@ -230,7 +230,7 @@ class BaseChatClient(ABC):
|
|
230
230
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
231
231
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
232
232
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
233
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
233
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
234
234
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
235
235
|
skip_cutoff: bool = False,
|
236
236
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -272,7 +272,7 @@ class BaseChatClient(ABC):
|
|
272
272
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
273
273
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
274
274
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
275
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
275
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
276
276
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
277
277
|
skip_cutoff: bool = False,
|
278
278
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -314,7 +314,7 @@ class BaseChatClient(ABC):
|
|
314
314
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
315
315
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
316
316
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
317
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
317
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
318
318
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
319
319
|
skip_cutoff: bool = False,
|
320
320
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -355,7 +355,7 @@ class BaseChatClient(ABC):
|
|
355
355
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
356
356
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
357
357
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
358
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
358
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
359
359
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
360
360
|
skip_cutoff: bool = False,
|
361
361
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -394,7 +394,7 @@ class BaseChatClient(ABC):
|
|
394
394
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
395
395
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
396
396
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
397
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
397
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
398
398
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
399
399
|
skip_cutoff: bool = False,
|
400
400
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -651,7 +651,7 @@ class BaseAsyncChatClient(ABC):
|
|
651
651
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
652
652
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
653
653
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
654
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
654
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
655
655
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
656
656
|
skip_cutoff: bool = False,
|
657
657
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -693,7 +693,7 @@ class BaseAsyncChatClient(ABC):
|
|
693
693
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
694
694
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
695
695
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
696
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
696
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
697
697
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
698
698
|
skip_cutoff: bool = False,
|
699
699
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -735,7 +735,7 @@ class BaseAsyncChatClient(ABC):
|
|
735
735
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
736
736
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
737
737
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
738
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
738
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
739
739
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
740
740
|
skip_cutoff: bool = False,
|
741
741
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -776,7 +776,7 @@ class BaseAsyncChatClient(ABC):
|
|
776
776
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
777
777
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
778
778
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
779
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
779
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
780
780
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
781
781
|
skip_cutoff: bool = False,
|
782
782
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -815,7 +815,7 @@ class BaseAsyncChatClient(ABC):
|
|
815
815
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
816
816
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
817
817
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
818
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
818
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
819
819
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
820
820
|
skip_cutoff: bool = False,
|
821
821
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -110,7 +110,7 @@ class OpenAICompatibleChatClient(BaseChatClient):
|
|
110
110
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
111
111
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
112
112
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
113
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
113
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
114
114
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
115
115
|
skip_cutoff: bool = False,
|
116
116
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -151,7 +151,7 @@ class OpenAICompatibleChatClient(BaseChatClient):
|
|
151
151
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
152
152
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
153
153
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
154
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
154
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
155
155
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
156
156
|
skip_cutoff: bool = False,
|
157
157
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -192,7 +192,7 @@ class OpenAICompatibleChatClient(BaseChatClient):
|
|
192
192
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
193
193
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
194
194
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
195
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
195
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
196
196
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
197
197
|
skip_cutoff: bool = False,
|
198
198
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -232,7 +232,7 @@ class OpenAICompatibleChatClient(BaseChatClient):
|
|
232
232
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
233
233
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
234
234
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
235
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
235
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
236
236
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
237
237
|
skip_cutoff: bool = False,
|
238
238
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -271,6 +271,8 @@ class OpenAICompatibleChatClient(BaseChatClient):
|
|
271
271
|
top_p = NOT_GIVEN
|
272
272
|
if isinstance(max_tokens, AnthropicNotGiven):
|
273
273
|
max_tokens = NOT_GIVEN
|
274
|
+
if isinstance(stream_options, AnthropicNotGiven):
|
275
|
+
stream_options = NOT_GIVEN
|
274
276
|
|
275
277
|
raw_client = self.raw_client # 调用完 self.raw_client 后,self.model_id 会被赋值
|
276
278
|
self.model_setting = self.backend_settings.models[self.model]
|
@@ -663,7 +665,7 @@ class AsyncOpenAICompatibleChatClient(BaseAsyncChatClient):
|
|
663
665
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
664
666
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
665
667
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
666
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
668
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
667
669
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
668
670
|
skip_cutoff: bool = False,
|
669
671
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -704,7 +706,7 @@ class AsyncOpenAICompatibleChatClient(BaseAsyncChatClient):
|
|
704
706
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
705
707
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
706
708
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
707
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
709
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
708
710
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
709
711
|
skip_cutoff: bool = False,
|
710
712
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -745,7 +747,7 @@ class AsyncOpenAICompatibleChatClient(BaseAsyncChatClient):
|
|
745
747
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
746
748
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
747
749
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
748
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
750
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
749
751
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
750
752
|
skip_cutoff: bool = False,
|
751
753
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -785,7 +787,7 @@ class AsyncOpenAICompatibleChatClient(BaseAsyncChatClient):
|
|
785
787
|
tools: Iterable[ToolParam] | NotGiven = NOT_GIVEN,
|
786
788
|
tool_choice: ToolChoice | NotGiven = NOT_GIVEN,
|
787
789
|
response_format: ResponseFormat | NotGiven = NOT_GIVEN,
|
788
|
-
stream_options: ChatCompletionStreamOptionsParam |
|
790
|
+
stream_options: ChatCompletionStreamOptionsParam | NotGiven = NOT_GIVEN,
|
789
791
|
top_p: float | NotGiven | None = NOT_GIVEN,
|
790
792
|
skip_cutoff: bool = False,
|
791
793
|
audio: ChatCompletionAudioParam | OpenAINotGiven | None = NOT_GIVEN,
|
@@ -824,6 +826,8 @@ class AsyncOpenAICompatibleChatClient(BaseAsyncChatClient):
|
|
824
826
|
top_p = NOT_GIVEN
|
825
827
|
if isinstance(max_tokens, AnthropicNotGiven):
|
826
828
|
max_tokens = NOT_GIVEN
|
829
|
+
if isinstance(stream_options, AnthropicNotGiven):
|
830
|
+
stream_options = NOT_GIVEN
|
827
831
|
|
828
832
|
raw_client = self.raw_client # 调用完 self.raw_client 后,self.model_id 会被赋值
|
829
833
|
self.model_setting = self.backend_settings.models[self.model]
|
vectorvein/types/defaults.py
CHANGED
@@ -1236,4 +1236,11 @@ XAI_MODELS: Final[dict[str, ModelSettingDict]] = {
|
|
1236
1236
|
"response_format_available": True,
|
1237
1237
|
"native_multimodal": False,
|
1238
1238
|
},
|
1239
|
+
"grok-4": {
|
1240
|
+
"id": "grok-4",
|
1241
|
+
"context_length": 256000,
|
1242
|
+
"function_call_available": True,
|
1243
|
+
"response_format_available": True,
|
1244
|
+
"native_multimodal": False,
|
1245
|
+
},
|
1239
1246
|
}
|
@@ -1,15 +1,15 @@
|
|
1
|
-
vectorvein-0.3.
|
2
|
-
vectorvein-0.3.
|
3
|
-
vectorvein-0.3.
|
1
|
+
vectorvein-0.3.5.dist-info/METADATA,sha256=YxlNiVLLKtkDiHjgfxYtE6wh4tVrfQnt0IisHfZGngM,4566
|
2
|
+
vectorvein-0.3.5.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
|
3
|
+
vectorvein-0.3.5.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=FZlKLKoI4MwXCpXmHrgfn4sk6XpanEhBoqgUkNfPsMc,32706
|
7
7
|
vectorvein/api/exceptions.py,sha256=nL0YeSA_DFpaN5o_niNVWSHJQEoSnVQ6OeyVffuAMSs,738
|
8
8
|
vectorvein/api/models.py,sha256=ZzJ8zszcrC1IZynGVeYTPXHeJPcDVbLzpDniZA1BBaI,1415
|
9
9
|
vectorvein/chat_clients/__init__.py,sha256=UIytpIgwo8qkZpIyrHVxLYTyliUOTp4J7C4iHRjbtWE,23850
|
10
|
-
vectorvein/chat_clients/anthropic_client.py,sha256=
|
10
|
+
vectorvein/chat_clients/anthropic_client.py,sha256=I79mv-1nKjJjCx-IK-uyGAhrctEvNh_vBQe769BEyYw,68285
|
11
11
|
vectorvein/chat_clients/baichuan_client.py,sha256=CVMvpgjdrZGv0BWnTOBD-f2ufZ3wq3496wqukumsAr4,526
|
12
|
-
vectorvein/chat_clients/base_client.py,sha256=
|
12
|
+
vectorvein/chat_clients/base_client.py,sha256=4tpXhXCIF_icTCgG_JFVxFDK_56I7Yij7u--kV1r4S8,42054
|
13
13
|
vectorvein/chat_clients/deepseek_client.py,sha256=3qWu01NlJAP2N-Ff62d5-CZXZitlizE1fzb20LNetig,526
|
14
14
|
vectorvein/chat_clients/ernie_client.py,sha256=zSoHEVRsGw_J4eEd6-XEtMYY3Xohqcl_fScw1MGg1WI,505
|
15
15
|
vectorvein/chat_clients/gemini_client.py,sha256=ufovIZrmAE3RLEe8h5WXombf7bARAZxnkj6ydNK2FQM,475
|
@@ -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=A-XMrWF7WEMLUcN4SY-rktmfQKl9T12FLe5cC2Aj1pU,58367
|
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=_ThjCpU8OFBek2Hai1FkPZwZENZWEhmbHYriXzZ
|
|
32
32
|
vectorvein/settings/__init__.py,sha256=sbwUVC8niT9thGucRdARuE7ZwXafFEhkRm2dfnyHc7o,11400
|
33
33
|
vectorvein/settings/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
34
|
vectorvein/types/__init__.py,sha256=0XNY7FGPklSk0eKPR0ZgwG2kNqyZ0z3Z3G7oLP0ep8Y,3838
|
35
|
-
vectorvein/types/defaults.py,sha256=
|
35
|
+
vectorvein/types/defaults.py,sha256=P3qvbBkyOEt9RJHvh74UdnC-LMziGMyDKAEDBN9lQuw,40273
|
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=7_w8IWtGhqRqw9cyYeNNUyvE4b1fJPuYHdy77KVs2uQ,9655
|
@@ -65,4 +65,4 @@ vectorvein/workflow/utils/analyse.py,sha256=8kL3tAo6vOYkeg1zbMHyuuy16zuSRklFK_wA
|
|
65
65
|
vectorvein/workflow/utils/check.py,sha256=w-wmGeBO_zpQ5-7t3m_OZeVfSM6g_lsk1pZPAfdO_r4,11247
|
66
66
|
vectorvein/workflow/utils/json_to_code.py,sha256=HgCyc1h4hqZnT1HR0XqdLUzOIMtDw8Y0nTXXU5r2ZYw,7099
|
67
67
|
vectorvein/workflow/utils/layout.py,sha256=m8Jui-htCB6RwkkDwtj0elOdtkFsx7rSjdxwpRnYPFY,4500
|
68
|
-
vectorvein-0.3.
|
68
|
+
vectorvein-0.3.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|