gllm-inference-binary 0.5.55__cp313-cp313-win_amd64.whl → 0.5.56__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.
- gllm_inference/em_invoker/cohere_em_invoker.pyi +1 -2
- gllm_inference/lm_invoker/openai_chat_completions_lm_invoker.pyi +1 -2
- gllm_inference/lm_invoker/openai_lm_invoker.pyi +1 -2
- gllm_inference/lm_invoker/xai_lm_invoker.pyi +2 -3
- gllm_inference/schema/lm_output.pyi +78 -0
- gllm_inference/schema/model_id.pyi +0 -1
- gllm_inference/utils/validation.pyi +3 -0
- gllm_inference.cp313-win_amd64.pyd +0 -0
- gllm_inference.pyi +0 -1
- {gllm_inference_binary-0.5.55.dist-info → gllm_inference_binary-0.5.56.dist-info}/METADATA +1 -1
- {gllm_inference_binary-0.5.55.dist-info → gllm_inference_binary-0.5.56.dist-info}/RECORD +13 -13
- {gllm_inference_binary-0.5.55.dist-info → gllm_inference_binary-0.5.56.dist-info}/WHEEL +0 -0
- {gllm_inference_binary-0.5.55.dist-info → gllm_inference_binary-0.5.56.dist-info}/top_level.txt +0 -0
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
from _typeshed import Incomplete
|
|
2
|
-
from gllm_core.utils
|
|
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
|
|
@@ -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
|
|
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
|
|
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
|
|
|
@@ -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
|
|
4
|
-
from gllm_core.utils
|
|
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
|
|
|
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.
|
|
3
|
+
Version: 0.5.56
|
|
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
|
|
2
|
-
gllm_inference.pyi,sha256=
|
|
1
|
+
gllm_inference.cp313-win_amd64.pyd,sha256=-pY_yEmstq2i-D8lNujEJKFP-y6tsn4aqPFByJqMk3s,3956736
|
|
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=
|
|
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
|
|
@@ -49,11 +49,11 @@ gllm_inference/lm_invoker/google_lm_invoker.pyi,sha256=GmZZmHBN_7j8cLdC3l-AnHDOL
|
|
|
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=
|
|
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=
|
|
54
|
+
gllm_inference/lm_invoker/openai_lm_invoker.pyi,sha256=pbj08C4tUR7QYVB1frT04VfEj0mkTfXudxpAkm09bDM,21497
|
|
55
55
|
gllm_inference/lm_invoker/portkey_lm_invoker.pyi,sha256=FYOp4BaDfOtompWIRhDqzMVVSK-TiFyw7JA4TznANQE,15236
|
|
56
|
-
gllm_inference/lm_invoker/xai_lm_invoker.pyi,sha256=
|
|
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
|
|
@@ -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=
|
|
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=
|
|
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
|
|
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.
|
|
135
|
-
gllm_inference_binary-0.5.
|
|
136
|
-
gllm_inference_binary-0.5.
|
|
137
|
-
gllm_inference_binary-0.5.
|
|
134
|
+
gllm_inference_binary-0.5.56.dist-info/METADATA,sha256=Ohjw-qZRmCeWsLGkgwlLZXzkw5KcPnSVmUR0k6-rOpY,5945
|
|
135
|
+
gllm_inference_binary-0.5.56.dist-info/WHEEL,sha256=O_u6PJIQ2pIcyIInxVQ9r-yArMuUZbBIaF1kpYVkYxA,96
|
|
136
|
+
gllm_inference_binary-0.5.56.dist-info/top_level.txt,sha256=FpOjtN80F-qVNgbScXSEyqa0w09FYn6301iq6qt69IQ,15
|
|
137
|
+
gllm_inference_binary-0.5.56.dist-info/RECORD,,
|
|
File without changes
|
{gllm_inference_binary-0.5.55.dist-info → gllm_inference_binary-0.5.56.dist-info}/top_level.txt
RENAMED
|
File without changes
|