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

Files changed (30) hide show
  1. gllm_inference/constants.pyi +1 -0
  2. gllm_inference/em_invoker/azure_openai_em_invoker.pyi +2 -1
  3. gllm_inference/em_invoker/google_em_invoker.pyi +1 -0
  4. gllm_inference/em_invoker/langchain_em_invoker.pyi +3 -1
  5. gllm_inference/em_invoker/openai_compatible_em_invoker.pyi +2 -0
  6. gllm_inference/em_invoker/openai_em_invoker.pyi +2 -0
  7. gllm_inference/em_invoker/schema/google.pyi +7 -0
  8. gllm_inference/em_invoker/schema/langchain.pyi +4 -0
  9. gllm_inference/em_invoker/schema/openai.pyi +7 -0
  10. gllm_inference/em_invoker/schema/openai_compatible.pyi +7 -0
  11. gllm_inference/em_invoker/schema/twelvelabs.pyi +2 -0
  12. gllm_inference/em_invoker/schema/voyage.pyi +4 -0
  13. gllm_inference/em_invoker/twelevelabs_em_invoker.pyi +1 -0
  14. gllm_inference/em_invoker/voyage_em_invoker.pyi +1 -0
  15. gllm_inference/lm_invoker/anthropic_lm_invoker.pyi +1 -0
  16. gllm_inference/lm_invoker/azure_openai_lm_invoker.pyi +2 -1
  17. gllm_inference/lm_invoker/datasaur_lm_invoker.pyi +1 -1
  18. gllm_inference/lm_invoker/langchain_lm_invoker.pyi +2 -1
  19. gllm_inference/lm_invoker/openai_compatible_lm_invoker.pyi +1 -0
  20. gllm_inference/lm_invoker/openai_lm_invoker.pyi +1 -0
  21. gllm_inference/lm_invoker/schema/anthropic.pyi +2 -0
  22. gllm_inference/lm_invoker/schema/datasaur.pyi +2 -0
  23. gllm_inference/lm_invoker/schema/google.pyi +3 -0
  24. gllm_inference/lm_invoker/schema/langchain.pyi +2 -0
  25. gllm_inference/lm_invoker/schema/openai_compatible.pyi +2 -0
  26. gllm_inference.cp313-win_amd64.pyd +0 -0
  27. gllm_inference.pyi +1 -1
  28. {gllm_inference_binary-0.5.6.dist-info → gllm_inference_binary-0.5.7.dist-info}/METADATA +1 -1
  29. {gllm_inference_binary-0.5.6.dist-info → gllm_inference_binary-0.5.7.dist-info}/RECORD +30 -26
  30. {gllm_inference_binary-0.5.6.dist-info → gllm_inference_binary-0.5.7.dist-info}/WHEEL +0 -0
@@ -3,6 +3,7 @@ from _typeshed import Incomplete
3
3
  DEFAULT_AZURE_OPENAI_API_VERSION: str
4
4
  DOCUMENT_MIME_TYPES: Incomplete
5
5
  GOOGLE_SCOPES: Incomplete
6
+ INVOKER_PROPAGATED_MAX_RETRIES: int
6
7
  INVOKER_DEFAULT_TIMEOUT: float
7
8
  HEX_REPR_LENGTH: int
8
9
  HTTP_STATUS_CODE_PATTERNS: Incomplete
@@ -1,7 +1,8 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.utils.retry import RetryConfig as RetryConfig
3
- from gllm_inference.constants import DEFAULT_AZURE_OPENAI_API_VERSION as DEFAULT_AZURE_OPENAI_API_VERSION
3
+ from gllm_inference.constants import DEFAULT_AZURE_OPENAI_API_VERSION as DEFAULT_AZURE_OPENAI_API_VERSION, INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
4
4
  from gllm_inference.em_invoker.openai_em_invoker import OpenAIEMInvoker as OpenAIEMInvoker
5
+ from gllm_inference.em_invoker.schema.openai import Key as Key
5
6
  from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider
6
7
  from typing import Any
7
8
 
