gllm-inference-binary 0.5.55__cp313-cp313-win_amd64.whl → 0.5.57__cp313-cp313-win_amd64.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.

@@ -1,9 +1,8 @@
1
1
  from _typeshed import Incomplete
2
- from gllm_core.utils.retry import RetryConfig as RetryConfig
2
+ from gllm_core.utils import RetryConfig as RetryConfig
3
3
  from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
4
4
  from gllm_inference.em_invoker.schema.cohere import CohereInputType as CohereInputType, Key as Key
5
5
  from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, EMContent as EMContent, ModelId as ModelId, ModelProvider as ModelProvider, TruncationConfig as TruncationConfig, Vector as Vector
6
- from gllm_inference.utils import validate_string_enum as validate_string_enum
7
6
  from typing import Any
8
7
 
9
8
  SUPPORTED_ATTACHMENTS: Incomplete
@@ -31,10 +31,10 @@ class GoogleLMInvoker(BaseLMInvoker):
31
31
  structured response as defined by the schema. Supports both Pydantic BaseModel and JSON schema dictionary.
32
32
  output_analytics (bool): Whether to output the invocation analytics.
33
33
  retry_config (RetryConfig | None): The retry configuration for the language model.
34
- generate_image (bool): Whether to generate image. Only allowed for image generation models.
35
34
  thinking (bool): Whether to enable thinking. Only allowed for thinking models.
36
35
  thinking_budget (int): The tokens allowed for thinking process. Only allowed for thinking models.
37
36
  If set to -1, the model will control the budget automatically.
37
+ image_generation (bool): Whether to generate image. Only allowed for image generation models.
38
38
 
39
39
  Basic usage:
40
40
  The `GoogleLMInvoker` can be used as follows:
