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

@@ -158,6 +158,7 @@ class GoogleLMInvoker(BaseLMInvoker):
158
158
  )
159
159
  ```
160
160
 
161
+ Image generation is not compatible with tool calling and thinking.
161
162
  When image generation is enabled, streaming is disabled.
162
163
 
163
164
  Tool calling:
@@ -7,7 +7,7 @@ from gllm_core.utils import RetryConfig
7
7
  from gllm_inference.constants import DOCUMENT_MIME_TYPES as DOCUMENT_MIME_TYPES, INVOKER_DEFAULT_TIMEOUT as INVOKER_DEFAULT_TIMEOUT
8
8
  from gllm_inference.exceptions import BaseInvokerError as BaseInvokerError, convert_to_base_invoker_error as convert_to_base_invoker_error
9
9
  from gllm_inference.lm_invoker.batch import BatchOperations as BatchOperations
10
- from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, BatchStatus as BatchStatus, LMEventType as LMEventType, LMInput as LMInput, 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
10
+ from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, BatchStatus as BatchStatus, LMInput as LMInput, 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
11
11
  from langchain_core.tools import Tool as LangChainTool
12
12
  from typing import Any
13
13
 
@@ -1,7 +1,7 @@
1
1
  from _typeshed import Incomplete
2
+ from gllm_core.constants import EventType
2
3
  from gllm_core.schema import Event
3
4
  from gllm_inference.schema.activity import Activity as Activity
4
- from gllm_inference.schema.enums import LMEventType as LMEventType, LMEventTypeSuffix as LMEventTypeSuffix
5
5
  from typing import Any, Literal, Self
6
6
 
7
7
  CodeEventType: Incomplete
@@ -19,7 +19,7 @@ class ActivityEvent(Event):
19
19
  metadata (dict[str, Any]): The metadata of the activity event. Defaults to an empty dictionary.
20
20
  """
21
21
  value: dict[str, Any]
22
- type: Literal[LMEventType.ACTIVITY]
22
+ type: Literal[EventType.ACTIVITY]
23
23
  @classmethod
24
24
  def from_activity(cls, id_: str | None = None, activity: Activity | None = None) -> ActivityEvent:
25
25
  """Create an activity event from an Activity object.
Binary file
gllm_inference.pyi CHANGED
@@ -113,7 +113,6 @@ import inspect
113
113
  import time
114
114
  import jsonschema
115
115
  import gllm_inference.lm_invoker.batch.BatchOperations
116
- import gllm_inference.schema.LMEventType
117
116
  import gllm_inference.schema.MessageContent
118
117
  import __future__
119
118
  import gllm_inference.schema.ActivityEvent
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gllm-inference-binary
3
- Version: 0.5.54
3
+ Version: 0.5.55
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
7
7
  Description-Content-Type: text/markdown
8
8
  Requires-Dist: poetry<3.0.0,>=2.1.3
9
- Requires-Dist: gllm-core-binary<0.4.0,>=0.3.21
9
+ Requires-Dist: gllm-core-binary<0.4.0,>=0.3.23
10
10
  Requires-Dist: aiohttp<4.0.0,>=3.12.14
11
11
  Requires-Dist: filetype<2.0.0,>=1.2.0
12
12
  Requires-Dist: httpx<0.29.0,>=0.28.0
@@ -1,5 +1,5 @@
1
- gllm_inference.cp313-win_amd64.pyd,sha256=kQ7y0YHbJ0bmrXueBi9uyegZSlFIyih7Z_euhSL5XBk,3920384
2
- gllm_inference.pyi,sha256=6SgB-dl8V4gagBDlHF-67Q3F2c3eaV8y7b5rOTCs7uo,5157
1
+ gllm_inference.cp313-win_amd64.pyd,sha256=5m40-Pa-WefCbFYu8sj_AeIrAVWaHxwbFnHMN5dUHsI,3920384
2
+ gllm_inference.pyi,sha256=OzEB4lPytQEVVGAnTVtmkYXAlqaH-jnpZAXphCx9aV4,5116
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
@@ -45,10 +45,10 @@ 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=nRwF6VnYsX_xe7ganMaLqjY17Pn9ctIytx9GU5yY-78,16610
48
+ gllm_inference/lm_invoker/google_lm_invoker.pyi,sha256=GmZZmHBN_7j8cLdC3l-AnHDOLdbokBWwdaY6tH5QGqQ,16686
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
- gllm_inference/lm_invoker/lm_invoker.pyi,sha256=lnp2DGUsxRunQDL6EbWDrZarYQaczq5fSBxoXPZ-dzE,8680
51
+ gllm_inference/lm_invoker/lm_invoker.pyi,sha256=L_PHRCeHo0dNs6BjnB8H29irGib-qhxKYf7F7pZlU0E,8652
52
52
  gllm_inference/lm_invoker/openai_chat_completions_lm_invoker.pyi,sha256=tsv2qSnPTVHEWlt1y-6obIZYAwBNrT5gTmLMZ6nrhnE,13973
53
53
  gllm_inference/lm_invoker/openai_compatible_lm_invoker.pyi,sha256=T9sShA_9fgEuaaAuT2gJZq_EYNbEhf3IkWwMCwfszY8,4244
54
54
  gllm_inference/lm_invoker/openai_lm_invoker.pyi,sha256=85eAaUdqe1sFULSDs67auVdLAdmaTrS43jTzWOQKH50,21582
@@ -115,7 +115,7 @@ gllm_inference/schema/attachment.pyi,sha256=NyvbdtjRpPwdrCnGorDCiuVsqduidiomKCb-
115
115
  gllm_inference/schema/code_exec_result.pyi,sha256=WQ-ARoGM9r6nyRX-A0Ro1XKiqrc9R3jRYXZpu_xo5S4,573
116
116
  gllm_inference/schema/config.pyi,sha256=NVmjQK6HipIE0dKSfx12hgIC0O-S1HEcAc-TWlXAF5A,689
117
117
  gllm_inference/schema/enums.pyi,sha256=aJjmCCUV4ASDM8VTiSJlxPxdapKkxXjS4_NqRplyUnE,2145
118
- gllm_inference/schema/events.pyi,sha256=YStRTYGtYlM0a46AfCuBwEaijsRujTSkEusJ-M6cvSY,4810
118
+ gllm_inference/schema/events.pyi,sha256=_CKuGNzb3j2Y1dOB2yssFkT_9FQz1AY4J_ApCwKNizU,4743
119
119
  gllm_inference/schema/lm_input.pyi,sha256=HxQiZgY7zcXh_Dw8nK8LSeBTZEHMPZVwmPmnfgSsAbs,197
120
120
  gllm_inference/schema/lm_output.pyi,sha256=Rr5E5GRwvsLooxGTf2c0618OD0-OMkjFUz64GeHR8Hw,7597
121
121
  gllm_inference/schema/mcp.pyi,sha256=4SgQ83pEowfWm2p-w9lupV4NayqqVBOy7SuYxIFeWRs,1045
@@ -131,7 +131,7 @@ gllm_inference/utils/io_utils.pyi,sha256=Eg7dvHWdXslTKdjh1j3dG50i7r35XG2zTmJ9XXv
131
131
  gllm_inference/utils/langchain.pyi,sha256=4AwFiVAO0ZpdgmqeC4Pb5NJwBt8vVr0MSUqLeCdTscc,1194
132
132
  gllm_inference/utils/validation.pyi,sha256=-RdMmb8afH7F7q4Ao7x6FbwaDfxUHn3hA3WiOgzB-3s,397
133
133
  gllm_inference.build/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
134
- gllm_inference_binary-0.5.54.dist-info/METADATA,sha256=odviBr7ljyMNH6pddRgQv-YsOu-_fTn76HPXfcU7Mig,5945
135
- gllm_inference_binary-0.5.54.dist-info/WHEEL,sha256=O_u6PJIQ2pIcyIInxVQ9r-yArMuUZbBIaF1kpYVkYxA,96
136
- gllm_inference_binary-0.5.54.dist-info/top_level.txt,sha256=FpOjtN80F-qVNgbScXSEyqa0w09FYn6301iq6qt69IQ,15
137
- gllm_inference_binary-0.5.54.dist-info/RECORD,,
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,,