@@ -2,6 +2,7 @@ from _typeshed import Incomplete
2
2
  from gllm_core.utils.retry import RetryConfig as RetryConfig
3
3
  from gllm_inference.constants import GOOGLE_SCOPES as GOOGLE_SCOPES
4
4
  from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
5
+ from gllm_inference.em_invoker.schema.google import Key as Key
5
6
  from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider, Vector as Vector
6
7
  from typing import Any
7
8
 
@@ -1,6 +1,8 @@
1
1
  from _typeshed import Incomplete
2
- from gllm_core.utils.retry import RetryConfig as RetryConfig
2
+ from gllm_core.utils.retry import RetryConfig
3
+ from gllm_inference.constants import INVOKER_DEFAULT_TIMEOUT as INVOKER_DEFAULT_TIMEOUT, INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
3
4
  from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
5
+ from gllm_inference.em_invoker.schema.langchain import Key as Key
4
6
  from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider, Vector as Vector
5
7
  from gllm_inference.utils import load_langchain_model as load_langchain_model, parse_model_data as parse_model_data
6
8
  from langchain_core.embeddings import Embeddings as Embeddings
@@ -1,6 +1,8 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.utils.retry import RetryConfig as RetryConfig
3
+ from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
3
4
  from gllm_inference.em_invoker.openai_em_invoker import OpenAIEMInvoker as OpenAIEMInvoker
5
+ from gllm_inference.em_invoker.schema.openai_compatible import Key as Key
4
6
  from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider
5
7
  from typing import Any
6
8
 
@@ -1,6 +1,8 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.utils.retry import RetryConfig as RetryConfig
3
+ from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
3
4
  from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
5
+ from gllm_inference.em_invoker.schema.openai import Key as Key
4
6
  from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider, Vector as Vector
5
7
  from typing import Any
6
8
 
@@ -0,0 +1,7 @@
1
+ class Key:
2
+ """Defines valid keys in Google."""
3
+ CREDENTIALS: str
4
+ HTTP_OPTIONS: str
5
+ LOCATION: str
6
+ PROJECT: str
7
+ TIMEOUT: str
@@ -0,0 +1,4 @@
1
+ class Key:
2
+ """Defines valid keys in LangChain."""
3
+ MAX_RETRIES: str
4
+ TIMEOUT: str
@@ -0,0 +1,7 @@
1
+ class Key:
2
+ """Defines valid keys in OpenAI."""
3
+ API_KEY: str
4
+ BASE_URL: str
5
+ MAX_RETRIES: str
6
+ MODEL: str
7
+ TIMEOUT: str
@@ -0,0 +1,7 @@
1
+ class Key:
2
+ """Defines valid keys in OpenAI Compatible."""
3
+ API_KEY: str
4
+ BASE_URL: str
5
+ MAX_RETRIES: str
6
+ MODEL: str
7
+ TIMEOUT: str
@@ -1,7 +1,9 @@
1
1
  class Key:
2
2
  """Defines valid keys in TwelveLabs."""
3
3
  INPUT_KEY: str
4
+ MAX_RETRIES: str
4
5
  OUTPUT_KEY: str
6
+ TIMEOUT: str
5
7
  VALUE: str
6
8
 
7
9
  class InputType:
@@ -1,8 +1,12 @@
1
1
  class Key:
2
2
  """Defines valid keys in Voyage."""
3
+ API_KEY: str
3
4
  CONTENT: str
4
5
  IMAGE_BASE64: str
6
+ MAX_RETRIES: str
7
+ MODEL: str
5
8
  TEXT: str
9
+ TIMEOUT: str
6
10
  TYPE: str
7
11
 
8
12
  class InputType:
@@ -1,5 +1,6 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.utils.retry import RetryConfig as RetryConfig
3
+ from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
3
4
  from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
4
5
  from gllm_inference.em_invoker.schema.twelvelabs import InputType as InputType, Key as Key, OutputType as OutputType
5
6
  from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, EMContent as EMContent, ModelId as ModelId, ModelProvider as ModelProvider, Vector as Vector