@@ -262,7 +262,7 @@ class GoogleLMInvoker(BaseLMInvoker):
262
262
  ```
263
263
  '''
264
264
  client_params: Incomplete
265
- generate_image: Incomplete
265
+ image_generation: Incomplete
266
266
  thinking: Incomplete
267
267
  thinking_budget: Incomplete
268
268
  def __init__(self, model_name: str, api_key: str | None = None, credentials_path: str | None = None, project_id: str | None = None, location: str = 'us-central1', model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, tools: list[Tool | LangChainTool] | None = None, response_schema: ResponseSchema | None = None, output_analytics: bool = False, retry_config: RetryConfig | None = None, thinking: bool | None = None, thinking_budget: int = ..., simplify_events: bool = False) -> None:
@@ -1,12 +1,11 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.event import EventEmitter as EventEmitter
3
3
  from gllm_core.schema.tool import Tool as Tool
4
- from gllm_core.utils.retry import RetryConfig as RetryConfig
4
+ from gllm_core.utils import RetryConfig as RetryConfig
5
5
  from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES, OPENAI_DEFAULT_URL as OPENAI_DEFAULT_URL
6
6
  from gllm_inference.lm_invoker.lm_invoker import BaseLMInvoker as BaseLMInvoker
7
7
  from gllm_inference.lm_invoker.schema.openai_chat_completions import InputType as InputType, Key as Key, ReasoningEffort as ReasoningEffort
8
8
  from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, LMOutput as LMOutput, Message as Message, MessageRole as MessageRole, ModelId as ModelId, ModelProvider as ModelProvider, Reasoning as Reasoning, ResponseSchema as ResponseSchema, ThinkingEvent as ThinkingEvent, TokenUsage as TokenUsage, ToolCall as ToolCall, ToolResult as ToolResult
9
- from gllm_inference.utils import validate_string_enum as validate_string_enum
10
9
  from langchain_core.tools import Tool as LangChainTool
11
10
  from typing import Any
12
11
 
@@ -1,12 +1,11 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.event import EventEmitter as EventEmitter
3
3
  from gllm_core.schema.tool import Tool as Tool
4
- from gllm_core.utils.retry import RetryConfig as RetryConfig
4
+ from gllm_core.utils import RetryConfig as RetryConfig
5
5
  from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES, OPENAI_DEFAULT_URL as OPENAI_DEFAULT_URL
6
6
  from gllm_inference.lm_invoker.lm_invoker import BaseLMInvoker as BaseLMInvoker
7
7
  from gllm_inference.lm_invoker.schema.openai import InputType as InputType, Key as Key, OutputType as OutputType, ReasoningEffort as ReasoningEffort, ReasoningSummary as ReasoningSummary
8
8
  from gllm_inference.schema import ActivityEvent as ActivityEvent, Attachment as Attachment, AttachmentType as AttachmentType, CodeEvent as CodeEvent, CodeExecResult as CodeExecResult, LMOutput as LMOutput, MCPCall as MCPCall, MCPCallActivity as MCPCallActivity, MCPListToolsActivity as MCPListToolsActivity, MCPServer as MCPServer, Message as Message, MessageRole as MessageRole, ModelId as ModelId, ModelProvider as ModelProvider, Reasoning as Reasoning, ResponseSchema as ResponseSchema, ThinkingEvent as ThinkingEvent, TokenUsage as TokenUsage, ToolCall as ToolCall, ToolResult as ToolResult, WebSearchActivity as WebSearchActivity
9
- from gllm_inference.utils import validate_string_enum as validate_string_enum
10
9
  from langchain_core.tools import Tool as LangChainTool
11
10
  from typing import Any
12
11
 
@@ -37,6 +36,7 @@ class OpenAILMInvoker(BaseLMInvoker):
37
36
  for non-reasoning models. If None, the model will perform medium reasoning effort.
38
37
  reasoning_summary (ReasoningSummary | None): The reasoning summary level for reasoning models. Not allowed
39
38
  for non-reasoning models. If None, no summary will be generated.
39
+ image_generation (bool): Whether to enable image generation.
40
40
  mcp_servers (list[MCPServer]): The list of MCP servers to enable MCP tool calling.
41
41
  code_interpreter (bool): Whether to enable the code interpreter.
42
42
  web_search (bool): Whether to enable the web search.
@@ -124,6 +124,35 @@ class OpenAILMInvoker(BaseLMInvoker):
124
124
 
125
125
  When structured output is enabled, streaming is disabled.
126
126
 
127
+ Image generation:
128
+ The `OpenAILMInvoker` can be configured to generate images.
129
+ This feature can be enabled by setting the `image_generation` parameter to `True`.
130
+
131
+ Image outputs are stored in the `outputs` attribute of the `LMOutput` object and can be accessed
132
+ via the `attachments` property.
133
+
134
+ Usage example:
135
+ ```python
136
+ lm_invoker = OpenAILMInvoker(..., image_generation=True)
137
+ result = await lm_invoker.invoke("Create a picture...")
138
+ result.attachments[0].write_to_file("path/to/local/image.png")
139
+ ```
140
+
141
+ Output example:
142
+ ```python
143
+ LMOutput(
144
+ outputs=[
145
+ LMOutputItem(
146
+ type="attachment",
147
+ output=Attachment(filename="image.png", mime_type="image/png", data=b"..."),
148
+ ),
149
+ ],
150
+ )
151
+ ```
152
+
153
+ When image generation is enabled, streaming is disabled.
154
+ Image generation is only available for certain models.
155
+
127
156
  Tool calling:
128
157
  The `OpenAILMInvoker` can be configured to call tools to perform certain tasks.
129
158
  This feature can be enabled by providing a list of `Tool` objects to the `tools` parameter.
@@ -355,7 +384,7 @@ class OpenAILMInvoker(BaseLMInvoker):
355
384
  ```
356
385
  '''
357
386
  client_kwargs: Incomplete
358
- def __init__(self, model_name: str, api_key: str | None = None, base_url: str = ..., model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, tools: list[Tool | LangChainTool] | None = None, response_schema: ResponseSchema | None = None, output_analytics: bool = False, retry_config: RetryConfig | None = None, reasoning_effort: ReasoningEffort | None = None, reasoning_summary: ReasoningSummary | None = None, mcp_servers: list[MCPServer] | None = None, code_interpreter: bool = False, web_search: bool = False, simplify_events: bool = False) -> None:
387
+ def __init__(self, model_name: str, api_key: str | None = None, base_url: str = ..., model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, tools: list[Tool | LangChainTool] | None = None, response_schema: ResponseSchema | None = None, output_analytics: bool = False, retry_config: RetryConfig | None = None, reasoning_effort: ReasoningEffort | None = None, reasoning_summary: ReasoningSummary | None = None, image_generation: bool = False, mcp_servers: list[MCPServer] | None = None, code_interpreter: bool = False, web_search: bool = False, simplify_events: bool = False) -> None:
359
388
  '''Initializes a new instance of the OpenAILMInvoker class.
