gllm-inference-binary 0.5.6__cp311-cp311-manylinux_2_31_x86_64.whl → 0.5.7__cp311-cp311-manylinux_2_31_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 +2 -1
- gllm_inference/em_invoker/google_em_invoker.pyi +1 -0
- gllm_inference/em_invoker/langchain_em_invoker.pyi +3 -1
- gllm_inference/em_invoker/openai_compatible_em_invoker.pyi +2 -0
- gllm_inference/em_invoker/openai_em_invoker.pyi +2 -0
- gllm_inference/em_invoker/schema/google.pyi +7 -0
- gllm_inference/em_invoker/schema/langchain.pyi +4 -0
- gllm_inference/em_invoker/schema/openai.pyi +7 -0
- gllm_inference/em_invoker/schema/openai_compatible.pyi +7 -0
- gllm_inference/em_invoker/schema/twelvelabs.pyi +2 -0
- gllm_inference/em_invoker/schema/voyage.pyi +4 -0
- gllm_inference/em_invoker/twelevelabs_em_invoker.pyi +1 -0
- gllm_inference/em_invoker/voyage_em_invoker.pyi +1 -0
- gllm_inference/lm_invoker/anthropic_lm_invoker.pyi +1 -0
- gllm_inference/lm_invoker/azure_openai_lm_invoker.pyi +2 -1
- gllm_inference/lm_invoker/datasaur_lm_invoker.pyi +1 -1
- gllm_inference/lm_invoker/langchain_lm_invoker.pyi +2 -1
- gllm_inference/lm_invoker/openai_compatible_lm_invoker.pyi +1 -0
- gllm_inference/lm_invoker/openai_lm_invoker.pyi +1 -0
- gllm_inference/lm_invoker/schema/anthropic.pyi +2 -0
- gllm_inference/lm_invoker/schema/datasaur.pyi +2 -0
- gllm_inference/lm_invoker/schema/google.pyi +3 -0
- gllm_inference/lm_invoker/schema/langchain.pyi +2 -0
- gllm_inference/lm_invoker/schema/openai_compatible.pyi +2 -0
- gllm_inference.cpython-311-x86_64-linux-gnu.so +0 -0
- gllm_inference.pyi +1 -1
- {gllm_inference_binary-0.5.6.dist-info → gllm_inference_binary-0.5.7.dist-info}/METADATA +1 -1
- {gllm_inference_binary-0.5.6.dist-info → gllm_inference_binary-0.5.7.dist-info}/RECORD +30 -26
- {gllm_inference_binary-0.5.6.dist-info → gllm_inference_binary-0.5.7.dist-info}/WHEEL +0 -0
gllm_inference/constants.pyi
CHANGED
|
@@ -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
|
|
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
|
|
|
@@ -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
|
|
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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -8,43 +8,47 @@ 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=ranHMbG9--DZj9FJRhIUa6U8e-L-Tm-_hSBpzJ6DDs4,5428
|
|
10
10
|
gllm_inference/catalog/prompt_builder_catalog.pyi,sha256=OU8k_4HbqjZEzHZlzSM3uzGQZJmM2uGD76Csqom0CEQ,3197
|
|
11
|
-
gllm_inference/constants.pyi,sha256=
|
|
11
|
+
gllm_inference/constants.pyi,sha256=gPlwRHKIjUdyQoLdoog8ca76YmjrQL0SCDTEn8UEWSY,256
|
|
12
12
|
gllm_inference/em_invoker/__init__.pyi,sha256=XESsrYo1PZeeHe7AMRyuzKoV7XDD5oN89ZTH01zRf4k,873
|
|
13
|
-
gllm_inference/em_invoker/azure_openai_em_invoker.pyi,sha256=
|
|
13
|
+
gllm_inference/em_invoker/azure_openai_em_invoker.pyi,sha256=OEkVu5nv92ITqdhDtgDg4MiLSDRWDmLSnAhYtXpCn6E,4602
|
|
14
14
|
gllm_inference/em_invoker/em_invoker.pyi,sha256=hiH8FB5R-KxhI8Ds2htF3cjRcIcH92yHPcOdpgc4FDo,4341
|
|
15
|
-
gllm_inference/em_invoker/google_em_invoker.pyi,sha256=
|
|
15
|
+
gllm_inference/em_invoker/google_em_invoker.pyi,sha256=pn05VdOZXZOffeg89wlAQOBAyHyt6dLaS0Sd6LoH05M,6130
|
|
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=lXiTTGcNOIwurZx3_6vWLE1DQyioK8Z1fOcPuUATnxA,2782
|
|
19
|
+
gllm_inference/em_invoker/openai_compatible_em_invoker.pyi,sha256=Qz2Qx1KRKhzXr8IseDWcF_6yC-SNtfsXvQuGuKnqVe8,4978
|
|
20
|
+
gllm_inference/em_invoker/openai_em_invoker.pyi,sha256=SFuS2DsvMHcibxFnpQOOchlZUyNRRlI2uMhVEUfifas,4235
|
|
21
21
|
gllm_inference/em_invoker/schema/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
gllm_inference/em_invoker/schema/
|
|
23
|
-
gllm_inference/em_invoker/schema/
|
|
24
|
-
gllm_inference/em_invoker/
|
|
25
|
-
gllm_inference/em_invoker/
|
|
22
|
+
gllm_inference/em_invoker/schema/google.pyi,sha256=MUmgtjMmjSpzmzaAOx6JGZbcdRxgMUhOpvcVQIo-oGs,146
|
|
23
|
+
gllm_inference/em_invoker/schema/langchain.pyi,sha256=onpZutqa2xw2g8rdJTdycy3ub58lkPBVB3KvVVPpyds,92
|
|
24
|
+
gllm_inference/em_invoker/schema/openai.pyi,sha256=Q_dsEcodkOXYXPdrkOkW0LnuLhfeq8tEbtZAGMz2ajA,139
|
|
25
|
+
gllm_inference/em_invoker/schema/openai_compatible.pyi,sha256=gmvGtsWoOMBelke_tZjC6dKimFBW9f4Vrgv0Ig0OM9Q,150
|
|
26
|
+
gllm_inference/em_invoker/schema/twelvelabs.pyi,sha256=F6wKHgG01bYskJpKoheBSpRpHUfFpteKn9sj9n5YfcU,372
|
|
27
|
+
gllm_inference/em_invoker/schema/voyage.pyi,sha256=HVpor0fqNy-IwapCICfsgFmqf1FJXCOMIxS2vOXhHd8,289
|
|
28
|
+
gllm_inference/em_invoker/twelevelabs_em_invoker.pyi,sha256=6b8oJ8aLNBn45o85dka-Xbq9nWZqtcMgFls39ekEZ6o,5066
|
|
29
|
+
gllm_inference/em_invoker/voyage_em_invoker.pyi,sha256=7akaf8GxOA8Trokad0xmlYKr49rY3Egm3_4gpW-vly8,5134
|
|
26
30
|
gllm_inference/exceptions/__init__.pyi,sha256=v9uxjW5DssIn7n_bKqT7L83CeqFET2Z45GFOvi78UuE,977
|
|
27
31
|
gllm_inference/exceptions/error_parser.pyi,sha256=4RkVfS2Fl9kjz_h2bK9eoAeI-Y-VkHcUqXWj68BsYig,2393
|
|
28
32
|
gllm_inference/exceptions/exceptions.pyi,sha256=5YRackwVNvyOJjOtiVszqu8q87s8ioXTa-XwaYmeiC4,4643
|
|
29
33
|
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=
|
|
34
|
+
gllm_inference/lm_invoker/anthropic_lm_invoker.pyi,sha256=wdMwGusPNJ1etEOC9SQrSspCaqtU7w2yVP-gEJhUBO0,14765
|
|
35
|
+
gllm_inference/lm_invoker/azure_openai_lm_invoker.pyi,sha256=cm5dXvbETJsfMWXRCpjGo5DTtDrT6vuO-ZTlljY4bWY,14536
|
|
32
36
|
gllm_inference/lm_invoker/bedrock_lm_invoker.pyi,sha256=0ZeBJ_PWuFY2dOlON11VsI4BENhFJhK4md-8DwNpcyU,12300
|
|
33
|
-
gllm_inference/lm_invoker/datasaur_lm_invoker.pyi,sha256=
|
|
37
|
+
gllm_inference/lm_invoker/datasaur_lm_invoker.pyi,sha256=m0R95-9dIaopIf5awLNmxs39qNeRHS_HJFBi51JCmK4,9115
|
|
34
38
|
gllm_inference/lm_invoker/google_lm_invoker.pyi,sha256=dRK3_--UQEBEMkLItav9MeTXp5p-iM-pqzt2JnwocPU,16393
|
|
35
|
-
gllm_inference/lm_invoker/langchain_lm_invoker.pyi,sha256=
|
|
39
|
+
gllm_inference/lm_invoker/langchain_lm_invoker.pyi,sha256=jKyq1l4MyHNyi1Or4aWO0QLIX74_PttuNlSX8vPQyeA,13157
|
|
36
40
|
gllm_inference/lm_invoker/litellm_lm_invoker.pyi,sha256=ad_tVyOjATiFyYF-f_1vX2Sl4BXy-fDXEW_D8fD1Db8,13037
|
|
37
41
|
gllm_inference/lm_invoker/lm_invoker.pyi,sha256=XvcR2AAH_vnIdZ3cgDer59ZT724mW22_OSF8mpeo_kk,7610
|
|
38
|
-
gllm_inference/lm_invoker/openai_compatible_lm_invoker.pyi,sha256
|
|
39
|
-
gllm_inference/lm_invoker/openai_lm_invoker.pyi,sha256=
|
|
42
|
+
gllm_inference/lm_invoker/openai_compatible_lm_invoker.pyi,sha256=-_9HW5ZpUUIAOTwdG1RAoWWRF712SPLhG1nbsQ_mShg,14861
|
|
43
|
+
gllm_inference/lm_invoker/openai_lm_invoker.pyi,sha256=AugnEKSOtnupKDymAGrTihz14KhOxPigHmS143M4AuE,19427
|
|
40
44
|
gllm_inference/lm_invoker/schema/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
-
gllm_inference/lm_invoker/schema/anthropic.pyi,sha256=
|
|
45
|
+
gllm_inference/lm_invoker/schema/anthropic.pyi,sha256=aftRPzTw-f2Qi32KABXEz0b8Lzza7EvDjQfiwJco1VE,1009
|
|
42
46
|
gllm_inference/lm_invoker/schema/bedrock.pyi,sha256=FOUMZkBi6KRa__mYoy3FNJ5sP0EC6rgLuhoijnwelIg,927
|
|
43
|
-
gllm_inference/lm_invoker/schema/datasaur.pyi,sha256=
|
|
44
|
-
gllm_inference/lm_invoker/schema/google.pyi,sha256=
|
|
45
|
-
gllm_inference/lm_invoker/schema/langchain.pyi,sha256
|
|
47
|
+
gllm_inference/lm_invoker/schema/datasaur.pyi,sha256=aA4DhTXIezwLvFzphR24a5ueVln2FCBIloP9Hbt3iz4,230
|
|
48
|
+
gllm_inference/lm_invoker/schema/google.pyi,sha256=AIsNgq0ZZuicHmx4bL7z6q-946T05nWts3HUeA8hhHQ,505
|
|
49
|
+
gllm_inference/lm_invoker/schema/langchain.pyi,sha256=l2kHU7S3vmG3-NCt8B26krp_i4Br3waES_CekkgrKSA,409
|
|
46
50
|
gllm_inference/lm_invoker/schema/openai.pyi,sha256=YogOvOZqPuWkNyfcvyzaxi-Bu7UMfcoRzk4gWtkPG08,1899
|
|
47
|
-
gllm_inference/lm_invoker/schema/openai_compatible.pyi,sha256=
|
|
51
|
+
gllm_inference/lm_invoker/schema/openai_compatible.pyi,sha256=LlZsjxGf5idMQ1G1gLF-AClpch7ACPVvTA6Snq8pf1M,1060
|
|
48
52
|
gllm_inference/model/__init__.pyi,sha256=qClHIgljqhPPCKlGTKmHsWgYb4_hADybxtC2q1U8a5Q,593
|
|
49
53
|
gllm_inference/model/em/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
54
|
gllm_inference/model/em/google_em.pyi,sha256=ZPN5LmReO0bcTfnZixFooUTzgD-daNFPzfxzZ-5WzQQ,471
|
|
@@ -86,8 +90,8 @@ gllm_inference/utils/__init__.pyi,sha256=npmBmmlBv7cPHMg1hdL3S2_RelD6vk_LhCsGELh
|
|
|
86
90
|
gllm_inference/utils/langchain.pyi,sha256=VluQiHkGigDdqLUbhB6vnXiISCP5hHqV0qokYY6dC1A,1164
|
|
87
91
|
gllm_inference/utils/validation.pyi,sha256=toxBtRp-VItC_X7sNi-GDd7sjibBdWMrR0q01OI2D7k,385
|
|
88
92
|
gllm_inference.build/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
|
|
89
|
-
gllm_inference.cpython-311-x86_64-linux-gnu.so,sha256=
|
|
90
|
-
gllm_inference.pyi,sha256=
|
|
91
|
-
gllm_inference_binary-0.5.
|
|
92
|
-
gllm_inference_binary-0.5.
|
|
93
|
-
gllm_inference_binary-0.5.
|
|
93
|
+
gllm_inference.cpython-311-x86_64-linux-gnu.so,sha256=xMVGqtqy4ZZTxPxQkhrAgRs9oVzsQLoyquCK0qjY7ac,3769120
|
|
94
|
+
gllm_inference.pyi,sha256=HPIjsiX3usTXFeStYEslrHJDUtwpBBwl-Exzcf7y7Mc,3295
|
|
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=IFe_ZNdNTT_i6vUiBlaFC_vwJqKup8CcDJ489_L8YrY,110
|
|
97
|
+
gllm_inference_binary-0.5.7.dist-info/RECORD,,
|
|
File without changes
|