@@ -1,5 +1,6 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.utils.retry import RetryConfig as RetryConfig
3
+ from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
3
4
  from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
4
5
  from gllm_inference.em_invoker.schema.voyage import InputType as InputType, Key as Key
5
6
  from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, EMContent as EMContent, ModelId as ModelId, ModelProvider as ModelProvider, Vector as Vector
@@ -1,6 +1,7 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.event import EventEmitter as EventEmitter
3
3
  from gllm_core.utils.retry import RetryConfig as RetryConfig
4
+ from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
4
5
  from gllm_inference.lm_invoker.lm_invoker import BaseLMInvoker as BaseLMInvoker
5
6
  from gllm_inference.lm_invoker.schema.anthropic import InputType as InputType, Key as Key, OutputType as OutputType
6
7
  from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, EmitDataType as EmitDataType, LMOutput as LMOutput, Message as Message, ModelId as ModelId, ModelProvider as ModelProvider, Reasoning as Reasoning, ResponseSchema as ResponseSchema, TokenUsage as TokenUsage, ToolCall as ToolCall, ToolResult as ToolResult
@@ -1,7 +1,8 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.utils.retry import RetryConfig as RetryConfig
3
- from gllm_inference.constants import DEFAULT_AZURE_OPENAI_API_VERSION as DEFAULT_AZURE_OPENAI_API_VERSION
3
+ from gllm_inference.constants import DEFAULT_AZURE_OPENAI_API_VERSION as DEFAULT_AZURE_OPENAI_API_VERSION, INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
4
4
  from gllm_inference.lm_invoker.openai_lm_invoker import OpenAILMInvoker as OpenAILMInvoker, ReasoningEffort as ReasoningEffort, ReasoningSummary as ReasoningSummary
5
+ from gllm_inference.lm_invoker.schema.openai import Key as Key
5
6
  from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider, ResponseSchema as ResponseSchema
6
7
  from langchain_core.tools import Tool as Tool
7
8
  from typing import Any
@@ -1,7 +1,7 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.event import EventEmitter as EventEmitter
3
3
  from gllm_core.utils.retry import RetryConfig as RetryConfig
4
- from gllm_inference.constants import DOCUMENT_MIME_TYPES as DOCUMENT_MIME_TYPES
4
+ from gllm_inference.constants import DOCUMENT_MIME_TYPES as DOCUMENT_MIME_TYPES, INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
5
5
  from gllm_inference.lm_invoker.openai_compatible_lm_invoker import OpenAICompatibleLMInvoker as OpenAICompatibleLMInvoker
6
6
  from gllm_inference.lm_invoker.schema.datasaur import InputType as InputType, Key as Key
7
7
  from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, LMOutput as LMOutput, Message as Message, ModelId as ModelId, ModelProvider as ModelProvider, ResponseSchema as ResponseSchema, ToolCall as ToolCall, ToolResult as ToolResult
@@ -1,6 +1,7 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.event import EventEmitter as EventEmitter
3
- from gllm_core.utils.retry import RetryConfig as RetryConfig
3
+ from gllm_core.utils.retry import RetryConfig
4
+ from gllm_inference.constants import INVOKER_DEFAULT_TIMEOUT as INVOKER_DEFAULT_TIMEOUT, INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
4
5
  from gllm_inference.lm_invoker.lm_invoker import BaseLMInvoker as BaseLMInvoker
5
6
  from gllm_inference.lm_invoker.schema.langchain import InputType as InputType, Key as Key
6
7
  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, ResponseSchema as ResponseSchema, TokenUsage as TokenUsage, ToolCall as ToolCall, ToolResult as ToolResult
@@ -1,6 +1,7 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.event import EventEmitter as EventEmitter
3
3
  from gllm_core.utils.retry import RetryConfig as RetryConfig
4
+ from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
4
5
  from gllm_inference.lm_invoker.lm_invoker import BaseLMInvoker as BaseLMInvoker
5
6
  from gllm_inference.lm_invoker.schema.openai_compatible import InputType as InputType, Key as Key, ReasoningEffort as ReasoningEffort