360
389
 
361
390
  Args:
@@ -380,6 +409,7 @@ class OpenAILMInvoker(BaseLMInvoker):
380
409
  for non-reasoning models. If None, the model will perform medium reasoning effort. Defaults to None.
381
410
  reasoning_summary (ReasoningSummary | None, optional): The reasoning summary level for reasoning models.
382
411
  Not allowed for non-reasoning models. If None, no summary will be generated. Defaults to None.
412
+ image_generation (bool, optional): Whether to enable image generation. Defaults to False.
383
413
  mcp_servers (list[MCPServer] | None, optional): The MCP servers containing tools to be accessed by the
384
414
  language model. Defaults to None.
385
415
  code_interpreter (bool, optional): Whether to enable the code interpreter. Defaults to False.
@@ -18,6 +18,7 @@ class Key:
18
18
  FILENAME: str
19
19
  FORMAT: str
20
20
  ID: str
21
+ IMAGE_GENERATION_CALL: str
21
22
  IMAGE_URL: str
22
23
  INCLUDE: str
23
24
  INCOMPLETE_DETAILS: str
@@ -54,6 +55,7 @@ class InputType:
54
55
  FUNCTION: str
55
56
  FUNCTION_CALL: str
56
57
  FUNCTION_CALL_OUTPUT: str
58
+ IMAGE_GENERATION: str
57
59
  INPUT_FILE: str
58
60
  INPUT_IMAGE: str
59
61
  INPUT_TEXT: str
@@ -1,14 +1,13 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.event import EventEmitter as EventEmitter
3
- from gllm_core.schema.tool import Tool as Tool
4
- from gllm_core.utils.retry import RetryConfig as RetryConfig
3
+ from gllm_core.schema import Tool as Tool
4
+ from gllm_core.utils import RetryConfig as RetryConfig
5
5
  from gllm_inference.constants import GRPC_ENABLE_RETRIES_KEY as GRPC_ENABLE_RETRIES_KEY, INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
6
6
  from gllm_inference.exceptions import BaseInvokerError as BaseInvokerError, InvokerRuntimeError as InvokerRuntimeError, build_debug_info as build_debug_info
7
7
  from gllm_inference.exceptions.provider_error_map import GRPC_STATUS_CODE_MAPPING as GRPC_STATUS_CODE_MAPPING
8
8
  from gllm_inference.lm_invoker.lm_invoker import BaseLMInvoker as BaseLMInvoker
9
9
  from gllm_inference.lm_invoker.schema.xai import Key as Key, ReasoningEffort as ReasoningEffort
10
10
  from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, LMOutput as LMOutput, Message as Message, MessageRole as MessageRole, ModelId as ModelId, ModelProvider as ModelProvider, Reasoning as Reasoning, ResponseSchema as ResponseSchema, ThinkingEvent as ThinkingEvent, TokenUsage as TokenUsage, ToolCall as ToolCall, ToolResult as ToolResult
11
- from gllm_inference.utils.validation import validate_string_enum as validate_string_enum
12
11
  from langchain_core.tools import Tool as LangChainTool
13
12
  from typing import Any
14
13
 
@@ -52,6 +52,28 @@ class LMOutput(BaseModel):
52
52
  token_usage: TokenUsage | None
53
53
  duration: float | None
54
54
  finish_details: dict[str, Any]
