gllm-inference-binary 0.5.14__cp312-cp312-manylinux_2_31_x86_64.whl → 0.5.16__cp312-cp312-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/builder/build_em_invoker.pyi +16 -1
- gllm_inference/em_invoker/__init__.pyi +2 -1
- gllm_inference/em_invoker/azure_openai_em_invoker.pyi +5 -2
- gllm_inference/em_invoker/bedrock_em_invoker.pyi +104 -0
- gllm_inference/em_invoker/em_invoker.pyi +10 -3
- gllm_inference/em_invoker/google_em_invoker.pyi +6 -3
- gllm_inference/em_invoker/langchain_em_invoker.pyi +5 -2
- gllm_inference/em_invoker/openai_compatible_em_invoker.pyi +6 -2
- gllm_inference/em_invoker/openai_em_invoker.pyi +5 -1
- gllm_inference/em_invoker/schema/bedrock.pyi +20 -0
- gllm_inference/em_invoker/twelevelabs_em_invoker.pyi +5 -2
- gllm_inference/em_invoker/voyage_em_invoker.pyi +5 -2
- gllm_inference/schema/__init__.pyi +3 -2
- gllm_inference/schema/config.pyi +15 -0
- gllm_inference/schema/enums.pyi +5 -0
- gllm_inference.cpython-312-x86_64-linux-gnu.so +0 -0
- gllm_inference.pyi +7 -4
- {gllm_inference_binary-0.5.14.dist-info → gllm_inference_binary-0.5.16.dist-info}/METADATA +1 -1
- {gllm_inference_binary-0.5.14.dist-info → gllm_inference_binary-0.5.16.dist-info}/RECORD +20 -17
- {gllm_inference_binary-0.5.14.dist-info → gllm_inference_binary-0.5.16.dist-info}/WHEEL +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from _typeshed import Incomplete
|
|
2
|
-
from gllm_inference.em_invoker import AzureOpenAIEMInvoker as AzureOpenAIEMInvoker, GoogleEMInvoker as GoogleEMInvoker, LangChainEMInvoker as LangChainEMInvoker, OpenAICompatibleEMInvoker as OpenAICompatibleEMInvoker, OpenAIEMInvoker as OpenAIEMInvoker, TwelveLabsEMInvoker as TwelveLabsEMInvoker, VoyageEMInvoker as VoyageEMInvoker
|
|
2
|
+
from gllm_inference.em_invoker import AzureOpenAIEMInvoker as AzureOpenAIEMInvoker, BedrockEMInvoker as BedrockEMInvoker, GoogleEMInvoker as GoogleEMInvoker, LangChainEMInvoker as LangChainEMInvoker, OpenAICompatibleEMInvoker as OpenAICompatibleEMInvoker, OpenAIEMInvoker as OpenAIEMInvoker, TwelveLabsEMInvoker as TwelveLabsEMInvoker, VoyageEMInvoker as VoyageEMInvoker
|
|
3
3
|
from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
|
|
4
4
|
from gllm_inference.schema.model_id import ModelId as ModelId, ModelProvider as ModelProvider
|
|
5
5
|
from typing import Any
|
|
@@ -9,6 +9,7 @@ logger: Incomplete
|
|
|
9
9
|
|
|
10
10
|
class Key:
|
|
11
11
|
"""Defines valid keys in the config."""
|
|
12
|
+
ACCESS_KEY_ID: str
|
|
12
13
|
API_KEY: str
|
|
13
14
|
AZURE_DEPLOYMENT: str
|
|
14
15
|
AZURE_ENDPOINT: str
|
|
@@ -17,6 +18,7 @@ class Key:
|
|
|
17
18
|
MODEL_KWARGS: str
|
|
18
19
|
MODEL_NAME: str
|
|
19
20
|
MODEL_CLASS_PATH: str
|
|
21
|
+
SECRET_ACCESS_KEY: str
|
|
20
22
|
|
|
21
23
|
def build_em_invoker(model_id: str | ModelId, credentials: str | dict[str, Any] | None = None, config: dict[str, Any] | None = None) -> BaseEMInvoker:
|
|
22
24
|
'''Build an embedding model invoker based on the provided configurations.
|
|
@@ -41,6 +43,19 @@ def build_em_invoker(model_id: str | ModelId, credentials: str | dict[str, Any]
|
|
|
41
43
|
ValueError: If the provider is invalid.
|
|
42
44
|
|
|
43
45
|
Usage examples:
|
|
46
|
+
# Using Bedrock
|
|
47
|
+
```python
|
|
48
|
+
em_invoker = build_em_invoker(
|
|
49
|
+
model_id="bedrock/cohere.embed-english-v3",
|
|
50
|
+
credentials={
|
|
51
|
+
"access_key_id": "Abc123...",
|
|
52
|
+
"secret_access_key": "Xyz123...",
|
|
53
|
+
},
|
|
54
|
+
)
|
|
55
|
+
```
|
|
56
|
+
The credentials can also be provided through the `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`
|
|
57
|
+
environment variables.
|
|
58
|
+
|
|
44
59
|
# Using Google Gen AI (via API key)
|
|
45
60
|
```python
|
|
46
61
|
em_invoker = build_em_invoker(
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
from gllm_inference.em_invoker.azure_openai_em_invoker import AzureOpenAIEMInvoker as AzureOpenAIEMInvoker
|
|
2
|
+
from gllm_inference.em_invoker.bedrock_em_invoker import BedrockEMInvoker as BedrockEMInvoker
|
|
2
3
|
from gllm_inference.em_invoker.google_em_invoker import GoogleEMInvoker as GoogleEMInvoker
|
|
3
4
|
from gllm_inference.em_invoker.langchain_em_invoker import LangChainEMInvoker as LangChainEMInvoker
|
|
4
5
|
from gllm_inference.em_invoker.openai_compatible_em_invoker import OpenAICompatibleEMInvoker as OpenAICompatibleEMInvoker
|
|
@@ -6,4 +7,4 @@ from gllm_inference.em_invoker.openai_em_invoker import OpenAIEMInvoker as OpenA
|
|
|
6
7
|
from gllm_inference.em_invoker.twelevelabs_em_invoker import TwelveLabsEMInvoker as TwelveLabsEMInvoker
|
|
7
8
|
from gllm_inference.em_invoker.voyage_em_invoker import VoyageEMInvoker as VoyageEMInvoker
|
|
8
9
|
|
|
9
|
-
__all__ = ['AzureOpenAIEMInvoker', 'GoogleEMInvoker', 'LangChainEMInvoker', 'OpenAIEMInvoker', 'OpenAICompatibleEMInvoker', 'TwelveLabsEMInvoker', 'VoyageEMInvoker']
|
|
10
|
+
__all__ = ['AzureOpenAIEMInvoker', 'BedrockEMInvoker', 'GoogleEMInvoker', 'LangChainEMInvoker', 'OpenAIEMInvoker', 'OpenAICompatibleEMInvoker', 'TwelveLabsEMInvoker', 'VoyageEMInvoker']
|
|
@@ -3,7 +3,7 @@ from gllm_core.utils.retry import RetryConfig as RetryConfig
|
|
|
3
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
5
|
from gllm_inference.em_invoker.schema.openai import Key as Key
|
|
6
|
-
from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider
|
|
6
|
+
from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider, TruncationConfig as TruncationConfig
|
|
7
7
|
from typing import Any
|
|
8
8
|
|
|
9
9
|
class AzureOpenAIEMInvoker(OpenAIEMInvoker):
|
|
@@ -16,6 +16,7 @@ class AzureOpenAIEMInvoker(OpenAIEMInvoker):
|
|
|
16
16
|
client (AsyncAzureOpenAI): The client for the Azure OpenAI API.
|
|
17
17
|
default_hyperparameters (dict[str, Any]): Default hyperparameters for invoking the embedding model.
|
|
18
18
|
retry_config (RetryConfig): The retry configuration for the embedding model.
|
|
19
|
+
truncation_config (TruncationConfig | None): The truncation configuration for the embedding model.
|
|
19
20
|
|
|
20
21
|
Input types:
|
|
21
22
|
The `AzureOpenAIEMInvoker` only supports text inputs.
|
|
@@ -68,7 +69,7 @@ class AzureOpenAIEMInvoker(OpenAIEMInvoker):
|
|
|
68
69
|
```
|
|
69
70
|
'''
|
|
70
71
|
client: Incomplete
|
|
71
|
-
def __init__(self, azure_endpoint: str, azure_deployment: str, api_key: str | None = None, api_version: str = ..., model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None) -> None:
|
|
72
|
+
def __init__(self, azure_endpoint: str, azure_deployment: str, api_key: str | None = None, api_version: str = ..., model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None, truncation_config: TruncationConfig | None = None) -> None:
|
|
72
73
|
"""Initializes a new instance of the AzureOpenAIEMInvoker class.
|
|
73
74
|
|
|
74
75
|
Args:
|
|
@@ -83,4 +84,6 @@ class AzureOpenAIEMInvoker(OpenAIEMInvoker):
|
|
|
83
84
|
Defaults to None.
|
|
84
85
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
85
86
|
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
87
|
+
truncation_config (TruncationConfig | None, optional): Configuration for text truncation behavior.
|
|
88
|
+
Defaults to None, in which case no truncation is applied.
|
|
86
89
|
"""
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
from _typeshed import Incomplete
|
|
2
|
+
from enum import StrEnum
|
|
3
|
+
from gllm_core.utils.retry import RetryConfig as RetryConfig
|
|
4
|
+
from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
|
|
5
|
+
from gllm_inference.em_invoker.schema.bedrock import InputType as InputType, Key as Key, OutputType as OutputType
|
|
6
|
+
from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider, TruncationConfig as TruncationConfig, Vector as Vector
|
|
7
|
+
from typing import Any
|
|
8
|
+
|
|
9
|
+
class ModelType(StrEnum):
|
|
10
|
+
"""Defines the type of the Bedrock embedding model."""
|
|
11
|
+
COHERE = 'cohere'
|
|
12
|
+
TITAN = 'titan'
|
|
13
|
+
|
|
14
|
+
SUPPORTED_ATTACHMENTS: Incomplete
|
|
15
|
+
|
|
16
|
+
class BedrockEMInvoker(BaseEMInvoker):
|
|
17
|
+
'''An embedding model invoker to interact with AWS Bedrock embedding models.
|
|
18
|
+
|
|
19
|
+
Attributes:
|
|
20
|
+
model_id (str): The model ID of the embedding model.
|
|
21
|
+
model_provider (str): The provider of the embedding model.
|
|
22
|
+
model_name (str): The name of the embedding model.
|
|
23
|
+
session (Session): The Bedrock client session.
|
|
24
|
+
client_kwargs (dict[str, Any]): The Bedrock client kwargs.
|
|
25
|
+
default_hyperparameters (dict[str, Any]): Default hyperparameters for invoking the embedding model.
|
|
26
|
+
retry_config (RetryConfig): The retry configuration for the embedding model.
|
|
27
|
+
truncation_config (TruncationConfig | None): The truncation configuration for the embedding model.
|
|
28
|
+
|
|
29
|
+
Input types:
|
|
30
|
+
The `BedrockEMInvoker` only supports text inputs.
|
|
31
|
+
|
|
32
|
+
Output format:
|
|
33
|
+
The `BedrockEMInvoker` can embed either:
|
|
34
|
+
1. A single content.
|
|
35
|
+
1. A single content is a single text.
|
|
36
|
+
2. The output will be a `Vector`, representing the embedding of the content.
|
|
37
|
+
|
|
38
|
+
# Example 1: Embedding a text content.
|
|
39
|
+
```python
|
|
40
|
+
text = "This is a text"
|
|
41
|
+
result = await em_invoker.invoke(text)
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
The above examples will return a `Vector` with a size of (embedding_size,).
|
|
45
|
+
|
|
46
|
+
2. A list of contents.
|
|
47
|
+
1. A list of contents is a list of texts.
|
|
48
|
+
2. The output will be a `list[Vector]`, where each element is a `Vector` representing the
|
|
49
|
+
embedding of each single content.
|
|
50
|
+
|
|
51
|
+
# Example: Embedding a list of contents.
|
|
52
|
+
```python
|
|
53
|
+
text1 = "This is a text"
|
|
54
|
+
text2 = "This is another text"
|
|
55
|
+
text3 = "This is yet another text"
|
|
56
|
+
result = await em_invoker.invoke([text1, text2, text3])
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
The above examples will return a `list[Vector]` with a size of (3, embedding_size).
|
|
60
|
+
|
|
61
|
+
Retry and timeout:
|
|
62
|
+
The `BedrockEMInvoker` supports retry and timeout configuration.
|
|
63
|
+
By default, the max retries is set to 0 and the timeout is set to 30.0 seconds.
|
|
64
|
+
They can be customized by providing a custom `RetryConfig` object to the `retry_config` parameter.
|
|
65
|
+
|
|
66
|
+
Retry config examples:
|
|
67
|
+
```python
|
|
68
|
+
retry_config = RetryConfig(max_retries=0, timeout=0.0) # No retry, no timeout
|
|
69
|
+
retry_config = RetryConfig(max_retries=0, timeout=10.0) # No retry, 10.0 seconds timeout
|
|
70
|
+
retry_config = RetryConfig(max_retries=5, timeout=0.0) # 5 max retries, no timeout
|
|
71
|
+
retry_config = RetryConfig(max_retries=5, timeout=10.0) # 5 max retries, 10.0 seconds timeout
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Usage example:
|
|
75
|
+
```python
|
|
76
|
+
em_invoker = BedrockEMInvoker(..., retry_config=retry_config)
|
|
77
|
+
```
|
|
78
|
+
'''
|
|
79
|
+
session: Incomplete
|
|
80
|
+
client_kwargs: Incomplete
|
|
81
|
+
def __init__(self, model_name: str, access_key_id: str | None = None, secret_access_key: str | None = None, region_name: str = 'us-east-1', model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None, truncation_config: TruncationConfig | None = None) -> None:
|
|
82
|
+
'''Initializes a new instance of the BedrockEMInvoker class.
|
|
83
|
+
|
|
84
|
+
Args:
|
|
85
|
+
model_name (str): The name of the Bedrock embedding model to be used.
|
|
86
|
+
access_key_id (str | None, optional): The AWS access key ID. Defaults to None, in which case
|
|
87
|
+
the `AWS_ACCESS_KEY_ID` environment variable will be used.
|
|
88
|
+
secret_access_key (str | None, optional): The AWS secret access key. Defaults to None, in which case
|
|
89
|
+
the `AWS_SECRET_ACCESS_KEY` environment variable will be used.
|
|
90
|
+
region_name (str, optional): The AWS region name. Defaults to "us-east-1".
|
|
91
|
+
model_kwargs (dict[str, Any] | None, optional): Additional keyword arguments for the Bedrock client.
|
|
92
|
+
Defaults to None.
|
|
93
|
+
default_hyperparameters (dict[str, Any] | None, optional): Default hyperparameters for invoking the model.
|
|
94
|
+
Defaults to None.
|
|
95
|
+
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
96
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
97
|
+
truncation_config (TruncationConfig | None, optional): Configuration for text truncation behavior.
|
|
98
|
+
Defaults to None, in which case no truncation is applied.
|
|
99
|
+
|
|
100
|
+
Raises:
|
|
101
|
+
ValueError: If the model name is not supported.
|
|
102
|
+
ValueError: If `access_key_id` or `secret_access_key` is neither provided nor set in the
|
|
103
|
+
`AWS_ACCESS_KEY_ID` or `AWS_SECRET_ACCESS_KEY` environment variables, respectively.
|
|
104
|
+
'''
|
|
@@ -4,7 +4,7 @@ from abc import ABC
|
|
|
4
4
|
from gllm_core.utils.retry import RetryConfig
|
|
5
5
|
from gllm_inference.constants import DOCUMENT_MIME_TYPES as DOCUMENT_MIME_TYPES, INVOKER_DEFAULT_TIMEOUT as INVOKER_DEFAULT_TIMEOUT
|
|
6
6
|
from gllm_inference.exceptions import parse_error_message as parse_error_message
|
|
7
|
-
from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, EMContent as EMContent, ModelId as ModelId, Vector as Vector
|
|
7
|
+
from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, EMContent as EMContent, ModelId as ModelId, TruncateSide as TruncateSide, TruncationConfig as TruncationConfig, Vector as Vector
|
|
8
8
|
from typing import Any
|
|
9
9
|
|
|
10
10
|
class BaseEMInvoker(ABC, metaclass=abc.ABCMeta):
|
|
@@ -16,12 +16,17 @@ class BaseEMInvoker(ABC, metaclass=abc.ABCMeta):
|
|
|
16
16
|
model_id (str): The model ID of the embedding model.
|
|
17
17
|
model_provider (str): The provider of the embedding model.
|
|
18
18
|
model_name (str): The name of the embedding model.
|
|
19
|
-
default_hyperparameters (dict[str, Any]): Default hyperparameters for invoking the
|
|
19
|
+
default_hyperparameters (dict[str, Any]): Default hyperparameters for invoking the
|
|
20
|
+
embedding model. Defaults to None, in which case an empty dictionary is used.
|
|
20
21
|
retry_config (RetryConfig): The retry configuration for the embedding model.
|
|
22
|
+
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
23
|
+
truncation_config (TruncationConfig | None): The truncation configuration for the embedding model.
|
|
24
|
+
Defaults to None, in which case no truncation is applied.
|
|
21
25
|
"""
|
|
22
26
|
default_hyperparameters: Incomplete
|
|
23
27
|
retry_config: Incomplete
|
|
24
|
-
|
|
28
|
+
truncation_config: Incomplete
|
|
29
|
+
def __init__(self, model_id: ModelId, default_hyperparameters: dict[str, Any] | None = None, supported_attachments: set[str] | None = None, retry_config: RetryConfig | None = None, truncation_config: TruncationConfig | None = None) -> None:
|
|
25
30
|
"""Initializes a new instance of the BaseEMInvoker class.
|
|
26
31
|
|
|
27
32
|
Args:
|
|
@@ -32,6 +37,8 @@ class BaseEMInvoker(ABC, metaclass=abc.ABCMeta):
|
|
|
32
37
|
in which case an empty set is used (indicating that no attachments are supported).
|
|
33
38
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
34
39
|
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
40
|
+
truncation_config (TruncationConfig | None, optional): Configuration for text truncation behavior.
|
|
41
|
+
Defaults to None, in which case no truncation is applied.
|
|
35
42
|
"""
|
|
36
43
|
@property
|
|
37
44
|
def model_id(self) -> str:
|
|
@@ -3,7 +3,7 @@ from gllm_core.utils.retry import RetryConfig as RetryConfig
|
|
|
3
3
|
from gllm_inference.constants import GOOGLE_SCOPES as GOOGLE_SCOPES, SECONDS_TO_MILLISECONDS as SECONDS_TO_MILLISECONDS
|
|
4
4
|
from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
|
|
5
5
|
from gllm_inference.em_invoker.schema.google import Key as Key
|
|
6
|
-
from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider, Vector as Vector
|
|
6
|
+
from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider, TruncationConfig as TruncationConfig, Vector as Vector
|
|
7
7
|
from typing import Any
|
|
8
8
|
|
|
9
9
|
SUPPORTED_ATTACHMENTS: Incomplete
|
|
@@ -17,7 +17,8 @@ class GoogleEMInvoker(BaseEMInvoker):
|
|
|
17
17
|
model_name (str): The name of the embedding model.
|
|
18
18
|
client_params (dict[str, Any]): The Google client instance init parameters.
|
|
19
19
|
default_hyperparameters (dict[str, Any]): Default hyperparameters for invoking the embedding model.
|
|
20
|
-
retry_config (RetryConfig
|
|
20
|
+
retry_config (RetryConfig): The retry configuration for the embedding model.
|
|
21
|
+
truncation_config (TruncationConfig | None): The truncation configuration for the embedding model.
|
|
21
22
|
|
|
22
23
|
Initialization:
|
|
23
24
|
The `GoogleEMInvoker` can use either Google Gen AI or Google Vertex AI.
|
|
@@ -98,7 +99,7 @@ class GoogleEMInvoker(BaseEMInvoker):
|
|
|
98
99
|
```
|
|
99
100
|
'''
|
|
100
101
|
client_params: Incomplete
|
|
101
|
-
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, retry_config: RetryConfig | None = None) -> None:
|
|
102
|
+
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, retry_config: RetryConfig | None = None, truncation_config: TruncationConfig | None = None) -> None:
|
|
102
103
|
'''Initializes a new instance of the GoogleEMInvoker class.
|
|
103
104
|
|
|
104
105
|
Args:
|
|
@@ -117,6 +118,8 @@ class GoogleEMInvoker(BaseEMInvoker):
|
|
|
117
118
|
Defaults to None.
|
|
118
119
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
119
120
|
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
121
|
+
truncation_config (TruncationConfig | None, optional): Configuration for text truncation behavior.
|
|
122
|
+
Defaults to None, in which case no truncation is applied.
|
|
120
123
|
|
|
121
124
|
Note:
|
|
122
125
|
If neither `api_key` nor `credentials_path` is provided, Google Gen AI will be used by default.
|
|
@@ -3,7 +3,7 @@ from gllm_core.utils.retry import RetryConfig
|
|
|
3
3
|
from gllm_inference.constants import INVOKER_DEFAULT_TIMEOUT as INVOKER_DEFAULT_TIMEOUT, INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
|
|
4
4
|
from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
|
|
5
5
|
from gllm_inference.em_invoker.schema.langchain import Key as Key
|
|
6
|
-
from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider, Vector as Vector
|
|
6
|
+
from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider, TruncationConfig as TruncationConfig, Vector as Vector
|
|
7
7
|
from gllm_inference.utils import load_langchain_model as load_langchain_model, parse_model_data as parse_model_data
|
|
8
8
|
from langchain_core.embeddings import Embeddings as Embeddings
|
|
9
9
|
from typing import Any
|
|
@@ -19,9 +19,10 @@ class LangChainEMInvoker(BaseEMInvoker):
|
|
|
19
19
|
model_name (str): The name of the embedding model.
|
|
20
20
|
em (Embeddings): The instance to interact with an embedding model defined using LangChain's Embeddings.
|
|
21
21
|
retry_config (RetryConfig): The retry configuration for the embedding model.
|
|
22
|
+
truncation_config (TruncationConfig | None): The truncation configuration for the embedding model.
|
|
22
23
|
"""
|
|
23
24
|
model: Incomplete
|
|
24
|
-
def __init__(self, model: Embeddings | None = None, model_class_path: str | None = None, model_name: str | None = None, model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None) -> None:
|
|
25
|
+
def __init__(self, model: Embeddings | None = None, model_class_path: str | None = None, model_name: str | None = None, model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None, truncation_config: TruncationConfig | None = None) -> None:
|
|
25
26
|
'''Initializes a new instance of the LangChainEMInvoker class.
|
|
26
27
|
|
|
27
28
|
Args:
|
|
@@ -38,4 +39,6 @@ class LangChainEMInvoker(BaseEMInvoker):
|
|
|
38
39
|
Defaults to None.
|
|
39
40
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
40
41
|
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
42
|
+
truncation_config (TruncationConfig | None, optional): Configuration for text truncation behavior.
|
|
43
|
+
Defaults to None, in which case no truncation is applied.
|
|
41
44
|
'''
|
|
@@ -3,7 +3,7 @@ from gllm_core.utils.retry import RetryConfig as RetryConfig
|
|
|
3
3
|
from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
|
|
4
4
|
from gllm_inference.em_invoker.openai_em_invoker import OpenAIEMInvoker as OpenAIEMInvoker
|
|
5
5
|
from gllm_inference.em_invoker.schema.openai_compatible import Key as Key
|
|
6
|
-
from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider
|
|
6
|
+
from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider, TruncationConfig as TruncationConfig
|
|
7
7
|
from typing import Any
|
|
8
8
|
|
|
9
9
|
class OpenAICompatibleEMInvoker(OpenAIEMInvoker):
|
|
@@ -16,6 +16,8 @@ class OpenAICompatibleEMInvoker(OpenAIEMInvoker):
|
|
|
16
16
|
client (AsyncOpenAI): The OpenAI client instance.
|
|
17
17
|
default_hyperparameters (dict[str, Any]): Default hyperparameters for invoking the embedding model.
|
|
18
18
|
retry_config (RetryConfig): The retry configuration for the embedding model.
|
|
19
|
+
truncation_config (TruncationConfig | None): The truncation configuration for the embedding model.
|
|
20
|
+
|
|
19
21
|
|
|
20
22
|
When to use:
|
|
21
23
|
The `OpenAICompatibleEMInvoker` is designed to interact with endpoints that are compatible with OpenAI\'s
|
|
@@ -76,7 +78,7 @@ class OpenAICompatibleEMInvoker(OpenAIEMInvoker):
|
|
|
76
78
|
```
|
|
77
79
|
'''
|
|
78
80
|
client: Incomplete
|
|
79
|
-
def __init__(self, model_name: str, base_url: str, api_key: str | None = None, model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None) -> None:
|
|
81
|
+
def __init__(self, model_name: str, base_url: str, api_key: str | None = None, model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None, truncation_config: TruncationConfig | None = None) -> None:
|
|
80
82
|
"""Initializes a new instance of the OpenAICompatibleEMInvoker class.
|
|
81
83
|
|
|
82
84
|
Args:
|
|
@@ -89,4 +91,6 @@ class OpenAICompatibleEMInvoker(OpenAIEMInvoker):
|
|
|
89
91
|
Defaults to None.
|
|
90
92
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
91
93
|
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
94
|
+
truncation_config (TruncationConfig | None, optional): Configuration for text truncation behavior.
|
|
95
|
+
Defaults to None, in which case no truncation is applied.
|
|
92
96
|
"""
|
|
@@ -4,6 +4,7 @@ from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_P
|
|
|
4
4
|
from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
|
|
5
5
|
from gllm_inference.em_invoker.schema.openai import Key as Key
|
|
6
6
|
from gllm_inference.schema import ModelId as ModelId, ModelProvider as ModelProvider, Vector as Vector
|
|
7
|
+
from gllm_inference.schema.config import TruncationConfig as TruncationConfig
|
|
7
8
|
from typing import Any
|
|
8
9
|
|
|
9
10
|
SUPPORTED_ATTACHMENTS: Incomplete
|
|
@@ -18,6 +19,7 @@ class OpenAIEMInvoker(BaseEMInvoker):
|
|
|
18
19
|
client (AsyncOpenAI): The client for the OpenAI API.
|
|
19
20
|
default_hyperparameters (dict[str, Any]): Default hyperparameters for invoking the embedding model.
|
|
20
21
|
retry_config (RetryConfig): The retry configuration for the embedding model.
|
|
22
|
+
truncation_config (TruncationConfig | None): The truncation configuration for the embedding model.
|
|
21
23
|
|
|
22
24
|
Input types:
|
|
23
25
|
The `OpenAIEMInvoker` only supports text inputs.
|
|
@@ -70,7 +72,7 @@ class OpenAIEMInvoker(BaseEMInvoker):
|
|
|
70
72
|
```
|
|
71
73
|
'''
|
|
72
74
|
client: Incomplete
|
|
73
|
-
def __init__(self, model_name: str, api_key: str | None = None, model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None) -> None:
|
|
75
|
+
def __init__(self, model_name: str, api_key: str | None = None, model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None, truncation_config: TruncationConfig | None = None) -> None:
|
|
74
76
|
"""Initializes a new instance of the OpenAIEMInvoker class.
|
|
75
77
|
|
|
76
78
|
Args:
|
|
@@ -83,4 +85,6 @@ class OpenAIEMInvoker(BaseEMInvoker):
|
|
|
83
85
|
Defaults to None.
|
|
84
86
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
85
87
|
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
88
|
+
truncation_config (TruncationConfig | None, optional): Configuration for text truncation behavior.
|
|
89
|
+
Defaults to None, in which case no truncation is applied.
|
|
86
90
|
"""
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
class Key:
|
|
2
|
+
"""Defines valid keys in Bedrock."""
|
|
3
|
+
ACCEPT: str
|
|
4
|
+
CONTENT_TYPE: str
|
|
5
|
+
INPUT_TEXT: str
|
|
6
|
+
INPUT_TYPE: str
|
|
7
|
+
MODEL_ID: str
|
|
8
|
+
TEXTS: str
|
|
9
|
+
|
|
10
|
+
class InputType:
|
|
11
|
+
"""Defines valid input types in Bedrock."""
|
|
12
|
+
APPLICATION_JSON: str
|
|
13
|
+
SEARCH_DOCUMENT: str
|
|
14
|
+
SEARCH_QUERY: str
|
|
15
|
+
|
|
16
|
+
class OutputType:
|
|
17
|
+
"""Defines valid output types in Bedrock."""
|
|
18
|
+
BODY: str
|
|
19
|
+
EMBEDDING: str
|
|
20
|
+
EMBEDDINGS: str
|
|
@@ -3,7 +3,7 @@ from gllm_core.utils.retry import RetryConfig as RetryConfig
|
|
|
3
3
|
from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
|
|
4
4
|
from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
|
|
5
5
|
from gllm_inference.em_invoker.schema.twelvelabs import InputType as InputType, Key as Key, OutputType as OutputType
|
|
6
|
-
from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, EMContent as EMContent, ModelId as ModelId, ModelProvider as ModelProvider, Vector as Vector
|
|
6
|
+
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
|
|
7
7
|
from typing import Any
|
|
8
8
|
|
|
9
9
|
SUPPORTED_ATTACHMENTS: Incomplete
|
|
@@ -18,6 +18,7 @@ class TwelveLabsEMInvoker(BaseEMInvoker):
|
|
|
18
18
|
client (Client): The client for the TwelveLabs API.
|
|
19
19
|
default_hyperparameters (dict[str, Any]): Default hyperparameters for invoking the embedding model.
|
|
20
20
|
retry_config (RetryConfig): The retry configuration for the embedding model.
|
|
21
|
+
truncation_config (TruncationConfig | None): The truncation configuration for the embedding model.
|
|
21
22
|
|
|
22
23
|
Input types:
|
|
23
24
|
The `TwelveLabsEMInvoker` supports the following input types: text, audio, and image.
|
|
@@ -83,7 +84,7 @@ class TwelveLabsEMInvoker(BaseEMInvoker):
|
|
|
83
84
|
```
|
|
84
85
|
'''
|
|
85
86
|
client: Incomplete
|
|
86
|
-
def __init__(self, model_name: str, api_key: str | None = None, model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None) -> None:
|
|
87
|
+
def __init__(self, model_name: str, api_key: str | None = None, model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None, truncation_config: TruncationConfig | None = None) -> None:
|
|
87
88
|
"""Initializes a new instance of the TwelveLabsEMInvoker class.
|
|
88
89
|
|
|
89
90
|
Args:
|
|
@@ -96,4 +97,6 @@ class TwelveLabsEMInvoker(BaseEMInvoker):
|
|
|
96
97
|
Defaults to None.
|
|
97
98
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
98
99
|
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
100
|
+
truncation_config (TruncationConfig | None, optional): Configuration for text truncation behavior.
|
|
101
|
+
Defaults to None, in which case no truncation is applied.
|
|
99
102
|
"""
|
|
@@ -3,7 +3,7 @@ from gllm_core.utils.retry import RetryConfig as RetryConfig
|
|
|
3
3
|
from gllm_inference.constants import INVOKER_PROPAGATED_MAX_RETRIES as INVOKER_PROPAGATED_MAX_RETRIES
|
|
4
4
|
from gllm_inference.em_invoker.em_invoker import BaseEMInvoker as BaseEMInvoker
|
|
5
5
|
from gllm_inference.em_invoker.schema.voyage import InputType as InputType, Key as Key
|
|
6
|
-
from gllm_inference.schema import Attachment as Attachment, AttachmentType as AttachmentType, EMContent as EMContent, ModelId as ModelId, ModelProvider as ModelProvider, Vector as Vector
|
|
6
|
+
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
|
|
7
7
|
from typing import Any
|
|
8
8
|
|
|
9
9
|
SUPPORTED_ATTACHMENTS: Incomplete
|
|
@@ -19,6 +19,7 @@ class VoyageEMInvoker(BaseEMInvoker):
|
|
|
19
19
|
client (Client): The client for the Voyage API.
|
|
20
20
|
default_hyperparameters (dict[str, Any]): Default hyperparameters for invoking the embedding model.
|
|
21
21
|
retry_config (RetryConfig): The retry configuration for the embedding model.
|
|
22
|
+
truncation_config (TruncationConfig | None): The truncation configuration for the embedding model.
|
|
22
23
|
|
|
23
24
|
Input types:
|
|
24
25
|
The `VoyageEMInvoker` supports the following input types: text, image, and a tuple containing text and image.
|
|
@@ -85,7 +86,7 @@ class VoyageEMInvoker(BaseEMInvoker):
|
|
|
85
86
|
```
|
|
86
87
|
'''
|
|
87
88
|
client: Incomplete
|
|
88
|
-
def __init__(self, model_name: str, api_key: str | None = None, model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None) -> None:
|
|
89
|
+
def __init__(self, model_name: str, api_key: str | None = None, model_kwargs: dict[str, Any] | None = None, default_hyperparameters: dict[str, Any] | None = None, retry_config: RetryConfig | None = None, truncation_config: TruncationConfig | None = None) -> None:
|
|
89
90
|
"""Initializes a new instance of the VoyageEMInvoker class.
|
|
90
91
|
|
|
91
92
|
Args:
|
|
@@ -98,4 +99,6 @@ class VoyageEMInvoker(BaseEMInvoker):
|
|
|
98
99
|
Defaults to None.
|
|
99
100
|
retry_config (RetryConfig | None, optional): The retry configuration for the embedding model.
|
|
100
101
|
Defaults to None, in which case a default config with no retry and 30.0 seconds timeout will be used.
|
|
102
|
+
truncation_config (TruncationConfig | None, optional): Configuration for text truncation behavior.
|
|
103
|
+
Defaults to None, in which case no truncation is applied.
|
|
101
104
|
"""
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from gllm_inference.schema.attachment import Attachment as Attachment
|
|
2
2
|
from gllm_inference.schema.code_exec_result import CodeExecResult as CodeExecResult
|
|
3
|
-
from gllm_inference.schema.
|
|
3
|
+
from gllm_inference.schema.config import TruncationConfig as TruncationConfig
|
|
4
|
+
from gllm_inference.schema.enums import AttachmentType as AttachmentType, EmitDataType as EmitDataType, MessageRole as MessageRole, TruncateSide as TruncateSide
|
|
4
5
|
from gllm_inference.schema.lm_output import LMOutput as LMOutput
|
|
5
6
|
from gllm_inference.schema.message import Message as Message
|
|
6
7
|
from gllm_inference.schema.model_id import ModelId as ModelId, ModelProvider as ModelProvider
|
|
@@ -10,4 +11,4 @@ from gllm_inference.schema.tool_call import ToolCall as ToolCall
|
|
|
10
11
|
from gllm_inference.schema.tool_result import ToolResult as ToolResult
|
|
11
12
|
from gllm_inference.schema.type_alias import EMContent as EMContent, ErrorResponse as ErrorResponse, MessageContent as MessageContent, ResponseSchema as ResponseSchema, Vector as Vector
|
|
12
13
|
|
|
13
|
-
__all__ = ['Attachment', 'AttachmentType', 'CodeExecResult', 'EMContent', 'EmitDataType', 'ErrorResponse', 'InputTokenDetails', 'MessageContent', 'LMOutput', 'ModelId', 'ModelProvider', 'Message', 'MessageRole', 'OutputTokenDetails', 'Reasoning', 'ResponseSchema', 'TokenUsage', 'ToolCall', 'ToolResult', 'Vector']
|
|
14
|
+
__all__ = ['Attachment', 'AttachmentType', 'CodeExecResult', 'EMContent', 'EmitDataType', 'ErrorResponse', 'InputTokenDetails', 'MessageContent', 'LMOutput', 'ModelId', 'ModelProvider', 'Message', 'MessageRole', 'OutputTokenDetails', 'Reasoning', 'ResponseSchema', 'TokenUsage', 'ToolCall', 'ToolResult', 'TruncateSide', 'TruncationConfig', 'Vector']
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from gllm_inference.schema.enums import TruncateSide as TruncateSide
|
|
2
|
+
from pydantic import BaseModel
|
|
3
|
+
|
|
4
|
+
class TruncationConfig(BaseModel):
|
|
5
|
+
"""Configuration for text truncation behavior.
|
|
6
|
+
|
|
7
|
+
Attributes:
|
|
8
|
+
max_length (int): Maximum length of text content. Required.
|
|
9
|
+
truncate_side (TruncateSide | None): Side to truncate from when max_length is exceeded.
|
|
10
|
+
1. TruncateSide.RIGHT: Keep the beginning of the text, truncate from the end (default)
|
|
11
|
+
2. TruncateSide.LEFT: Keep the end of the text, truncate from the beginning
|
|
12
|
+
If None, defaults to TruncateSide.RIGHT
|
|
13
|
+
"""
|
|
14
|
+
max_length: int
|
|
15
|
+
truncate_side: TruncateSide | None
|
gllm_inference/schema/enums.pyi
CHANGED
|
Binary file
|
gllm_inference.pyi
CHANGED
|
@@ -13,6 +13,7 @@ import typing
|
|
|
13
13
|
import gllm_core
|
|
14
14
|
import gllm_core.utils
|
|
15
15
|
import gllm_inference.em_invoker.AzureOpenAIEMInvoker
|
|
16
|
+
import gllm_inference.em_invoker.BedrockEMInvoker
|
|
16
17
|
import gllm_inference.em_invoker.GoogleEMInvoker
|
|
17
18
|
import gllm_inference.em_invoker.LangChainEMInvoker
|
|
18
19
|
import gllm_inference.em_invoker.OpenAICompatibleEMInvoker
|
|
@@ -41,17 +42,21 @@ import gllm_inference.request_processor.LMRequestProcessor
|
|
|
41
42
|
import gllm_core.utils.imports
|
|
42
43
|
import gllm_inference.schema.ModelId
|
|
43
44
|
import gllm_inference.schema.ModelProvider
|
|
45
|
+
import gllm_inference.schema.TruncationConfig
|
|
44
46
|
import openai
|
|
47
|
+
import asyncio
|
|
48
|
+
import enum
|
|
49
|
+
import gllm_inference.schema.Vector
|
|
50
|
+
import aioboto3
|
|
45
51
|
import gllm_inference.exceptions.parse_error_message
|
|
46
52
|
import gllm_inference.schema.Attachment
|
|
47
53
|
import gllm_inference.schema.AttachmentType
|
|
48
54
|
import gllm_inference.schema.EMContent
|
|
49
|
-
import gllm_inference.schema.
|
|
55
|
+
import gllm_inference.schema.TruncateSide
|
|
50
56
|
import google
|
|
51
57
|
import google.auth
|
|
52
58
|
import google.genai
|
|
53
59
|
import google.genai.types
|
|
54
|
-
import asyncio
|
|
55
60
|
import concurrent
|
|
56
61
|
import concurrent.futures
|
|
57
62
|
import concurrent.futures.ThreadPoolExecutor
|
|
@@ -68,7 +73,6 @@ import voyageai
|
|
|
68
73
|
import voyageai.client_async
|
|
69
74
|
import asyncio.CancelledError
|
|
70
75
|
import asyncio.TimeoutError
|
|
71
|
-
import enum
|
|
72
76
|
import http
|
|
73
77
|
import http.HTTPStatus
|
|
74
78
|
import aiohttp
|
|
@@ -88,7 +92,6 @@ import gllm_inference.schema.TokenUsage
|
|
|
88
92
|
import gllm_inference.schema.ToolCall
|
|
89
93
|
import gllm_inference.schema.ToolResult
|
|
90
94
|
import anthropic
|
|
91
|
-
import aioboto3
|
|
92
95
|
import gllm_inference.schema.MessageRole
|
|
93
96
|
import langchain_core.language_models
|
|
94
97
|
import langchain_core.messages
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
gllm_inference/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
gllm_inference/builder/__init__.pyi,sha256=usz2lvfwO4Yk-ZGKXbCWG1cEr3nlQXxMNDNC-2yc1NM,500
|
|
3
|
-
gllm_inference/builder/build_em_invoker.pyi,sha256=
|
|
3
|
+
gllm_inference/builder/build_em_invoker.pyi,sha256=7JTt8XpfqLQdv5cltIyi1r6Sf8MAUKgornHn5z57raA,5873
|
|
4
4
|
gllm_inference/builder/build_lm_invoker.pyi,sha256=igJdLnWiY5QcdT4EClvgxFGSVZjARpq5hz2FYcBHWEQ,6876
|
|
5
5
|
gllm_inference/builder/build_lm_request_processor.pyi,sha256=33Gi3onftl-V2e_mkJios5zmXRKSoAVPX3UK7YBExjk,4491
|
|
6
6
|
gllm_inference/builder/build_output_parser.pyi,sha256=_Lrq-bh1oPsb_Nwkkr_zyEUwIOMysRFZkvEtEM29LZM,936
|
|
@@ -9,24 +9,26 @@ gllm_inference/catalog/catalog.pyi,sha256=a4RNG1lKv51GxQpOqh47tz-PAROMPaeP2o5XNL
|
|
|
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
11
|
gllm_inference/constants.pyi,sha256=KDzHmjVYjd0uTHqLgIzgHhLZx99D8jGBIg74eO8KQv0,314
|
|
12
|
-
gllm_inference/em_invoker/__init__.pyi,sha256=
|
|
13
|
-
gllm_inference/em_invoker/azure_openai_em_invoker.pyi,sha256=
|
|
14
|
-
gllm_inference/em_invoker/
|
|
15
|
-
gllm_inference/em_invoker/
|
|
12
|
+
gllm_inference/em_invoker/__init__.pyi,sha256=83QVCkMjS2-jMKdAvmZska4LuJ-un755lAxjuVSLZ9o,987
|
|
13
|
+
gllm_inference/em_invoker/azure_openai_em_invoker.pyi,sha256=eJd1Ygths8wu0w2S9VmF-2iEQj5zs7nACyNJXAsNXUA,4983
|
|
14
|
+
gllm_inference/em_invoker/bedrock_em_invoker.pyi,sha256=KdX1PMWPfrmFIrSbf8Y6jkDuwc81Q9XWR9DQPLoO66I,5456
|
|
15
|
+
gllm_inference/em_invoker/em_invoker.pyi,sha256=dgIeAIetQcBmohwYwgo1vNw7YNO_3DQCobUaabBtf7g,5043
|
|
16
|
+
gllm_inference/em_invoker/google_em_invoker.pyi,sha256=oDS4dXBcLg59ePeiLTwdl09927oJNZ_ykIe0n6Ba8gU,6557
|
|
16
17
|
gllm_inference/em_invoker/langchain/__init__.pyi,sha256=VYGKE5OgU0my1RlhgzkU_A7-GLGnUDDnNFuctuRwILE,148
|
|
17
18
|
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=
|
|
19
|
+
gllm_inference/em_invoker/langchain_em_invoker.pyi,sha256=HuQD5Do4jwqKoMMgMjgZkic2L21n2ayJewIce09bZ3M,3163
|
|
20
|
+
gllm_inference/em_invoker/openai_compatible_em_invoker.pyi,sha256=GudWfL7QCAKLInMw94jTNogbyELlD9tDbrDErHB4RRI,5360
|
|
21
|
+
gllm_inference/em_invoker/openai_em_invoker.pyi,sha256=vsfEmDNvwrlBhDxqsCKyMpMZbl_FaQUWHEgQc9yeo14,4656
|
|
21
22
|
gllm_inference/em_invoker/schema/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
+
gllm_inference/em_invoker/schema/bedrock.pyi,sha256=sqPHG0jBc09K4V1aSpybqhqIdYfZQTB2VD_nJ9j_ttQ,423
|
|
22
24
|
gllm_inference/em_invoker/schema/google.pyi,sha256=MUmgtjMmjSpzmzaAOx6JGZbcdRxgMUhOpvcVQIo-oGs,146
|
|
23
25
|
gllm_inference/em_invoker/schema/langchain.pyi,sha256=onpZutqa2xw2g8rdJTdycy3ub58lkPBVB3KvVVPpyds,92
|
|
24
26
|
gllm_inference/em_invoker/schema/openai.pyi,sha256=Q_dsEcodkOXYXPdrkOkW0LnuLhfeq8tEbtZAGMz2ajA,139
|
|
25
27
|
gllm_inference/em_invoker/schema/openai_compatible.pyi,sha256=gmvGtsWoOMBelke_tZjC6dKimFBW9f4Vrgv0Ig0OM9Q,150
|
|
26
28
|
gllm_inference/em_invoker/schema/twelvelabs.pyi,sha256=F6wKHgG01bYskJpKoheBSpRpHUfFpteKn9sj9n5YfcU,372
|
|
27
29
|
gllm_inference/em_invoker/schema/voyage.pyi,sha256=HVpor0fqNy-IwapCICfsgFmqf1FJXCOMIxS2vOXhHd8,289
|
|
28
|
-
gllm_inference/em_invoker/twelevelabs_em_invoker.pyi,sha256=
|
|
29
|
-
gllm_inference/em_invoker/voyage_em_invoker.pyi,sha256=
|
|
30
|
+
gllm_inference/em_invoker/twelevelabs_em_invoker.pyi,sha256=RYY4td4N3cPSy-yXTEUKwYLz0AH8mLxi2j5Bfr9PS0g,5447
|
|
31
|
+
gllm_inference/em_invoker/voyage_em_invoker.pyi,sha256=zJZqMvvFKu3sHdrNM773UYjfHVlnwE2w2BmvdFcHzV0,5515
|
|
30
32
|
gllm_inference/exceptions/__init__.pyi,sha256=v9uxjW5DssIn7n_bKqT7L83CeqFET2Z45GFOvi78UuE,977
|
|
31
33
|
gllm_inference/exceptions/error_parser.pyi,sha256=4RkVfS2Fl9kjz_h2bK9eoAeI-Y-VkHcUqXWj68BsYig,2393
|
|
32
34
|
gllm_inference/exceptions/exceptions.pyi,sha256=5YRackwVNvyOJjOtiVszqu8q87s8ioXTa-XwaYmeiC4,4643
|
|
@@ -76,10 +78,11 @@ gllm_inference/prompt_formatter/prompt_formatter.pyi,sha256=UkcPi5ao98OGJyNRsqfh
|
|
|
76
78
|
gllm_inference/request_processor/__init__.pyi,sha256=hVnfdNZnkTBJHnmLtN3Na4ANP0yK6AstWdIizVr2Apo,227
|
|
77
79
|
gllm_inference/request_processor/lm_request_processor.pyi,sha256=VnYc8E3Iayyhw-rPnGPfTKuO3ohgFsS8HPrZJeyES5I,5889
|
|
78
80
|
gllm_inference/request_processor/uses_lm_mixin.pyi,sha256=He-ytjwv2H5Hn312WFBAlBK96ALKTtDO3AT_80hCGTg,2321
|
|
79
|
-
gllm_inference/schema/__init__.pyi,sha256=
|
|
81
|
+
gllm_inference/schema/__init__.pyi,sha256=Kt2ei_dr7_66p-Y1Rzum19mYldR0CLKJAJZiEEb9KRM,1507
|
|
80
82
|
gllm_inference/schema/attachment.pyi,sha256=jApuzjOHJDCz4lr4MlHzBgIndh559nbWu2Xp1fk3hso,3297
|
|
81
83
|
gllm_inference/schema/code_exec_result.pyi,sha256=ZTHh6JtRrPIdQ059P1UAiD2L-tAO1_S5YcMsAXfJ5A0,559
|
|
82
|
-
gllm_inference/schema/
|
|
84
|
+
gllm_inference/schema/config.pyi,sha256=rAL_UeXyQeXVk1P2kqd8vFWOMwmKenfpQLtvMP74t9s,674
|
|
85
|
+
gllm_inference/schema/enums.pyi,sha256=w5Bq3m-Ixl4yAd4801APhw9fjCiuqttWuUXWvSWSEEs,717
|
|
83
86
|
gllm_inference/schema/lm_output.pyi,sha256=GafJV0KeD-VSwWkwG1oz-uruXrQ7KDZTuoojPCBRpg8,1956
|
|
84
87
|
gllm_inference/schema/message.pyi,sha256=VP9YppKj2mo1esl9cy6qQO9m2mMHUjTmfGDdyUor880,2220
|
|
85
88
|
gllm_inference/schema/model_id.pyi,sha256=0UJS7M91hPlzWuZI3CMGZm9ewYrTxmLUMtIhHqJOg0Q,5481
|
|
@@ -92,8 +95,8 @@ gllm_inference/utils/__init__.pyi,sha256=npmBmmlBv7cPHMg1hdL3S2_RelD6vk_LhCsGELh
|
|
|
92
95
|
gllm_inference/utils/langchain.pyi,sha256=VluQiHkGigDdqLUbhB6vnXiISCP5hHqV0qokYY6dC1A,1164
|
|
93
96
|
gllm_inference/utils/validation.pyi,sha256=toxBtRp-VItC_X7sNi-GDd7sjibBdWMrR0q01OI2D7k,385
|
|
94
97
|
gllm_inference.build/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
|
|
95
|
-
gllm_inference.cpython-312-x86_64-linux-gnu.so,sha256=
|
|
96
|
-
gllm_inference.pyi,sha256=
|
|
97
|
-
gllm_inference_binary-0.5.
|
|
98
|
-
gllm_inference_binary-0.5.
|
|
99
|
-
gllm_inference_binary-0.5.
|
|
98
|
+
gllm_inference.cpython-312-x86_64-linux-gnu.so,sha256=g-1RtGrQtFBRD143QzVGqSetkn9kayawjat7sm5cgro,4334728
|
|
99
|
+
gllm_inference.pyi,sha256=0PMbN8u5rnM8r9fZQFDM9V_UuvlYu3fpX6iLH4NKioA,3658
|
|
100
|
+
gllm_inference_binary-0.5.16.dist-info/METADATA,sha256=Hjc4sS2zCgCUwhPEkaUTql8XLPjSdAArBYoTFKqv-nE,4608
|
|
101
|
+
gllm_inference_binary-0.5.16.dist-info/WHEEL,sha256=mNY4pwQL4AOAoPmLYEQs2SSpMIbATFeiJFktRD5iKkY,110
|
|
102
|
+
gllm_inference_binary-0.5.16.dist-info/RECORD,,
|
|
File without changes
|