6
7
  from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, EmitDataType as EmitDataType, LMOutput as LMOutput, Message as Message, MessageRole as MessageRole, ModelId as ModelId, ModelProvider as ModelProvider, Reasoning as Reasoning, ResponseSchema as ResponseSchema, TokenUsage as TokenUsage, ToolCall as ToolCall, ToolResult as ToolResult
@@ -1,6 +1,7 @@
1
1
  from _typeshed import Incomplete
2
2
  from gllm_core.event import EventEmitter as EventEmitter
3
3
  from gllm_core.utils.retry import RetryConfig as RetryConfig
4
+ from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
4
5
  from gllm_inference.lm_invoker.lm_invoker import BaseLMInvoker as BaseLMInvoker
5
6
  from gllm_inference.lm_invoker.schema.openai import InputType as InputType, Key as Key, OutputType as OutputType, ReasoningEffort as ReasoningEffort, ReasoningSummary as ReasoningSummary
6
7
  from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, CodeExecResult as CodeExecResult, EmitDataType as EmitDataType, LMOutput as LMOutput, Message as Message, MessageRole as MessageRole, ModelId as ModelId, ModelProvider as ModelProvider, Reasoning as Reasoning, ResponseSchema as ResponseSchema, TokenUsage as TokenUsage, ToolCall as ToolCall, ToolResult as ToolResult
@@ -8,6 +8,7 @@ class Key:
8
8
  ID: str
9
9
  INPUT: str
10
10
  INPUT_SCHEMA: str
11
+ MAX_RETRIES: str
11
12
  MEDIA_TYPE: str
12
13
  MAX_TOKENS: str
13
14
  NAME: str
@@ -17,6 +18,7 @@ class Key:
17
18
  SOURCE: str
18
19
  STOP_REASON: str
19
20
  SYSTEM: str
21
+ TIMEOUT: str
20
22
  THINKING: str
21
23
  TOOLS: str
22
24
  TOOL_CHOICE: str
@@ -1,7 +1,9 @@
1
1
  class Key:
2
2
  """Defines valid keys in Datasaur."""
3
3
  CONTEXTS: str
4
+ MAX_RETRIES: str
4
5
  NAME: str
6
+ TIMEOUT: str
5
7
  TYPE: str
6
8
  URL: str
7
9
 
@@ -6,9 +6,12 @@ class Key:
6
6
  FINISH_REASON: str
7
7
  FUNCTION: str
8
8
  FUNCTION_CALL: str
9
+ HTTP_OPTIONS: str
9
10
  NAME: str
11
+ RETRY_OPTIONS: str
10
12
  SYSTEM_INSTRUCTION: str
11
13
  THINKING_CONFIG: str
14
+ TIMEOUT: str
12
15
  TOOLS: str
13
16
  RESPONSE_SCHEMA: str
14
17
  RESPONSE_MIME_TYPE: str
@@ -5,11 +5,13 @@ class Key:
5
5
  ID: str
6
6
  IMAGE_URL: str
7
7
  INPUT_TOKENS: str
8
+ MAX_RETRIES: str
8
9
  NAME: str
9
10
  OUTPUT_TOKENS: str
10
11
  PARSED: str
11
12
  RAW: str
12
13
  TEXT: str
14
+ TIMEOUT: str
13
15
  TYPE: str
14
16
  URL: str
15
17
 
@@ -15,6 +15,7 @@ class Key:
15
15
  IMAGE_URL: str
16
16
  INPUT_AUDIO: str
17
17
  JSON_SCHEMA: str
18
+ MAX_RETRIES: str
18
19
  MESSAGE: str
19
20
  NAME: str
20
21
  RESPONSE_FORMAT: str
@@ -22,6 +23,7 @@ class Key:
22
23
  SCHEMA: str
23
24
  STRICT: str
24
25
  TEXT: str
26
+ TIMEOUT: str
25
27
  TITLE: str
26
28
  TOOLS: str
27
29
  TOOL_CALLS: str