55
+ def __init__(self, *, outputs: list[LMOutputItem] | None = None, token_usage: TokenUsage | None = None, duration: float | None = None, finish_details: dict[str, Any] | None = None, response: str = '', structured_output: dict[str, Any] | BaseModel | None = None, tool_calls: list[ToolCall] | None = None, reasoning: list[Reasoning] | None = None, attachments: list[Attachment] | None = None, citations: list[Chunk] | None = None, code_exec_results: list[CodeExecResult] | None = None, mcp_calls: list[MCPCall] | None = None) -> None:
56
+ """Initialize the LMOutput.
57
+
58
+ This constructor is created for backward compatibility with the legacy method to initialize the LMOutput.
59
+ This constructor will be removed in v0.6.
60
+
61
+ Args:
62
+ outputs (list[LMOutputItem] | None, optional): The output items. Defaults to an empty list.
63
+ token_usage (TokenUsage | None, optional): The token usage analytics. Defaults to None.
64
+ duration (float | None, optional): The duration of the invocation in seconds. Defaults to None.
65
+ finish_details (dict[str, Any] | None, optional): The details about how the generation finished.
66
+ Defaults to an empty dictionary.
67
+ response (str, optional): The first text response. Defaults to an empty string.
68
+ structured_output (dict[str, Any] | BaseModel | None, optional): The first structured output.
69
+ Defaults to None.
70
+ tool_calls (list[ToolCall] | None, optional): The tool calls. Defaults to None.
71
+ reasoning (list[Reasoning] | None, optional): The thinkings. Defaults to None.
72
+ attachments (list[Attachment] | None, optional): The attachments. Defaults to None.
73
+ citations (list[Chunk] | None, optional): The citations. Defaults to None.
74
+ code_exec_results (list[CodeExecResult] | None, optional): The code exec results. Defaults to None.
75
+ mcp_calls (list[MCPCall] | None, optional): The MCP calls. Defaults to None.
76
+ """
55
77
  @property
56
78
  def response(self) -> str:
57
79
  """Deprecated property to get the first text response from the LMOutput.
@@ -59,6 +81,13 @@ class LMOutput(BaseModel):
59
81
  Returns:
60
82
  str: The first text response from the LMOutput.
61
83
  """
84
+ @response.setter
85
+ def response(self, value: str) -> None:
86
+ """Deprecated setter to set the first text response to the LMOutput.
87
+
88
+ Args:
89
+ value (str): The first text response to set.
90
+ """
62
91
  @property
63
92
  def text(self) -> str:
64
93
  """Get the first text from the LMOutput.
@@ -73,6 +102,13 @@ class LMOutput(BaseModel):
73
102
  Returns:
74
103
  dict[str, Any] | BaseModel | None: The first structured output from the LMOutput.
75
104
  """
105
+ @structured_output.setter
106
+ def structured_output(self, value: dict[str, Any] | BaseModel) -> None:
107
+ """Deprecated setter to set the first structured output to the LMOutput.
108
+
109
+ Args:
110
+ value (dict[str, Any] | BaseModel): The first structured output to set.
111
+ """
76
112
  @property
77
113
  def texts(self) -> list[str]:
78
114
  """Get the texts from the LMOutput.
@@ -94,6 +130,13 @@ class LMOutput(BaseModel):
94
130
  Returns:
95
131
  list[Attachment]: The attachments from the LMOutput.
96
132
  """
133
+ @attachments.setter
134
+ def attachments(self, value: list[Attachment]) -> None:
135
+ """Deprecated setter to set the attachments to the LMOutput.
136
+
137
+ Args:
138
+ value (list[Attachment]): The attachments to set.
139
+ """
97
140
  @property
98
141
  def tool_calls(self) -> list[ToolCall]:
99
142
  """Get the tool calls from the LMOutput.
@@ -101,6 +144,13 @@ class LMOutput(BaseModel):
101
144
  Returns:
102
145
  list[ToolCall]: The tool calls from the LMOutput.
103
146
  """
147
+ @tool_calls.setter
148
+ def tool_calls(self, value: list[ToolCall]) -> None:
149
+ """Deprecated setter to set the tool calls to the LMOutput.
150
+
151
+ Args:
152
+ value (list[ToolCall]): The tool calls to set.
153
+ """
104
154
  @property
105
155
  def reasoning(self) -> list[Reasoning]:
106
156
  """Deprecated property to get the thinkings from the LMOutput.
@@ -108,6 +158,13 @@ class LMOutput(BaseModel):
108
158
  Returns:
109
159
  list[Reasoning]: The thinkings from the LMOutput.
110
160
  """
161
+ @reasoning.setter
162
+ def reasoning(self, value: list[Reasoning]) -> None:
163
+ """Deprecated setter to set the thinkings to the LMOutput.
164
+
165
+ Args:
166
+ value (list[Reasoning]): The thinkings to set.
167
+ """
111
168
  @property
