gllm-inference-binary 0.5.1.post1__cp313-cp313-macosx_13_0_x86_64.whl → 0.5.3__cp313-cp313-macosx_13_0_x86_64.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.
Potentially problematic release.
This version of gllm-inference-binary might be problematic. Click here for more details.
- gllm_inference/constants.pyi +1 -0
- gllm_inference/em_invoker/azure_openai_em_invoker.pyi +1 -1
- gllm_inference/em_invoker/em_invoker.pyi +2 -2
- gllm_inference/em_invoker/google_em_invoker.pyi +1 -1
- gllm_inference/em_invoker/langchain_em_invoker.pyi +1 -1
- gllm_inference/em_invoker/openai_compatible_em_invoker.pyi +1 -1
- gllm_inference/em_invoker/openai_em_invoker.pyi +1 -1
- gllm_inference/em_invoker/twelevelabs_em_invoker.pyi +1 -1
- gllm_inference/em_invoker/voyage_em_invoker.pyi +1 -1
- gllm_inference/lm_invoker/anthropic_lm_invoker.pyi +1 -1
- gllm_inference/lm_invoker/azure_openai_lm_invoker.pyi +1 -1
- gllm_inference/lm_invoker/bedrock_lm_invoker.pyi +1 -1
- gllm_inference/lm_invoker/datasaur_lm_invoker.pyi +1 -1
- gllm_inference/lm_invoker/google_lm_invoker.pyi +1 -1
- gllm_inference/lm_invoker/langchain_lm_invoker.pyi +1 -1
- gllm_inference/lm_invoker/litellm_lm_invoker.pyi +1 -1
- gllm_inference/lm_invoker/lm_invoker.pyi +2 -2
- gllm_inference/lm_invoker/openai_compatible_lm_invoker.pyi +4 -3
- gllm_inference/lm_invoker/openai_lm_invoker.pyi +1 -1
- gllm_inference.cpython-313-darwin.so +0 -0
- {gllm_inference_binary-0.5.1.post1.dist-info → gllm_inference_binary-0.5.3.dist-info}/METADATA +1 -1
- {gllm_inference_binary-0.5.1.post1.dist-info → gllm_inference_binary-0.5.3.dist-info}/RECORD +23 -23
- {gllm_inference_binary-0.5.1.post1.dist-info → gllm_inference_binary-0.5.3.dist-info}/WHEEL +0 -0
gllm_inference/constants.pyi
CHANGED
|
@@ -81,5 +81,5 @@ class AzureOpenAIEMInvoker(OpenAIEMInvoker):
|
|
|
81
81
|
default_hyperparameters (dict[str, Any] | None, optional): Default hyperparameters for invoking the model.
|
|
82
82
|
Defaults to None.
|
|
83
83
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
84
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
84
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
85
85
|
"""
|
|
@@ -2,7 +2,7 @@ import abc
|
|
|
2
2
|
from _typeshed import Incomplete
|
|
3
3
|
from abc import ABC
|
|
4
4
|
from gllm_core.utils.retry import RetryConfig
|
|
5
|
-
from gllm_inference.constants import DOCUMENT_MIME_TYPES as DOCUMENT_MIME_TYPES
|
|
5
|
+
from gllm_inference.constants import DOCUMENT_MIME_TYPES as DOCUMENT_MIME_TYPES, INVOKER_DEFAULT_TIMEOUT as INVOKER_DEFAULT_TIMEOUT
|
|
6
6
|
from gllm_inference.exceptions import parse_error_message as parse_error_message
|
|
7
7
|
from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, EMContent as EMContent, ModelId as ModelId, Vector as Vector
|
|
8
8
|
from typing import Any
|
|
@@ -31,7 +31,7 @@ class BaseEMInvoker(ABC, metaclass=abc.ABCMeta):
|
|
|
31
31
|
supported_attachments (set[str] | None, optional): A set of supported attachment types. Defaults to None,
|
|
32
32
|
in which case an empty set is used (indicating that no attachments are supported).
|
|
33
33
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
34
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
34
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
35
35
|
"""
|
|
36
36
|
@property
|
|
37
37
|
def model_id(self) -> str:
|
|
@@ -115,7 +115,7 @@ class GoogleEMInvoker(BaseEMInvoker):
|
|
|
115
115
|
default_hyperparameters (dict[str, Any] | None, optional): Default hyperparameters for invoking the model.
|
|
116
116
|
Defaults to None.
|
|
117
117
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
118
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
118
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
119
119
|
|
|
120
120
|
Note:
|
|
121
121
|
If neither `api_key` nor `credentials_path` is provided, Google Gen AI will be used by default.
|
|
@@ -35,5 +35,5 @@ class LangChainEMInvoker(BaseEMInvoker):
|
|
|
35
35
|
default_hyperparameters (dict[str, Any] | None, optional): Default hyperparameters for invoking the model.
|
|
36
36
|
Defaults to None.
|
|
37
37
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
38
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
38
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
39
39
|
'''
|
|
@@ -86,5 +86,5 @@ class OpenAICompatibleEMInvoker(OpenAIEMInvoker):
|
|
|
86
86
|
default_hyperparameters (dict[str, Any] | None, optional): Default hyperparameters for invoking the model.
|
|
87
87
|
Defaults to None.
|
|
88
88
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
89
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
89
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
90
90
|
"""
|
|
@@ -80,5 +80,5 @@ class OpenAIEMInvoker(BaseEMInvoker):
|
|
|
80
80
|
default_hyperparameters (dict[str, Any] | None, optional): Default hyperparameters for invoking the model.
|
|
81
81
|
Defaults to None.
|
|
82
82
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
83
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
83
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
84
84
|
"""
|
|
@@ -94,5 +94,5 @@ class TwelveLabsEMInvoker(BaseEMInvoker):
|
|
|
94
94
|
default_hyperparameters (dict[str, Any] | None, optional): Default hyperparameters for invoking the model.
|
|
95
95
|
Defaults to None.
|
|
96
96
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
97
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
97
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
98
98
|
"""
|
|
@@ -96,5 +96,5 @@ class VoyageEMInvoker(BaseEMInvoker):
|
|
|
96
96
|
default_hyperparameters (dict[str, Any] | None, optional): Default hyperparameters for invoking the model.
|
|
97
97
|
Defaults to None.
|
|
98
98
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
99
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
99
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
100
100
|
"""
|
|
@@ -237,7 +237,7 @@ class AnthropicLMInvoker(BaseLMInvoker):
|
|
|
237
237
|
dictionary. Defaults to None.
|
|
238
238
|
output_analytics (bool, optional): Whether to output the invocation analytics. Defaults to False.
|
|
239
239
|
retry_config (RetryConfig | None, optional): The retry configuration for the language model.
|
|
240
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
240
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
241
241
|
thinking (bool, optional): Whether to enable thinking. Only allowed for thinking models. Defaults to False.
|
|
242
242
|
thinking_budget (int, optional): The tokens allocated for the thinking process. Must be greater than or
|
|
243
243
|
equal to 1024. Only allowed for thinking models. Defaults to DEFAULT_THINKING_BUDGET.
|
|
@@ -238,7 +238,7 @@ class AzureOpenAILMInvoker(OpenAILMInvoker):
|
|
|
238
238
|
dictionary. Defaults to None.
|
|
239
239
|
output_analytics (bool, optional): Whether to output the invocation analytics. Defaults to False.
|
|
240
240
|
retry_config (RetryConfig | None, optional): The retry configuration for the language model.
|
|
241
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
241
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
242
242
|
reasoning_effort (ReasoningEffort | None, optional): The reasoning effort for reasoning models. Not allowed
|
|
243
243
|
for non-reasoning models. If None, the model will perform medium reasoning effort. Defaults to None.
|
|
244
244
|
reasoning_summary (ReasoningSummary | None, optional): The reasoning summary level for reasoning models.
|
|
@@ -198,7 +198,7 @@ class BedrockLMInvoker(BaseLMInvoker):
|
|
|
198
198
|
dictionary. Defaults to None.
|
|
199
199
|
output_analytics (bool, optional): Whether to output the invocation analytics. Defaults to False.
|
|
200
200
|
retry_config (RetryConfig | None, optional): The retry configuration for the language model.
|
|
201
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
201
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
202
202
|
|
|
203
203
|
Raises:
|
|
204
204
|
ValueError: If `response_schema` is provided, but `tools` are also provided.
|
|
@@ -133,7 +133,7 @@ class DatasaurLMInvoker(OpenAICompatibleLMInvoker):
|
|
|
133
133
|
Defaults to None.
|
|
134
134
|
output_analytics (bool, optional): Whether to output the invocation analytics. Defaults to False.
|
|
135
135
|
retry_config (RetryConfig | None, optional): The retry configuration for the language model.
|
|
136
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
136
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
137
137
|
citations (bool, optional): Whether to output the citations. Defaults to False.
|
|
138
138
|
|
|
139
139
|
Raises:
|
|
@@ -274,7 +274,7 @@ class GoogleLMInvoker(BaseLMInvoker):
|
|
|
274
274
|
dictionary. Defaults to None.
|
|
275
275
|
output_analytics (bool, optional): Whether to output the invocation analytics. Defaults to False.
|
|
276
276
|
retry_config (RetryConfig | None, optional): The retry configuration for the language model.
|
|
277
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
277
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
278
278
|
thinking (bool | None, optional): Whether to enable thinking. Only allowed for thinking models.
|
|
279
279
|
Defaults to True for Gemini 2.5 Pro models and False for other models.
|
|
280
280
|
thinking_budget (int, optional): The tokens allowed for thinking process. Only allowed for thinking models.
|
|
@@ -224,7 +224,7 @@ class LangChainLMInvoker(BaseLMInvoker):
|
|
|
224
224
|
dictionary. Defaults to None.
|
|
225
225
|
output_analytics (bool, optional): Whether to output the invocation analytics. Defaults to False.
|
|
226
226
|
retry_config (RetryConfig | None, optional): The retry configuration for the language model.
|
|
227
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
227
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
228
228
|
|
|
229
229
|
Raises:
|
|
230
230
|
ValueError: If `response_schema` is provided, but `tools` are also provided.
|
|
@@ -240,7 +240,7 @@ class LiteLLMLMInvoker(OpenAICompatibleLMInvoker):
|
|
|
240
240
|
dictionary. Defaults to None.
|
|
241
241
|
output_analytics (bool, optional): Whether to output the invocation analytics. Defaults to False.
|
|
242
242
|
retry_config (RetryConfig | None, optional): The retry configuration for the language model.
|
|
243
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
243
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
244
244
|
reasoning_effort (ReasoningEffort | None, optional): The reasoning effort for reasoning models.
|
|
245
245
|
Defaults to None.
|
|
246
246
|
"""
|
|
@@ -3,7 +3,7 @@ from _typeshed import Incomplete
|
|
|
3
3
|
from abc import ABC
|
|
4
4
|
from gllm_core.event import EventEmitter as EventEmitter
|
|
5
5
|
from gllm_core.utils.retry import RetryConfig
|
|
6
|
-
from gllm_inference.constants import DOCUMENT_MIME_TYPES as DOCUMENT_MIME_TYPES
|
|
6
|
+
from gllm_inference.constants import DOCUMENT_MIME_TYPES as DOCUMENT_MIME_TYPES, INVOKER_DEFAULT_TIMEOUT as INVOKER_DEFAULT_TIMEOUT
|
|
7
7
|
from gllm_inference.exceptions import parse_error_message as parse_error_message
|
|
8
8
|
from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, EmitDataType as EmitDataType, LMOutput as LMOutput, Message as Message, MessageContent as MessageContent, MessageRole as MessageRole, ModelId as ModelId, Reasoning as Reasoning, ResponseSchema as ResponseSchema, ToolCall as ToolCall, ToolResult as ToolResult
|
|
9
9
|
from langchain_core.tools import Tool as Tool
|
|
@@ -62,7 +62,7 @@ class BaseLMInvoker(ABC, metaclass=abc.ABCMeta):
|
|
|
62
62
|
dictionary. Defaults to None.
|
|
63
63
|
output_analytics (bool, optional): Whether to output the invocation analytics. Defaults to False.
|
|
64
64
|
retry_config (RetryConfig | None, optional): The retry configuration for the language model.
|
|
65
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
65
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
66
66
|
"""
|
|
67
67
|
@property
|
|
68
68
|
def model_id(self) -> str:
|
|
@@ -231,13 +231,14 @@ class OpenAICompatibleLMInvoker(BaseLMInvoker):
|
|
|
231
231
|
'''
|
|
232
232
|
client: Incomplete
|
|
233
233
|
def __init__(self, model_name: str, base_url: str, api_key: str | None = None, model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, tools: list[Tool] | None = None, response_schema: ResponseSchema | None = None, output_analytics: bool = False, retry_config: RetryConfig | None = None, reasoning_effort: ReasoningEffort | None = None) -> None:
|
|
234
|
-
|
|
234
|
+
'''Initializes a new instance of the OpenAICompatibleLMInvoker class.
|
|
235
235
|
|
|
236
236
|
Args:
|
|
237
237
|
model_name (str): The name of the language model hosted on the OpenAI compatible endpoint.
|
|
238
238
|
base_url (str): The base URL for the OpenAI compatible endpoint.
|
|
239
239
|
api_key (str | None, optional): The API key for authenticating with the OpenAI compatible endpoint.
|
|
240
240
|
Defaults to None, in which case the `OPENAI_API_KEY` environment variable will be used.
|
|
241
|
+
If the endpoint does not require an API key, a dummy value can be passed (e.g. "<empty>").
|
|
241
242
|
model_kwargs (dict[str, Any] | None, optional): Additional model parameters. Defaults to None.
|
|
242
243
|
default_hyperparameters (dict[str, Any] | None, optional): Default hyperparameters for invoking the model.
|
|
243
244
|
Defaults to None.
|
|
@@ -248,9 +249,9 @@ class OpenAICompatibleLMInvoker(BaseLMInvoker):
|
|
|
248
249
|
dictionary. Defaults to None.
|
|
249
250
|
output_analytics (bool, optional): Whether to output the invocation analytics. Defaults to False.
|
|
250
251
|
retry_config (RetryConfig | None, optional): The retry configuration for the language model.
|
|
251
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
252
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
252
253
|
reasoning_effort (str | None, optional): The reasoning effort for the language model. Defaults to None.
|
|
253
|
-
|
|
254
|
+
'''
|
|
254
255
|
def set_response_schema(self, response_schema: ResponseSchema | None) -> None:
|
|
255
256
|
"""Sets the response schema for the language model hosted on the OpenAI compatible endpoint.
|
|
256
257
|
|
|
@@ -335,7 +335,7 @@ class OpenAILMInvoker(BaseLMInvoker):
|
|
|
335
335
|
dictionary. Defaults to None.
|
|
336
336
|
output_analytics (bool, optional): Whether to output the invocation analytics. Defaults to False.
|
|
337
337
|
retry_config (RetryConfig | None, optional): The retry configuration for the language model.
|
|
338
|
-
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout
|
|
338
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
339
339
|
reasoning_effort (ReasoningEffort | None, optional): The reasoning effort for reasoning models. Not allowed
|
|
340
340
|
for non-reasoning models. If None, the model will perform medium reasoning effort. Defaults to None.
|
|
341
341
|
reasoning_summary (ReasoningSummary | None, optional): The reasoning summary level for reasoning models.
|
|
Binary file
|
{gllm_inference_binary-0.5.1.post1.dist-info → gllm_inference_binary-0.5.3.dist-info}/RECORD
RENAMED
|
@@ -8,35 +8,35 @@ gllm_inference/catalog/__init__.pyi,sha256=JBkPGTyiiZ30GECzJBW-mW8LekWyY2qyzal3e
|
|
|
8
8
|
gllm_inference/catalog/catalog.pyi,sha256=a4RNG1lKv51GxQpOqh47tz-PAROMPaeP2o5XNLBSZaU,4790
|
|
9
9
|
gllm_inference/catalog/lm_request_processor_catalog.pyi,sha256=wjzufPEqey-byBU3hPWwEawT9c182WwjzSWOJ2bnqIs,4599
|
|
10
10
|
gllm_inference/catalog/prompt_builder_catalog.pyi,sha256=o4JSzISjlStBataofZ2MB2_t3wnGTkkFJ3Dm_NSm5qo,3159
|
|
11
|
-
gllm_inference/constants.pyi,sha256=
|
|
11
|
+
gllm_inference/constants.pyi,sha256=A16iMdS6QLnDx7ToiVuu1rSxvEwcr0OMrghPUGQL0L4,220
|
|
12
12
|
gllm_inference/em_invoker/__init__.pyi,sha256=XESsrYo1PZeeHe7AMRyuzKoV7XDD5oN89ZTH01zRf4k,873
|
|
13
|
-
gllm_inference/em_invoker/azure_openai_em_invoker.pyi,sha256=
|
|
14
|
-
gllm_inference/em_invoker/em_invoker.pyi,sha256=
|
|
15
|
-
gllm_inference/em_invoker/google_em_invoker.pyi,sha256=
|
|
13
|
+
gllm_inference/em_invoker/azure_openai_em_invoker.pyi,sha256=1HgCMcw7Hqv2ah4v9ma1Ioa-PpI-v2g7MfuKxxk2ZPU,4473
|
|
14
|
+
gllm_inference/em_invoker/em_invoker.pyi,sha256=hiH8FB5R-KxhI8Ds2htF3cjRcIcH92yHPcOdpgc4FDo,4341
|
|
15
|
+
gllm_inference/em_invoker/google_em_invoker.pyi,sha256=LQDUdsnOrB6ihBh0VdoOZHzFrY5dE3wWgBsl_slr1SI,6067
|
|
16
16
|
gllm_inference/em_invoker/langchain/__init__.pyi,sha256=VYGKE5OgU0my1RlhgzkU_A7-GLGnUDDnNFuctuRwILE,148
|
|
17
17
|
gllm_inference/em_invoker/langchain/em_invoker_embeddings.pyi,sha256=6nASLqi0FXCpqyYPl7kM3g7hAW-xS5ZwsS3GFudns98,2347
|
|
18
|
-
gllm_inference/em_invoker/langchain_em_invoker.pyi,sha256=
|
|
19
|
-
gllm_inference/em_invoker/openai_compatible_em_invoker.pyi,sha256=
|
|
20
|
-
gllm_inference/em_invoker/openai_em_invoker.pyi,sha256=
|
|
18
|
+
gllm_inference/em_invoker/langchain_em_invoker.pyi,sha256=HSusS_ef5VZ20HPBFe153olueYOGQ57hmKY4406LUcE,2577
|
|
19
|
+
gllm_inference/em_invoker/openai_compatible_em_invoker.pyi,sha256=GkoL-Z_Rl5v_NwcbvhUE6quLr6F9KnUB6Sb9Q712hNM,4802
|
|
20
|
+
gllm_inference/em_invoker/openai_em_invoker.pyi,sha256=Gdyh93f8Mi3JYqnV1sBnYk1LAZpcsP47JeLjWxqyins,4070
|
|
21
21
|
gllm_inference/em_invoker/schema/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
gllm_inference/em_invoker/schema/twelvelabs.pyi,sha256=y9nfqvuzs0o1jlZ5bwNmJkMSmvHAwBElWNMU0wJNc64,334
|
|
23
23
|
gllm_inference/em_invoker/schema/voyage.pyi,sha256=7d9hv8uCJ4NboRaqK77g5ekb0X78pPW__sz2EYeKJKw,219
|
|
24
|
-
gllm_inference/em_invoker/twelevelabs_em_invoker.pyi,sha256=
|
|
25
|
-
gllm_inference/em_invoker/voyage_em_invoker.pyi,sha256=
|
|
24
|
+
gllm_inference/em_invoker/twelevelabs_em_invoker.pyi,sha256=9QctCbM6c9q5eHKIYEwVlhDmzcCysQupiT-4e8hllPE,4964
|
|
25
|
+
gllm_inference/em_invoker/voyage_em_invoker.pyi,sha256=17NBfuii3FyBbNtNRT2y6FUMTMsDemanXnY1j_0dmZg,5032
|
|
26
26
|
gllm_inference/exceptions/__init__.pyi,sha256=v9uxjW5DssIn7n_bKqT7L83CeqFET2Z45GFOvi78UuE,977
|
|
27
27
|
gllm_inference/exceptions/error_parser.pyi,sha256=4RkVfS2Fl9kjz_h2bK9eoAeI-Y-VkHcUqXWj68BsYig,2393
|
|
28
28
|
gllm_inference/exceptions/exceptions.pyi,sha256=5YRackwVNvyOJjOtiVszqu8q87s8ioXTa-XwaYmeiC4,4643
|
|
29
29
|
gllm_inference/lm_invoker/__init__.pyi,sha256=8oUFgavpItvjRUqsLqLSHqQVIPyTKCgNQ_euf58H2zY,1104
|
|
30
|
-
gllm_inference/lm_invoker/anthropic_lm_invoker.pyi,sha256=
|
|
31
|
-
gllm_inference/lm_invoker/azure_openai_lm_invoker.pyi,sha256=
|
|
32
|
-
gllm_inference/lm_invoker/bedrock_lm_invoker.pyi,sha256=
|
|
33
|
-
gllm_inference/lm_invoker/datasaur_lm_invoker.pyi,sha256=
|
|
34
|
-
gllm_inference/lm_invoker/google_lm_invoker.pyi,sha256=
|
|
35
|
-
gllm_inference/lm_invoker/langchain_lm_invoker.pyi,sha256=
|
|
36
|
-
gllm_inference/lm_invoker/litellm_lm_invoker.pyi,sha256=
|
|
37
|
-
gllm_inference/lm_invoker/lm_invoker.pyi,sha256=
|
|
38
|
-
gllm_inference/lm_invoker/openai_compatible_lm_invoker.pyi,sha256=
|
|
39
|
-
gllm_inference/lm_invoker/openai_lm_invoker.pyi,sha256=
|
|
30
|
+
gllm_inference/lm_invoker/anthropic_lm_invoker.pyi,sha256=Ihq8U4w_efN74gf-nDFUY_zXO4Hf4KYZ2YhWcu9MqNA,14663
|
|
31
|
+
gllm_inference/lm_invoker/azure_openai_lm_invoker.pyi,sha256=98ecMvAsEKEYNS1HehL3xTKT3MLdI9AfmJVOi9jeHXM,14407
|
|
32
|
+
gllm_inference/lm_invoker/bedrock_lm_invoker.pyi,sha256=0ZeBJ_PWuFY2dOlON11VsI4BENhFJhK4md-8DwNpcyU,12300
|
|
33
|
+
gllm_inference/lm_invoker/datasaur_lm_invoker.pyi,sha256=EzovSc7FXXZLoRrOuA2rFHmBAcBEohoBaUkAFk7hQig,9049
|
|
34
|
+
gllm_inference/lm_invoker/google_lm_invoker.pyi,sha256=dRK3_--UQEBEMkLItav9MeTXp5p-iM-pqzt2JnwocPU,16393
|
|
35
|
+
gllm_inference/lm_invoker/langchain_lm_invoker.pyi,sha256=2p-JM7XojIi20wxKvu1n6eJWVeQz6P069M3Quoe5ViE,13018
|
|
36
|
+
gllm_inference/lm_invoker/litellm_lm_invoker.pyi,sha256=ad_tVyOjATiFyYF-f_1vX2Sl4BXy-fDXEW_D8fD1Db8,13037
|
|
37
|
+
gllm_inference/lm_invoker/lm_invoker.pyi,sha256=XvcR2AAH_vnIdZ3cgDer59ZT724mW22_OSF8mpeo_kk,7610
|
|
38
|
+
gllm_inference/lm_invoker/openai_compatible_lm_invoker.pyi,sha256=gHYFz7S8kTq1qkh-kqXOxkBAydUWxXJyoyNkL90Kvig,14759
|
|
39
|
+
gllm_inference/lm_invoker/openai_lm_invoker.pyi,sha256=EsWW-XPmpmQ_27jFezJgT5lbpQf1Hj4O6MCvN63M3v0,19325
|
|
40
40
|
gllm_inference/lm_invoker/schema/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
gllm_inference/lm_invoker/schema/anthropic.pyi,sha256=Y7NAjB7H0Wmiwv3YGZuG83K1rOCjSDB6hoZ6LjndWss,971
|
|
42
42
|
gllm_inference/lm_invoker/schema/bedrock.pyi,sha256=FOUMZkBi6KRa__mYoy3FNJ5sP0EC6rgLuhoijnwelIg,927
|
|
@@ -86,8 +86,8 @@ gllm_inference/utils/__init__.pyi,sha256=npmBmmlBv7cPHMg1hdL3S2_RelD6vk_LhCsGELh
|
|
|
86
86
|
gllm_inference/utils/langchain.pyi,sha256=VluQiHkGigDdqLUbhB6vnXiISCP5hHqV0qokYY6dC1A,1164
|
|
87
87
|
gllm_inference/utils/validation.pyi,sha256=toxBtRp-VItC_X7sNi-GDd7sjibBdWMrR0q01OI2D7k,385
|
|
88
88
|
gllm_inference.build/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
|
|
89
|
-
gllm_inference.cpython-313-darwin.so,sha256=
|
|
89
|
+
gllm_inference.cpython-313-darwin.so,sha256=12sY6fQxqBV8yhiY7pn5Vv6DyvX5JEhPiMHb-JSPZgw,3671744
|
|
90
90
|
gllm_inference.pyi,sha256=xOoh8lTQxXc6A4XYKBobWn8RJNszAlinAmbHPJyqi30,3315
|
|
91
|
-
gllm_inference_binary-0.5.
|
|
92
|
-
gllm_inference_binary-0.5.
|
|
93
|
-
gllm_inference_binary-0.5.
|
|
91
|
+
gllm_inference_binary-0.5.3.dist-info/METADATA,sha256=LQwhpH5UQfLEnYFCD2FxH_0CbhikVjdAD2-LGn33yBk,4531
|
|
92
|
+
gllm_inference_binary-0.5.3.dist-info/WHEEL,sha256=PCOZcL_jcbAVhuFR5ylE4Mr-7HPGHAcfJk9OpuMh7RQ,107
|
|
93
|
+
gllm_inference_binary-0.5.3.dist-info/RECORD,,
|
|
File without changes
|