Binary file
gllm_inference.pyi CHANGED
@@ -59,6 +59,7 @@ import langchain_core.embeddings
59
59
  import gllm_inference.utils.load_langchain_model
60
60
  import gllm_inference.utils.parse_model_data
61
61
  import io
62
+ import httpx
62
63
  import twelvelabs
63
64
  import base64
64
65
  import sys
@@ -70,7 +71,6 @@ import enum
70
71
  import http
71
72
  import http.HTTPStatus
72
73
  import aiohttp
73
- import httpx
74
74
  import requests
75
75
  import gllm_inference.schema.ErrorResponse
76
76
  import gllm_core.constants
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gllm-inference-binary
3
- Version: 0.5.6
3
+ Version: 0.5.7
4
4
  Summary: A library containing components related to model inferences in Gen AI applications.
5
5
  Author: Henry Wicaksono
6
6
  Author-email: henry.wicaksono@gdplabs.id
@@ -8,43 +8,47 @@ gllm_inference/catalog/__init__.pyi,sha256=HWgPKWIzprpMHRKe_qN9BZSIQhVhrqiyjLjIX
8
8
  gllm_inference/catalog/catalog.pyi,sha256=eWPqgQKi-SJGHabi_XOTEKpAj96OSRypKsb5ZEC1VWU,4911
9
9
  gllm_inference/catalog/lm_request_processor_catalog.pyi,sha256=GemCEjFRHNChtNOfbyXSVsJiA3klOCAe_X11fnymhYs,5540
10
10
  gllm_inference/catalog/prompt_builder_catalog.pyi,sha256=iViWB4SaezzjQY4UY1YxeoXUNxqxa2cTJGaD9JSx4Q8,3279
11
- gllm_inference/constants.pyi,sha256=EkyQRO7P4siZxUKr8JWBdD_6et-3slzSXk3rkbvu4t4,228
11
+ gllm_inference/constants.pyi,sha256=xSET67ZCfeVK4a2ji1FZyQxs5DUTIsN7S6H7-F-ewZ0,265
12
12
  gllm_inference/em_invoker/__init__.pyi,sha256=eZifmg3ZS3YdFUwbGPTurrfF4oV_MAPvqErJe7oTpZI,882
13
- gllm_inference/em_invoker/azure_openai_em_invoker.pyi,sha256=9NuESorvptJciBw_7e1vPIHtip03aFusL-tzvYISFVo,4558
13
+ gllm_inference/em_invoker/azure_openai_em_invoker.pyi,sha256=QimqPII-KN9OgsfH1Iubn_tCHhtWjPQ5rilZoT6Ir-U,4688
14
14
  gllm_inference/em_invoker/em_invoker.pyi,sha256=KX4i0xBWR5j6z14nEL6T8at3StKfdf3miQ4xixtYhZk,4424
15
- gllm_inference/em_invoker/google_em_invoker.pyi,sha256=-585WO1P4jNcuXJ9TQ6umSxozXMz39KwWa1gsGopHuQ,6190
15
+ gllm_inference/em_invoker/google_em_invoker.pyi,sha256=YJtRJs7bNGNEfTKtj3IVP1XkLcJ3LRmcAC80zzOHxKw,6254
16
16
  gllm_inference/em_invoker/langchain/__init__.pyi,sha256=aOTlRvS9aG1tBErjsmhe75s4Sq-g2z9ArfGqNW7QyEs,151
17
17
  gllm_inference/em_invoker/langchain/em_invoker_embeddings.pyi,sha256=gEX21gJLngUh9fZo8v6Vbh0gpWFFqS2S-dGNZSrDjFQ,2409