112
169
  def thinkings(self) -> list[Reasoning]:
113
170
  """Get the thinkings from the LMOutput.
@@ -122,6 +179,13 @@ class LMOutput(BaseModel):
122
179
  Returns:
123
180
  list[Chunk]: The citations from the LMOutput.
124
181
  """
182
+ @citations.setter
183
+ def citations(self, value: list[Chunk]) -> None:
184
+ """Deprecated setter to set the citations to the LMOutput.
185
+
186
+ Args:
187
+ value (list[Chunk]): The citations to set.
188
+ """
125
189
  @property
126
190
  def code_exec_results(self) -> list[CodeExecResult]:
127
191
  """Get the code exec results from the LMOutput.
@@ -129,6 +193,13 @@ class LMOutput(BaseModel):
129
193
  Returns:
130
194
  list[CodeExecResult]: The code exec results from the LMOutput.
131
195
  """
196
+ @code_exec_results.setter
197
+ def code_exec_results(self, value: list[CodeExecResult]) -> None:
198
+ """Deprecated setter to set the code exec results to the LMOutput.
199
+
200
+ Args:
201
+ value (list[CodeExecResult]): The code exec results to set.
202
+ """
132
203
  @property
133
204
  def mcp_calls(self) -> list[MCPCall]:
134
205
  """Get the MCP calls from the LMOutput.
@@ -136,6 +207,13 @@ class LMOutput(BaseModel):
136
207
  Returns:
137
208
  list[MCPCall]: The MCP calls from the LMOutput.
138
209
  """
210
+ @mcp_calls.setter
211
+ def mcp_calls(self, value: list[MCPCall]) -> None:
212
+ """Deprecated setter to set the MCP calls to the LMOutput.
213
+
214
+ Args:
215
+ value (list[MCPCall]): The MCP calls to set.
216
+ """
139
217
  def add_text(self, text: str | list[str]) -> None:
140
218
  """Add an output or a list of outputs to the LMOutput.
141
219
 
@@ -1,6 +1,5 @@
1
1
  from _typeshed import Incomplete
2
2
  from enum import StrEnum
3
- from gllm_inference.utils import validate_string_enum as validate_string_enum
4
3
  from pydantic import BaseModel
5
4
 
6
5
  PROVIDER_SEPARATOR: str
@@ -1,5 +1,8 @@
1
+ from _typeshed import Incomplete
1
2
  from enum import StrEnum
2
3
 
4
+ logger: Incomplete
5
+
3
6
  def validate_string_enum(enum_type: type[StrEnum], value: str) -> None:
4
7
  """Validates that the provided value is a valid string enum value.
5
8
 
Binary file
gllm_inference.pyi CHANGED
@@ -57,7 +57,6 @@ import gllm_inference.schema.AttachmentType
57
57
  import gllm_inference.schema.EMContent
58
58
  import gllm_inference.schema.Vector
59
59
  import aioboto3
60
- import gllm_inference.utils.validate_string_enum
61
60
  import cohere
62
61
  import asyncio.CancelledError
63
62
  import gllm_inference.exceptions.convert_to_base_invoker_error
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gllm-inference-binary
3
- Version: 0.5.55
3
+ Version: 0.5.57
4
4
  Summary: A library containing components related to model inferences in Gen AI applications.
5
5
  Author-email: Henry Wicaksono <henry.wicaksono@gdplabs.id>, Resti Febrina <resti.febrina@gdplabs.id>
6
6
  Requires-Python: <3.14,>=3.11
@@ -1,5 +1,5 @@
1
- gllm_inference.cp313-win_amd64.pyd,sha256=5m40-Pa-WefCbFYu8sj_AeIrAVWaHxwbFnHMN5dUHsI,3920384
2
- gllm_inference.pyi,sha256=OzEB4lPytQEVVGAnTVtmkYXAlqaH-jnpZAXphCx9aV4,5116
1
+ gllm_inference.cp313-win_amd64.pyd,sha256=W8iuIVL1R3Nh70mVAGCc2Bz8RGHMq3z_bw0ysVdmfOY,3963904
2
+ gllm_inference.pyi,sha256=U5ETTUzO_5DKsg4Zp7WQ-rnG_RJKCAqKaf6FoNNw2m4,5067
3
3
  gllm_inference/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  gllm_inference/constants.pyi,sha256=8jIYOyxJYVWUYXSXF3vag9HhHwjq1iU9tzPiosRHkWk,328
5
5
  gllm_inference/builder/__init__.pyi,sha256=-bw1uDx7CAM7pkvjvb1ZXku9zXlQ7aEAyC83KIn3bz8,506
@@ -15,7 +15,7 @@ gllm_inference/catalog/prompt_builder_catalog.pyi,sha256=iViWB4SaezzjQY4UY1YxeoX
15
15
  gllm_inference/em_invoker/__init__.pyi,sha256=uCWfCjh5a5DciRFcUdbHndewokM3J5hp3mbhmM5wQC8,1211
16
16
  gllm_inference/em_invoker/azure_openai_em_invoker.pyi,sha256=TXC5Kgf1eZqK2FHKAyeG3LB1SEsSEStnbk9bI1mjC5k,5049
17
17
  gllm_inference/em_invoker/bedrock_em_invoker.pyi,sha256=ZPse0qNR74qFcc-9svTN8DzVO6kCLz-KYsLDo3cEEd0,6483
18
- gllm_inference/em_invoker/cohere_em_invoker.pyi,sha256=4eLqeKLoK8vJB61bGdttfWUUvNDBToBqNA6KQYBMT8s,6793
18
+ gllm_inference/em_invoker/cohere_em_invoker.pyi,sha256=Z_eBDfq9XErzpO2q47rfSB8LWxZY7Wxx1TTlvVh6k28,6708
19
19
  gllm_inference/em_invoker/em_invoker.pyi,sha256=YDYJ8TGScsz5Gg-OBnEENN1tI1RYvwoddypxUr6SAWw,5191
20
20
  gllm_inference/em_invoker/google_em_invoker.pyi,sha256=zZYjeLp9ncwIVM4UHqDJSVOFn1eXiaz9Ba24-_fCF2c,6953
21
21
  gllm_inference/em_invoker/jina_em_invoker.pyi,sha256=wrivFiPFRWBSw-TEAkaQKBvBRhlzN6CBaZkc0HOslRw,5754
@@ -45,15 +45,15 @@ gllm_inference/lm_invoker/anthropic_lm_invoker.pyi,sha256=_Dst_88LOpC-FN01hApihx
45
45
  gllm_inference/lm_invoker/azure_openai_lm_invoker.pyi,sha256=uV98H2nJsElCTsxAuInZ9KSk1jOTq6SROAGQRPR-_r0,13173
46
46
  gllm_inference/lm_invoker/bedrock_lm_invoker.pyi,sha256=qXmFK6zsOM3nPfueEhY5pAfG24bZytA1jqemPa63vLY,10951
47
47
  gllm_inference/lm_invoker/datasaur_lm_invoker.pyi,sha256=FnpayOW_Zi0pWFSawLX8XahEnknbnpsRWrkhKZe8Y3U,8035
48
- gllm_inference/lm_invoker/google_lm_invoker.pyi,sha256=GmZZmHBN_7j8cLdC3l-AnHDOLdbokBWwdaY6tH5QGqQ,16686
48
+ gllm_inference/lm_invoker/google_lm_invoker.pyi,sha256=8U68jWVxQKy6DOn-wJAoqyBEPhTn-Hx7133MQ9F6b28,16690
49
49
  gllm_inference/lm_invoker/langchain_lm_invoker.pyi,sha256=ull3cX-iUT4hYMbixcxqfrNUxR8ZoR4Vt9ACVILQWSM,12126
50
50
  gllm_inference/lm_invoker/litellm_lm_invoker.pyi,sha256=qG8pPTiDJZR2e7wr5Q2VyceC227tz3QybX3UPihT5ng,11400
51
51
  gllm_inference/lm_invoker/lm_invoker.pyi,sha256=L_PHRCeHo0dNs6BjnB8H29irGib-qhxKYf7F7pZlU0E,8652