18
- gllm_inference/em_invoker/langchain_em_invoker.pyi,sha256=kqRzcolB2bV5ZlwrUtqcl5JA84phgrvVgycr8wrSYOc,2616
19
- gllm_inference/em_invoker/openai_compatible_em_invoker.pyi,sha256=Vw6N8sExzQIzNvdOjUpQkSr7ax90SbTTKNTLLuwxNpw,4892
20
- gllm_inference/em_invoker/openai_em_invoker.pyi,sha256=p0X6v0AFOC4g693jqMeB4muuWXTC_F49V0ImyX1h95A,4154
18
+ gllm_inference/em_invoker/langchain_em_invoker.pyi,sha256=sFmsRE89MIdnD8g0VSMsdLvtfZL6dfPkUtDhH_WfgLc,2823
19
+ gllm_inference/em_invoker/openai_compatible_em_invoker.pyi,sha256=S5lRg3MeLoenOkeAG079I22kPaFXAFrltSoWcQSDK4I,5070
20
+ gllm_inference/em_invoker/openai_em_invoker.pyi,sha256=1WTuPtu5RlZCUcBHMXR5xEkAufWCHshKA8_JW7oFakE,4321
21
21
  gllm_inference/em_invoker/schema/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- gllm_inference/em_invoker/schema/twelvelabs.pyi,sha256=E7sl1OumEzx_Dj8SeiJ6i8AFuRKzAmRVGfIRCk3gv_0,349
23
- gllm_inference/em_invoker/schema/voyage.pyi,sha256=mL0D2lqqudL1S-eVF5K4uBt0xuMjvYtVrQzLx0-6gq0,230
24
- gllm_inference/em_invoker/twelevelabs_em_invoker.pyi,sha256=5A5jymcLKTOFkux-dlXSSvFzYIDTCi8gb4YIaN3royM,5062
25
- gllm_inference/em_invoker/voyage_em_invoker.pyi,sha256=rSWtQF8PjAuUHtPQKYrQ2GZJT5UVu3HTD96RykZJImc,5132
22
+ gllm_inference/em_invoker/schema/google.pyi,sha256=lPzJ-f18qVar6dctdN4eQWrxWrOFHC9zJ4cuLXXMytw,153
23
+ gllm_inference/em_invoker/schema/langchain.pyi,sha256=JPEqA6naKL64jpW8NEKsEP-V9STY2h8wvyDsFtFEHos,96
24
+ gllm_inference/em_invoker/schema/openai.pyi,sha256=rNRqN62y5wHOKlr4T0n0m41ikAnSrD72CTnoHxo6kEM,146
25
+ gllm_inference/em_invoker/schema/openai_compatible.pyi,sha256=A9MOeBhI-IPuvewOk4YYOAGtgyKohERx6-9cEYtbwvs,157
26
+ gllm_inference/em_invoker/schema/twelvelabs.pyi,sha256=D3F9_1F-UTzE6Ymxj6u0IFdL6OFVGlc7noZJr3iuA6I,389
27
+ gllm_inference/em_invoker/schema/voyage.pyi,sha256=Aqvu6mhFkNb01aXAI5mChLKIgEnFnr-jNKq1lVWB54M,304
28
+ gllm_inference/em_invoker/twelevelabs_em_invoker.pyi,sha256=YGWQNxv3AJ9BpN6HrQSnATiW_p0dRakkqy-JgxNIlf4,5165
29
+ gllm_inference/em_invoker/voyage_em_invoker.pyi,sha256=R8IPBOEhIN84ukof-VkTPxPNbmbkwR_imTa5u6Qyjt0,5235
26
30
  gllm_inference/exceptions/__init__.pyi,sha256=2F05RytXZIKaOJScb1pD0O0bATIQHVeEAYYNX4y5N2A,981
27
31
  gllm_inference/exceptions/error_parser.pyi,sha256=ggmh8DJXdwFJInNLrP24WVJt_4raxbAVxzXRQgBpndA,2441
28
32
  gllm_inference/exceptions/exceptions.pyi,sha256=ViXvIzm7tLcstjqfwC6nPziDg0UAmoUAWZVWrAJyp3w,4763
29
33
  gllm_inference/lm_invoker/__init__.pyi,sha256=g-wu6W6ly_WAVPLDWKjt4J5cMo-CJ1x5unuObVSUnug,1115