52
- gllm_inference/lm_invoker/openai_chat_completions_lm_invoker.pyi,sha256=tsv2qSnPTVHEWlt1y-6obIZYAwBNrT5gTmLMZ6nrhnE,13973
52
+ gllm_inference/lm_invoker/openai_chat_completions_lm_invoker.pyi,sha256=qt9DAdJM7YBB4op-6SOJB0kCouPYVxtIamGUXLGLUeA,13888
53
53
  gllm_inference/lm_invoker/openai_compatible_lm_invoker.pyi,sha256=T9sShA_9fgEuaaAuT2gJZq_EYNbEhf3IkWwMCwfszY8,4244
54
- gllm_inference/lm_invoker/openai_lm_invoker.pyi,sha256=85eAaUdqe1sFULSDs67auVdLAdmaTrS43jTzWOQKH50,21582
54
+ gllm_inference/lm_invoker/openai_lm_invoker.pyi,sha256=ReU37hrmYZFbLfCD_c14ryRgnfpPC2YyDx2S5Ft_tXQ,22747
55
55
  gllm_inference/lm_invoker/portkey_lm_invoker.pyi,sha256=FYOp4BaDfOtompWIRhDqzMVVSK-TiFyw7JA4TznANQE,15236
56
- gllm_inference/lm_invoker/xai_lm_invoker.pyi,sha256=b4fQvazDBCTIEJw7ywxWUyRkZCKFk-ny9DGJKYiQLj8,13118
56
+ gllm_inference/lm_invoker/xai_lm_invoker.pyi,sha256=6beZsQjGUTo7TdzWBWksRzVGT58XyipErpGfiRq6NH0,13017
57
57
  gllm_inference/lm_invoker/batch/__init__.pyi,sha256=vJOTHRJ83oq8Bq0UsMdID9_HW5JAxr06gUs4aPRZfEE,130
58
58
  gllm_inference/lm_invoker/batch/batch_operations.pyi,sha256=o2U17M41RKVFW6j_oxy-SxU1JqUtVt75pKRxrqXzorE,5499
59
59
  gllm_inference/lm_invoker/schema/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -62,7 +62,7 @@ gllm_inference/lm_invoker/schema/bedrock.pyi,sha256=rB1AWfER2BBKZ5I219211YE2EUFP
62
62
  gllm_inference/lm_invoker/schema/datasaur.pyi,sha256=8lmb1PRbkqBsF_l7iOffxW0K5Xxpi69GW9Z7KxyxHTE,279
63
63
  gllm_inference/lm_invoker/schema/google.pyi,sha256=elXHrUMS46pbTsulk7hBXVVFcT022iD-_U_I590xeV8,529
64
64
  gllm_inference/lm_invoker/schema/langchain.pyi,sha256=2OJOUQPlGdlUbIOTDOyiWDBOMm3MoVX-kU2nK0zQsF0,452
65
- gllm_inference/lm_invoker/schema/openai.pyi,sha256=TsCr8_SM5kK2JyROeXtmH13n46TgKjLMc0agYlYUSZc,2328
65
+ gllm_inference/lm_invoker/schema/openai.pyi,sha256=GIrqEtUPinn8VD-w-38gOw0qiIYuVzM9cj5dRYuGIoQ,2387
66
66
  gllm_inference/lm_invoker/schema/openai_chat_completions.pyi,sha256=nNPb7ETC9IrJwkV5wfbGf6Co3-qdq4lhcXz0l_qYCE4,1261
67
67
  gllm_inference/lm_invoker/schema/portkey.pyi,sha256=V2q4JIwDAR7BidqfmO01u1_1mLOMtm5OCon6sN2zNt0,662
68
68
  gllm_inference/lm_invoker/schema/xai.pyi,sha256=jpC6ZSBDUltzm9GjD6zvSFIPwqizn_ywLnjvwSa7KuU,663
@@ -117,10 +117,10 @@ gllm_inference/schema/config.pyi,sha256=NVmjQK6HipIE0dKSfx12hgIC0O-S1HEcAc-TWlXA
117
117
  gllm_inference/schema/enums.pyi,sha256=aJjmCCUV4ASDM8VTiSJlxPxdapKkxXjS4_NqRplyUnE,2145
118
118
  gllm_inference/schema/events.pyi,sha256=_CKuGNzb3j2Y1dOB2yssFkT_9FQz1AY4J_ApCwKNizU,4743
119
119
  gllm_inference/schema/lm_input.pyi,sha256=HxQiZgY7zcXh_Dw8nK8LSeBTZEHMPZVwmPmnfgSsAbs,197
120
- gllm_inference/schema/lm_output.pyi,sha256=Rr5E5GRwvsLooxGTf2c0618OD0-OMkjFUz64GeHR8Hw,7597
120
+ gllm_inference/schema/lm_output.pyi,sha256=N75CIF_2kZRdXKy2jvu9hhqzk5DrCbsHXTrhKqQ-7vo,11667
121
121
  gllm_inference/schema/mcp.pyi,sha256=4SgQ83pEowfWm2p-w9lupV4NayqqVBOy7SuYxIFeWRs,1045
122
122
  gllm_inference/schema/message.pyi,sha256=jJV6A0ihEcun2OhzyMtNkiHnf7d6v5R-GdpTBGfJ0AQ,2272
123
- gllm_inference/schema/model_id.pyi,sha256=Ozu46pp1uaPPvXJ6SPKpiL1vETPJqErEjNAYfOb5b6Y,6070
123
+ gllm_inference/schema/model_id.pyi,sha256=VQfwxkXjprsHG9FwS6XPQKZxy6eKAT1ygRqcK6gapNM,5991
124
124
  gllm_inference/schema/reasoning.pyi,sha256=jbPxkDRHt0Vt-zdcc8lTT1l2hIE1Jm3HIHeNd0hfXGo,577
125
125
  gllm_inference/schema/token_usage.pyi,sha256=WJiGQyz5qatzBK2b-sABLCyTRLCBbAvxCRcqSJOzu-8,3025
126
126
  gllm_inference/schema/tool_call.pyi,sha256=OWT9LUqs_xfUcOkPG0aokAAqzLYYDkfnjTa0zOWvugk,403
@@ -129,9 +129,9 @@ gllm_inference/schema/type_alias.pyi,sha256=L-V0WxsFQznzAfby3DH8XMHUgjjZxQEsLw8S
129
129
  gllm_inference/utils/__init__.pyi,sha256=H27RiiFjD6WQHRrYb1-sBnb2aqjVENw5_8-DdAe1k9A,396
130
130
  gllm_inference/utils/io_utils.pyi,sha256=Eg7dvHWdXslTKdjh1j3dG50i7r35XG2zTmJ9XXvz4cI,1120
131
131
  gllm_inference/utils/langchain.pyi,sha256=4AwFiVAO0ZpdgmqeC4Pb5NJwBt8vVr0MSUqLeCdTscc,1194
132
- gllm_inference/utils/validation.pyi,sha256=-RdMmb8afH7F7q4Ao7x6FbwaDfxUHn3hA3WiOgzB-3s,397
132
+ gllm_inference/utils/validation.pyi,sha256=OWRZxeVGIuuvNU0LqLGB-9gNmypvbH-LcSJx91rnH1k,453
133
133
  gllm_inference.build/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
134
- gllm_inference_binary-0.5.55.dist-info/METADATA,sha256=nr6YRSn468AAP7i7SXNqTR5678Uwk7vkkLMwuViNlvo,5945
135
- gllm_inference_binary-0.5.55.dist-info/WHEEL,sha256=O_u6PJIQ2pIcyIInxVQ9r-yArMuUZbBIaF1kpYVkYxA,96
136
- gllm_inference_binary-0.5.55.dist-info/top_level.txt,sha256=FpOjtN80F-qVNgbScXSEyqa0w09FYn6301iq6qt69IQ,15
137
- gllm_inference_binary-0.5.55.dist-info/RECORD,,
134
+ gllm_inference_binary-0.5.57.dist-info/METADATA,sha256=wauHbpI6u46hzTVmm3o89STDfdMsJYzbjkQBf362MS0,5945
135
+ gllm_inference_binary-0.5.57.dist-info/WHEEL,sha256=O_u6PJIQ2pIcyIInxVQ9r-yArMuUZbBIaF1kpYVkYxA,96
136
+ gllm_inference_binary-0.5.57.dist-info/top_level.txt,sha256=FpOjtN80F-qVNgbScXSEyqa0w09FYn6301iq6qt69IQ,15
137
+ gllm_inference_binary-0.5.57.dist-info/RECORD,,