30
- gllm_inference/lm_invoker/anthropic_lm_invoker.pyi,sha256=i-jed9jfZdCxDQToID6_reKdwND6ZEceKz3rqjS9xsI,14935
31
- gllm_inference/lm_invoker/azure_openai_lm_invoker.pyi,sha256=aNXq0tonXyekeiEVNyqmGGXXquksXZnjMsoAlwAwHUc,14658
34
+ gllm_inference/lm_invoker/anthropic_lm_invoker.pyi,sha256=Jpu7YPr_oUB4WurY3MqDT9J-PgDDRakj7mtrle8S3gE,15038
35
+ gllm_inference/lm_invoker/azure_openai_lm_invoker.pyi,sha256=h71Redwp4a4Ibq3tVTtwM7FUX4AqIlmty4i0Dt8lglk,14788
32
36
  gllm_inference/lm_invoker/bedrock_lm_invoker.pyi,sha256=uOppVYAy2G7TnIK_BsRllW0akP3x14zNjrfwVrTSo8I,12530
33
- gllm_inference/lm_invoker/datasaur_lm_invoker.pyi,sha256=3utf_q8_MCtabsWKOEEwKU0iqZT-MI4g2kdtaklBLjY,9214
37
+ gllm_inference/lm_invoker/datasaur_lm_invoker.pyi,sha256=AzjC-zEJt73I9wtgckZAlrlsC97U86cLksbYzO1XDK0,9280
34
38
  gllm_inference/lm_invoker/google_lm_invoker.pyi,sha256=a5ALWfhv8zW3go4gC4G-dGjQHbpQwHbSr6wdLiKiCKk,16702
35
- gllm_inference/lm_invoker/langchain_lm_invoker.pyi,sha256=kqF6dSqlR4R0FvRSqgTqdbyV9AzZ06KYXwpfnpJiOM8,13273
39
+ gllm_inference/lm_invoker/langchain_lm_invoker.pyi,sha256=iD_nFw0UGX9AHSEZT57T6e2ft2ApHW4sOKk49BDpBO8,13413
36
40
  gllm_inference/lm_invoker/litellm_lm_invoker.pyi,sha256=ye73iH8wXUXzAd87JCjup5wmgVxTNhgbebRNh1hCtjE,13283
37
41
  gllm_inference/lm_invoker/lm_invoker.pyi,sha256=1wH81ssLRLLSGdf7CMQ5CZqKLcuJZHmElwBjQwitqfg,7754
38
- gllm_inference/lm_invoker/openai_compatible_lm_invoker.pyi,sha256=FezVE4af4C6HqzTN5TwVCjBIZ9Z8_jfnCl4ciKyC_uc,15022
39
- gllm_inference/lm_invoker/openai_lm_invoker.pyi,sha256=SkDYtZePQnfS5loMAjHEc7StRSs3W1mqcApxz8q-A04,19684
42
+ gllm_inference/lm_invoker/openai_compatible_lm_invoker.pyi,sha256=jgeRQPw9IH24NoZ9dN8aW2w29D7Unn4w5L-6dhFX6l0,15125
43
+ gllm_inference/lm_invoker/openai_lm_invoker.pyi,sha256=oXK_-nk3sdFnYIEPGkDCg4UWNyRvvMvVjkj7jozZhRk,19787
40
44
  gllm_inference/lm_invoker/schema/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- gllm_inference/lm_invoker/schema/anthropic.pyi,sha256=MJHHyqMGQgj9tURyewuVlmxHxiAzU9qzmJEiK5IUoWw,1020
45
+ gllm_inference/lm_invoker/schema/anthropic.pyi,sha256=LWhE6th4dpZwk7As11p_rhhvVoPXBsF3oAy5CtTMBrg,1060
42
46
  gllm_inference/lm_invoker/schema/bedrock.pyi,sha256=H3attoGWhBA725W4FpXw7Mty46N9jHKjw9PT-0lMEJs,975
43
- gllm_inference/lm_invoker/schema/datasaur.pyi,sha256=mEuWs18VO4KQ6ZTcrlW2BJwphoDe4D5iJfn-GAelvCM,202
44
- gllm_inference/lm_invoker/schema/google.pyi,sha256=AJQsFGKzowXfpSvorSco90aWXqgw9N0M8fInn_JN-X4,464
45
- gllm_inference/lm_invoker/schema/langchain.pyi,sha256=qYiQvzUw0xZa4ii-qyRCFTuIY7j0MREY6QgV1_DfkGk,391
47
+ gllm_inference/lm_invoker/schema/datasaur.pyi,sha256=GLv6XAwKtWyRrX6EsbEufYjkPffHNiEpXwJOn9HqxMA,242
48
+ gllm_inference/lm_invoker/schema/google.pyi,sha256=elXHrUMS46pbTsulk7hBXVVFcT022iD-_U_I590xeV8,529
49
+ gllm_inference/lm_invoker/schema/langchain.pyi,sha256=uEG0DSD0z4L_rDMkBm-TtUy5oTyEHEEJWiLsYvFf1sw,431
46
50
  gllm_inference/lm_invoker/schema/openai.pyi,sha256=CNkIGljwRyQYx0krONX1ik9hwBiN45t9vBk-ZY45rP4,1989
47
- gllm_inference/lm_invoker/schema/openai_compatible.pyi,sha256=WiWEFoPQ0PEAx6EW-P8Nk6O7RF5I9i_hItEHtOl_F4A,1074
51
+ gllm_inference/lm_invoker/schema/openai_compatible.pyi,sha256=2KXyTy43SHz0K_hB0WGXVuaHXL7bwYFIzWHZ_jmdDUo,1114
48
52
  gllm_inference/model/__init__.pyi,sha256=JKQB0wVSVYD-_tdRkG7N_oEVAKGCcoBw0BUOUMLieFo,602
49
53
  gllm_inference/model/em/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
54
  gllm_inference/model/em/google_em.pyi,sha256=c53H-KNdNOK9ppPLyOSkmCA890eF5FsMd05upkPIzF0,487
@@ -86,8 +90,8 @@ gllm_inference/utils/__init__.pyi,sha256=RBTWDu1TDPpTd17fixcPYFv2L_vp4-IAOX0Isxg
86
90
  gllm_inference/utils/langchain.pyi,sha256=4AwFiVAO0ZpdgmqeC4Pb5NJwBt8vVr0MSUqLeCdTscc,1194
87
91
  gllm_inference/utils/validation.pyi,sha256=-RdMmb8afH7F7q4Ao7x6FbwaDfxUHn3hA3WiOgzB-3s,397
88
92
  gllm_inference.build/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
89
- gllm_inference.cp313-win_amd64.pyd,sha256=cbZWMbacfdQSc9ej-26Y0vS9Ti4uUvI04unM4DIRLao,2638848
90
- gllm_inference.pyi,sha256=xOoh8lTQxXc6A4XYKBobWn8RJNszAlinAmbHPJyqi30,3315
91
- gllm_inference_binary-0.5.6.dist-info/METADATA,sha256=Rzc4b-cVAWQIdy5NxgwiGmWpvvjzKOILPUdeKZEFtQ8,4531
92
- gllm_inference_binary-0.5.6.dist-info/WHEEL,sha256=RBxSuTKD__NDRUBZC1I4b5R6FamU3rQfymmsTgmeb3A,98
93
- gllm_inference_binary-0.5.6.dist-info/RECORD,,
93
+ gllm_inference.cp313-win_amd64.pyd,sha256=u4H273mWKuppz3-B9brjK8vYVb92VaJVtmd3rg-oH9U,2672640
94
+ gllm_inference.pyi,sha256=nZrexPebvXto11VCMpLhlbjUnuV_e4qk96992EjXDDM,3315
95
+ gllm_inference_binary-0.5.7.dist-info/METADATA,sha256=5l9vCcKon7_P35hWo6n7VhczO9x6rBULOCosHG3l4sY,4531
96
+ gllm_inference_binary-0.5.7.dist-info/WHEEL,sha256=RBxSuTKD__NDRUBZC1I4b5R6FamU3rQfymmsTgmeb3A,98
97
+ gllm_inference_binary-0.5.7.dist-info/RECORD,,