gllm-inference-binary 0.5.51b3__cp311-cp311-macosx_11_0_arm64.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/__init__.pyi +0 -0
- gllm_inference/builder/__init__.pyi +6 -0
- gllm_inference/builder/_build_invoker.pyi +28 -0
- gllm_inference/builder/build_em_invoker.pyi +130 -0
- gllm_inference/builder/build_lm_invoker.pyi +213 -0
- gllm_inference/builder/build_lm_request_processor.pyi +88 -0
- gllm_inference/builder/build_output_parser.pyi +29 -0
- gllm_inference/catalog/__init__.pyi +4 -0
- gllm_inference/catalog/catalog.pyi +121 -0
- gllm_inference/catalog/lm_request_processor_catalog.pyi +112 -0
- gllm_inference/catalog/prompt_builder_catalog.pyi +82 -0
- gllm_inference/constants.pyi +13 -0
- gllm_inference/em_invoker/__init__.pyi +12 -0
- gllm_inference/em_invoker/azure_openai_em_invoker.pyi +88 -0
- gllm_inference/em_invoker/bedrock_em_invoker.pyi +118 -0
- gllm_inference/em_invoker/cohere_em_invoker.pyi +128 -0
- gllm_inference/em_invoker/em_invoker.pyi +90 -0
- gllm_inference/em_invoker/google_em_invoker.pyi +129 -0
- gllm_inference/em_invoker/jina_em_invoker.pyi +103 -0
- gllm_inference/em_invoker/langchain/__init__.pyi +3 -0
- gllm_inference/em_invoker/langchain/em_invoker_embeddings.pyi +84 -0
- gllm_inference/em_invoker/langchain_em_invoker.pyi +46 -0
- gllm_inference/em_invoker/openai_compatible_em_invoker.pyi +41 -0
- gllm_inference/em_invoker/openai_em_invoker.pyi +118 -0
- gllm_inference/em_invoker/schema/__init__.pyi +0 -0
- gllm_inference/em_invoker/schema/bedrock.pyi +29 -0
- gllm_inference/em_invoker/schema/cohere.pyi +20 -0
- gllm_inference/em_invoker/schema/google.pyi +9 -0
- gllm_inference/em_invoker/schema/jina.pyi +29 -0
- gllm_inference/em_invoker/schema/langchain.pyi +5 -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 +17 -0
- gllm_inference/em_invoker/schema/voyage.pyi +15 -0
- gllm_inference/em_invoker/twelevelabs_em_invoker.pyi +101 -0
- gllm_inference/em_invoker/voyage_em_invoker.pyi +104 -0
- gllm_inference/exceptions/__init__.pyi +4 -0
- gllm_inference/exceptions/error_parser.pyi +41 -0
- gllm_inference/exceptions/exceptions.pyi +132 -0
- gllm_inference/exceptions/provider_error_map.pyi +24 -0
- gllm_inference/lm_invoker/__init__.pyi +14 -0
- gllm_inference/lm_invoker/anthropic_lm_invoker.pyi +334 -0
- gllm_inference/lm_invoker/azure_openai_lm_invoker.pyi +254 -0
- gllm_inference/lm_invoker/batch/__init__.pyi +3 -0
- gllm_inference/lm_invoker/batch/batch_operations.pyi +127 -0
- gllm_inference/lm_invoker/bedrock_lm_invoker.pyi +226 -0
- gllm_inference/lm_invoker/datasaur_lm_invoker.pyi +157 -0
- gllm_inference/lm_invoker/google_lm_invoker.pyi +336 -0
- gllm_inference/lm_invoker/langchain_lm_invoker.pyi +251 -0
- gllm_inference/lm_invoker/litellm_lm_invoker.pyi +244 -0
- gllm_inference/lm_invoker/lm_invoker.pyi +164 -0
- gllm_inference/lm_invoker/openai_chat_completions_lm_invoker.pyi +272 -0
- gllm_inference/lm_invoker/openai_compatible_lm_invoker.pyi +52 -0
- gllm_inference/lm_invoker/openai_lm_invoker.pyi +433 -0
- gllm_inference/lm_invoker/portkey_lm_invoker.pyi +260 -0
- gllm_inference/lm_invoker/schema/__init__.pyi +0 -0
- gllm_inference/lm_invoker/schema/anthropic.pyi +56 -0
- gllm_inference/lm_invoker/schema/bedrock.pyi +53 -0
- gllm_inference/lm_invoker/schema/datasaur.pyi +14 -0
- gllm_inference/lm_invoker/schema/google.pyi +24 -0
- gllm_inference/lm_invoker/schema/langchain.pyi +23 -0
- gllm_inference/lm_invoker/schema/openai.pyi +106 -0
- gllm_inference/lm_invoker/schema/openai_chat_completions.pyi +62 -0
- gllm_inference/lm_invoker/schema/portkey.pyi +31 -0
- gllm_inference/lm_invoker/schema/xai.pyi +31 -0
- gllm_inference/lm_invoker/xai_lm_invoker.pyi +289 -0
- gllm_inference/model/__init__.pyi +12 -0
- gllm_inference/model/em/__init__.pyi +0 -0
- gllm_inference/model/em/cohere_em.pyi +17 -0
- gllm_inference/model/em/google_em.pyi +16 -0
- gllm_inference/model/em/jina_em.pyi +22 -0
- gllm_inference/model/em/openai_em.pyi +15 -0
- gllm_inference/model/em/twelvelabs_em.pyi +13 -0
- gllm_inference/model/em/voyage_em.pyi +20 -0
- gllm_inference/model/lm/__init__.pyi +0 -0
- gllm_inference/model/lm/anthropic_lm.pyi +22 -0
- gllm_inference/model/lm/google_lm.pyi +18 -0
- gllm_inference/model/lm/openai_lm.pyi +27 -0
- gllm_inference/model/lm/xai_lm.pyi +19 -0
- gllm_inference/output_parser/__init__.pyi +3 -0
- gllm_inference/output_parser/json_output_parser.pyi +60 -0
- gllm_inference/output_parser/output_parser.pyi +27 -0
- gllm_inference/prompt_builder/__init__.pyi +3 -0
- gllm_inference/prompt_builder/format_strategy/__init__.pyi +4 -0
- gllm_inference/prompt_builder/format_strategy/format_strategy.pyi +55 -0
- gllm_inference/prompt_builder/format_strategy/jinja_format_strategy.pyi +45 -0
- gllm_inference/prompt_builder/format_strategy/string_format_strategy.pyi +20 -0
- gllm_inference/prompt_builder/prompt_builder.pyi +69 -0
- gllm_inference/prompt_formatter/__init__.pyi +7 -0
- gllm_inference/prompt_formatter/agnostic_prompt_formatter.pyi +49 -0
- gllm_inference/prompt_formatter/huggingface_prompt_formatter.pyi +55 -0
- gllm_inference/prompt_formatter/llama_prompt_formatter.pyi +59 -0
- gllm_inference/prompt_formatter/mistral_prompt_formatter.pyi +53 -0
- gllm_inference/prompt_formatter/openai_prompt_formatter.pyi +35 -0
- gllm_inference/prompt_formatter/prompt_formatter.pyi +30 -0
- gllm_inference/realtime_chat/__init__.pyi +3 -0
- gllm_inference/realtime_chat/google_realtime_chat.pyi +205 -0
- gllm_inference/realtime_chat/input_streamer/__init__.pyi +4 -0
- gllm_inference/realtime_chat/input_streamer/input_streamer.pyi +36 -0
- gllm_inference/realtime_chat/input_streamer/keyboard_input_streamer.pyi +27 -0
- gllm_inference/realtime_chat/input_streamer/linux_mic_input_streamer.pyi +36 -0
- gllm_inference/realtime_chat/output_streamer/__init__.pyi +4 -0
- gllm_inference/realtime_chat/output_streamer/console_output_streamer.pyi +21 -0
- gllm_inference/realtime_chat/output_streamer/linux_speaker_output_streamer.pyi +42 -0
- gllm_inference/realtime_chat/output_streamer/output_streamer.pyi +33 -0
- gllm_inference/realtime_chat/realtime_chat.pyi +28 -0
- gllm_inference/request_processor/__init__.pyi +4 -0
- gllm_inference/request_processor/lm_request_processor.pyi +101 -0
- gllm_inference/request_processor/uses_lm_mixin.pyi +130 -0
- gllm_inference/schema/__init__.pyi +18 -0
- gllm_inference/schema/activity.pyi +64 -0
- gllm_inference/schema/attachment.pyi +88 -0
- gllm_inference/schema/code_exec_result.pyi +14 -0
- gllm_inference/schema/config.pyi +15 -0
- gllm_inference/schema/enums.pyi +69 -0
- gllm_inference/schema/events.pyi +105 -0
- gllm_inference/schema/lm_input.pyi +4 -0
- gllm_inference/schema/lm_output.pyi +44 -0
- gllm_inference/schema/mcp.pyi +31 -0
- gllm_inference/schema/message.pyi +52 -0
- gllm_inference/schema/model_id.pyi +176 -0
- gllm_inference/schema/reasoning.pyi +15 -0
- gllm_inference/schema/token_usage.pyi +75 -0
- gllm_inference/schema/tool_call.pyi +14 -0
- gllm_inference/schema/tool_result.pyi +11 -0
- gllm_inference/schema/type_alias.pyi +11 -0
- gllm_inference/utils/__init__.pyi +5 -0
- gllm_inference/utils/io_utils.pyi +26 -0
- gllm_inference/utils/langchain.pyi +30 -0
- gllm_inference/utils/validation.pyi +12 -0
- gllm_inference.build/.gitignore +1 -0
- gllm_inference.cpython-311-darwin.so +0 -0
- gllm_inference.pyi +156 -0
- gllm_inference_binary-0.5.51b3.dist-info/METADATA +138 -0
- gllm_inference_binary-0.5.51b3.dist-info/RECORD +137 -0
- gllm_inference_binary-0.5.51b3.dist-info/WHEEL +5 -0
- gllm_inference_binary-0.5.51b3.dist-info/top_level.txt +1 -0
|
@@ -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
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
from enum import StrEnum
|
|
2
|
+
|
|
3
|
+
class AttachmentType(StrEnum):
|
|
4
|
+
"""Defines valid attachment types."""
|
|
5
|
+
AUDIO = 'audio'
|
|
6
|
+
DOCUMENT = 'document'
|
|
7
|
+
IMAGE = 'image'
|
|
8
|
+
VIDEO = 'video'
|
|
9
|
+
|
|
10
|
+
class BatchStatus(StrEnum):
|
|
11
|
+
"""Defines the status of a batch job."""
|
|
12
|
+
CANCELING = 'canceling'
|
|
13
|
+
IN_PROGRESS = 'in_progress'
|
|
14
|
+
FINISHED = 'finished'
|
|
15
|
+
UNKNOWN = 'unknown'
|
|
16
|
+
|
|
17
|
+
class LMEventType(StrEnum):
|
|
18
|
+
"""Defines event types to be emitted by the LM invoker."""
|
|
19
|
+
ACTIVITY = 'activity'
|
|
20
|
+
CODE = 'code'
|
|
21
|
+
THINKING = 'thinking'
|
|
22
|
+
|
|
23
|
+
class LMEventTypeSuffix(StrEnum):
|
|
24
|
+
"""Defines suffixes for LM event types."""
|
|
25
|
+
START = '_start'
|
|
26
|
+
END = '_end'
|
|
27
|
+
|
|
28
|
+
class EmitDataType(StrEnum):
|
|
29
|
+
"""Defines valid data types for emitting events."""
|
|
30
|
+
ACTIVITY = 'activity'
|
|
31
|
+
CODE = 'code'
|
|
32
|
+
CODE_START = 'code_start'
|
|
33
|
+
CODE_END = 'code_end'
|
|
34
|
+
THINKING = 'thinking'
|
|
35
|
+
THINKING_START = 'thinking_start'
|
|
36
|
+
THINKING_END = 'thinking_end'
|
|
37
|
+
|
|
38
|
+
class ActivityType(StrEnum):
|
|
39
|
+
"""Defines valid activity types."""
|
|
40
|
+
FIND_IN_PAGE = 'find_in_page'
|
|
41
|
+
MCP_CALL = 'mcp_call'
|
|
42
|
+
MCP_LIST_TOOLS = 'mcp_list_tools'
|
|
43
|
+
OPEN_PAGE = 'open_page'
|
|
44
|
+
SEARCH = 'search'
|
|
45
|
+
WEB_SEARCH = 'web_search'
|
|
46
|
+
|
|
47
|
+
class MessageRole(StrEnum):
|
|
48
|
+
"""Defines valid message roles."""
|
|
49
|
+
SYSTEM = 'system'
|
|
50
|
+
USER = 'user'
|
|
51
|
+
ASSISTANT = 'assistant'
|
|
52
|
+
|
|
53
|
+
class TruncateSide(StrEnum):
|
|
54
|
+
"""Enumeration for truncation sides."""
|
|
55
|
+
RIGHT = 'RIGHT'
|
|
56
|
+
LEFT = 'LEFT'
|
|
57
|
+
|
|
58
|
+
class JinjaEnvType(StrEnum):
|
|
59
|
+
"""Enumeration for Jinja environment types."""
|
|
60
|
+
JINJA_DEFAULT = 'jinja_default'
|
|
61
|
+
RESTRICTED = 'restricted'
|
|
62
|
+
|
|
63
|
+
class WebSearchKey(StrEnum):
|
|
64
|
+
"""Defines valid web search keys."""
|
|
65
|
+
PATTERN = 'pattern'
|
|
66
|
+
QUERY = 'query'
|
|
67
|
+
SOURCES = 'sources'
|
|
68
|
+
TYPE = 'type'
|
|
69
|
+
URL = 'url'
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
from _typeshed import Incomplete
|
|
2
|
+
from gllm_core.schema import Event
|
|
3
|
+
from gllm_inference.schema.activity import Activity as Activity
|
|
4
|
+
from gllm_inference.schema.enums import LMEventType as LMEventType, LMEventTypeSuffix as LMEventTypeSuffix
|
|
5
|
+
from typing import Any, Literal, Self
|
|
6
|
+
|
|
7
|
+
CodeEventType: Incomplete
|
|
8
|
+
ThinkingEventType: Incomplete
|
|
9
|
+
|
|
10
|
+
class ActivityEvent(Event):
|
|
11
|
+
"""Event schema for model-triggered activities (e.g. web search, MCP call, etc.).
|
|
12
|
+
|
|
13
|
+
Attributes:
|
|
14
|
+
id (str): The ID of the activity event. Defaults to None.
|
|
15
|
+
value (dict[str, Any]): The value of the activity event.
|
|
16
|
+
level (EventLevel): The severity level of the activity event. Defaults to EventLevel.INFO.
|
|
17
|
+
type (Literal[EventType.ACTIVITY]): The type of the activity event. Defaults to EventType.ACTIVITY.
|
|
18
|
+
timestamp (datetime): The timestamp of the activity event. Defaults to the current timestamp.
|
|
19
|
+
metadata (dict[str, Any]): The metadata of the activity event. Defaults to an empty dictionary.
|
|
20
|
+
"""
|
|
21
|
+
value: dict[str, Any]
|
|
22
|
+
type: Literal[LMEventType.ACTIVITY]
|
|
23
|
+
@classmethod
|
|
24
|
+
def from_activity(cls, id_: str | None = None, activity: Activity | None = None) -> ActivityEvent:
|
|
25
|
+
"""Create an activity event from an Activity object.
|
|
26
|
+
|
|
27
|
+
Args:
|
|
28
|
+
id_ (str | None, optional): The ID of the activity event. Defaults to None.
|
|
29
|
+
activity (Activity | None, optional): The activity object to create the event from.
|
|
30
|
+
Defaults to None, in which case the value will be an empty dictionary.
|
|
31
|
+
|
|
32
|
+
Returns:
|
|
33
|
+
ActivityEvent: The activity event.
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
class BlockBasedEvent(Event):
|
|
37
|
+
"""Event schema block-based events, which are limited by start and end events.
|
|
38
|
+
|
|
39
|
+
Attributes:
|
|
40
|
+
id (str): The ID of the block-based event. Defaults to None.
|
|
41
|
+
value (str): The value of the block-based event. Defaults to an empty string.
|
|
42
|
+
level (EventLevel): The severity level of the block-based event. Defaults to EventLevel.INFO.
|
|
43
|
+
type (str): The type of the block-based event. Defaults to an empty string.
|
|
44
|
+
timestamp (datetime): The timestamp of the block-based event. Defaults to the current timestamp.
|
|
45
|
+
metadata (dict[str, Any]): The metadata of the block-based event. Defaults to an empty dictionary.
|
|
46
|
+
"""
|
|
47
|
+
value: str
|
|
48
|
+
type: str
|
|
49
|
+
@classmethod
|
|
50
|
+
def start(cls, id_: str | None = None) -> Self:
|
|
51
|
+
"""Create a block-based start event.
|
|
52
|
+
|
|
53
|
+
Args:
|
|
54
|
+
id_ (str | None, optional): The ID of the block-based event. Defaults to None.
|
|
55
|
+
|
|
56
|
+
Returns:
|
|
57
|
+
Self: The block-based start event.
|
|
58
|
+
"""
|
|
59
|
+
@classmethod
|
|
60
|
+
def content(cls, id_: str | None = None, value: str = '') -> Self:
|
|
61
|
+
"""Create a block-based content event.
|
|
62
|
+
|
|
63
|
+
Args:
|
|
64
|
+
id_ (str | None, optional): The ID of the block-based event. Defaults to None.
|
|
65
|
+
value (str, optional): The block-based content. Defaults to an empty string.
|
|
66
|
+
|
|
67
|
+
Returns:
|
|
68
|
+
Self: The block-based content event.
|
|
69
|
+
"""
|
|
70
|
+
@classmethod
|
|
71
|
+
def end(cls, id_: str | None = None) -> Self:
|
|
72
|
+
"""Create a block-based end event.
|
|
73
|
+
|
|
74
|
+
Args:
|
|
75
|
+
id_ (str | None, optional): The ID of the block-based event. Defaults to None.
|
|
76
|
+
|
|
77
|
+
Returns:
|
|
78
|
+
Self: The block-based end event.
|
|
79
|
+
"""
|
|
80
|
+
|
|
81
|
+
class CodeEvent(BlockBasedEvent):
|
|
82
|
+
"""Event schema for model-generated code to be executed.
|
|
83
|
+
|
|
84
|
+
Attributes:
|
|
85
|
+
id (str): The ID of the code event. Defaults to None.
|
|
86
|
+
value (str): The value of the code event. Defaults to an empty string.
|
|
87
|
+
level (EventLevel): The severity level of the code event. Defaults to EventLevel.INFO.
|
|
88
|
+
type (CodeEventType): The type of the code event. Defaults to EventType.CODE.
|
|
89
|
+
timestamp (datetime): The timestamp of the code event. Defaults to the current timestamp.
|
|
90
|
+
metadata (dict[str, Any]): The metadata of the code event. Defaults to an empty dictionary.
|
|
91
|
+
"""
|
|
92
|
+
type: CodeEventType
|
|
93
|
+
|
|
94
|
+
class ThinkingEvent(BlockBasedEvent):
|
|
95
|
+
"""Event schema for model-generated thinking.
|
|
96
|
+
|
|
97
|
+
Attributes:
|
|
98
|
+
id (str): The ID of the thinking event. Defaults to None.
|
|
99
|
+
value (str): The value of the thinking event. Defaults to an empty string.
|
|
100
|
+
level (EventLevel): The severity level of the thinking event. Defaults to EventLevel.INFO.
|
|
101
|
+
type (ThinkingEventType): The type of the thinking event. Defaults to EventType.THINKING.
|
|
102
|
+
timestamp (datetime): The timestamp of the thinking event. Defaults to the current timestamp.
|
|
103
|
+
metadata (dict[str, Any]): The metadata of the thinking event. Defaults to an empty dictionary.
|
|
104
|
+
"""
|
|
105
|
+
type: ThinkingEventType
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
from gllm_core.schema import Chunk as Chunk
|
|
2
|
+
from gllm_inference.schema.attachment import Attachment as Attachment
|
|
3
|
+
from gllm_inference.schema.code_exec_result import CodeExecResult as CodeExecResult
|
|
4
|
+
from gllm_inference.schema.mcp import MCPCall as MCPCall
|
|
5
|
+
from gllm_inference.schema.reasoning import Reasoning as Reasoning
|
|
6
|
+
from gllm_inference.schema.token_usage import TokenUsage as TokenUsage
|
|
7
|
+
from gllm_inference.schema.tool_call import ToolCall as ToolCall
|
|
8
|
+
from pydantic import BaseModel
|
|
9
|
+
from typing import Any
|
|
10
|
+
|
|
11
|
+
class LMOutput(BaseModel):
|
|
12
|
+
"""Defines the output of a language model.
|
|
13
|
+
|
|
14
|
+
Attributes:
|
|
15
|
+
response (str): The text response. Defaults to an empty string.
|
|
16
|
+
attachments (list[Attachment]): The attachments, if the language model decides to output attachments.
|
|
17
|
+
Defaults to an empty list.
|
|
18
|
+
tool_calls (list[ToolCall]): The tool calls, if the language model decides to invoke tools.
|
|
19
|
+
Defaults to an empty list.
|
|
20
|
+
structured_output (dict[str, Any] | BaseModel | None): The structured output, if a response schema is defined
|
|
21
|
+
for the language model. Defaults to None.
|
|
22
|
+
token_usage (TokenUsage | None): The token usage analytics, if requested. Defaults to None.
|
|
23
|
+
duration (float | None): The duration of the invocation in seconds, if requested. Defaults to None.
|
|
24
|
+
finish_details (dict[str, Any]): The details about how the generation finished, if requested.
|
|
25
|
+
Defaults to an empty dictionary.
|
|
26
|
+
reasoning (list[Reasoning]): The reasoning, if the language model is configured to output reasoning.
|
|
27
|
+
Defaults to an empty list.
|
|
28
|
+
citations (list[Chunk]): The citations, if the language model outputs citations. Defaults to an empty list.
|
|
29
|
+
code_exec_results (list[CodeExecResult]): The code execution results, if the language model decides to
|
|
30
|
+
execute code. Defaults to an empty list.
|
|
31
|
+
mcp_calls (list[MCPCall]): The MCP calls, if the language model decides to invoke MCP tools.
|
|
32
|
+
Defaults to an empty list.
|
|
33
|
+
"""
|
|
34
|
+
response: str
|
|
35
|
+
attachments: list[Attachment]
|
|
36
|
+
tool_calls: list[ToolCall]
|
|
37
|
+
structured_output: dict[str, Any] | BaseModel | None
|
|
38
|
+
token_usage: TokenUsage | None
|
|
39
|
+
duration: float | None
|
|
40
|
+
finish_details: dict[str, Any]
|
|
41
|
+
reasoning: list[Reasoning]
|
|
42
|
+
citations: list[Chunk]
|
|
43
|
+
code_exec_results: list[CodeExecResult]
|
|
44
|
+
mcp_calls: list[MCPCall]
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
from pydantic import BaseModel
|
|
2
|
+
from typing import Any
|
|
3
|
+
|
|
4
|
+
class MCPServer(BaseModel):
|
|
5
|
+
"""Defines an MCP server.
|
|
6
|
+
|
|
7
|
+
Attributes:
|
|
8
|
+
url (str): The URL of the MCP server.
|
|
9
|
+
name (str): The name of the MCP server.
|
|
10
|
+
allowed_tools (list[str] | None): The allowed tools of the MCP server.
|
|
11
|
+
Defaults to None, in which case all tools are allowed.
|
|
12
|
+
"""
|
|
13
|
+
url: str
|
|
14
|
+
name: str
|
|
15
|
+
allowed_tools: list[str] | None
|
|
16
|
+
|
|
17
|
+
class MCPCall(BaseModel):
|
|
18
|
+
"""Defines an MCP call.
|
|
19
|
+
|
|
20
|
+
Attributes:
|
|
21
|
+
id (str): The ID of the MCP call. Defaults to an empty string.
|
|
22
|
+
server_name (str): The name of the MCP server. Defaults to an empty string.
|
|
23
|
+
tool_name (str): The name of the tool. Defaults to an empty string.
|
|
24
|
+
args (dict[str, Any]): The arguments of the tool. Defaults to an empty dictionary.
|
|
25
|
+
output (str | None): The output of the tool. Defaults to None.
|
|
26
|
+
"""
|
|
27
|
+
id: str
|
|
28
|
+
server_name: str
|
|
29
|
+
tool_name: str
|
|
30
|
+
args: dict[str, Any]
|
|
31
|
+
output: str | None
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
from gllm_inference.schema.enums import MessageRole as MessageRole
|
|
2
|
+
from gllm_inference.schema.type_alias import MessageContent as MessageContent
|
|
3
|
+
from pydantic import BaseModel
|
|
4
|
+
from typing import Any
|
|
5
|
+
|
|
6
|
+
class Message(BaseModel):
|
|
7
|
+
"""Defines a message schema to be used as inputs for a language model.
|
|
8
|
+
|
|
9
|
+
Attributes:
|
|
10
|
+
role (MessageRole): The role of the message.
|
|
11
|
+
contents (list[MessageContent]): The contents of the message.
|
|
12
|
+
metadata (dict[str, Any]): The metadata of the message.
|
|
13
|
+
"""
|
|
14
|
+
role: MessageRole
|
|
15
|
+
contents: list[MessageContent]
|
|
16
|
+
metadata: dict[str, Any]
|
|
17
|
+
@classmethod
|
|
18
|
+
def system(cls, contents: MessageContent | list[MessageContent], metadata: dict[str, Any] | None = None) -> Message:
|
|
19
|
+
"""Create a system message.
|
|
20
|
+
|
|
21
|
+
Args:
|
|
22
|
+
contents (MessageContent | list[MessageContent]): The message contents.
|
|
23
|
+
If a single content is provided, it will be wrapped in a list.
|
|
24
|
+
metadata (dict[str, Any], optional): Additional metadata for the message. Defaults to None.
|
|
25
|
+
|
|
26
|
+
Returns:
|
|
27
|
+
Message: A new message with SYSTEM role.
|
|
28
|
+
"""
|
|
29
|
+
@classmethod
|
|
30
|
+
def user(cls, contents: MessageContent | list[MessageContent], metadata: dict[str, Any] | None = None) -> Message:
|
|
31
|
+
"""Create a user message.
|
|
32
|
+
|
|
33
|
+
Args:
|
|
34
|
+
contents (MessageContent | list[MessageContent]): The message contents.
|
|
35
|
+
If a single content is provided, it will be wrapped in a list.
|
|
36
|
+
metadata (dict[str, Any], optional): Additional metadata for the message. Defaults to None.
|
|
37
|
+
|
|
38
|
+
Returns:
|
|
39
|
+
Message: A new message with USER role.
|
|
40
|
+
"""
|
|
41
|
+
@classmethod
|
|
42
|
+
def assistant(cls, contents: MessageContent | list[MessageContent], metadata: dict[str, Any] | None = None) -> Message:
|
|
43
|
+
"""Create an assistant message.
|
|
44
|
+
|
|
45
|
+
Args:
|
|
46
|
+
contents (MessageContent | list[MessageContent]): The message contents.
|
|
47
|
+
If a single content is provided, it will be wrapped in a list.
|
|
48
|
+
metadata (dict[str, Any], optional): Additional metadata for the message. Defaults to None.
|
|
49
|
+
|
|
50
|
+
Returns:
|
|
51
|
+
Message: A new message with ASSISTANT role.
|
|
52
|
+
"""
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
from _typeshed import Incomplete
|
|
2
|
+
from enum import StrEnum
|
|
3
|
+
from gllm_inference.utils import validate_string_enum as validate_string_enum
|
|
4
|
+
from pydantic import BaseModel
|
|
5
|
+
|
|
6
|
+
PROVIDER_SEPARATOR: str
|
|
7
|
+
PATH_SEPARATOR: str
|
|
8
|
+
URL_NAME_REGEX_PATTERN: str
|
|
9
|
+
|
|
10
|
+
class ModelProvider(StrEnum):
|
|
11
|
+
"""Defines the supported model providers."""
|
|
12
|
+
ANTHROPIC = 'anthropic'
|
|
13
|
+
AZURE_OPENAI = 'azure-openai'
|
|
14
|
+
BEDROCK = 'bedrock'
|
|
15
|
+
COHERE = 'cohere'
|
|
16
|
+
DATASAUR = 'datasaur'
|
|
17
|
+
GOOGLE = 'google'
|
|
18
|
+
JINA = 'jina'
|
|
19
|
+
LANGCHAIN = 'langchain'
|
|
20
|
+
LITELLM = 'litellm'
|
|
21
|
+
OPENAI = 'openai'
|
|
22
|
+
PORTKEY = 'portkey'
|
|
23
|
+
OPENAI_CHAT_COMPLETIONS = 'openai-chat-completions'
|
|
24
|
+
OPENAI_COMPATIBLE = 'openai-compatible'
|
|
25
|
+
TWELVELABS = 'twelvelabs'
|
|
26
|
+
VOYAGE = 'voyage'
|
|
27
|
+
XAI = 'xai'
|
|
28
|
+
|
|
29
|
+
PROVIDERS_OPTIONAL_PATH: Incomplete
|
|
30
|
+
PROVIDERS_SUPPORT_PATH: Incomplete
|
|
31
|
+
|
|
32
|
+
class ModelId(BaseModel):
|
|
33
|
+
'''Defines a representation of a valid model id.
|
|
34
|
+
|
|
35
|
+
Attributes:
|
|
36
|
+
provider (ModelProvider): The provider of the model.
|
|
37
|
+
name (str | None): The name of the model.
|
|
38
|
+
path (str | None): The path of the model.
|
|
39
|
+
|
|
40
|
+
Provider-specific examples:
|
|
41
|
+
# Using Anthropic
|
|
42
|
+
```python
|
|
43
|
+
model_id = ModelId.from_string("anthropic/claude-sonnet-4-20250514")
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
# Using Bedrock
|
|
47
|
+
```python
|
|
48
|
+
model_id = ModelId.from_string("bedrock/us.anthropic.claude-sonnet-4-20250514-v1:0")
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
# Using Cohere
|
|
52
|
+
```python
|
|
53
|
+
model_id = ModelId.from_string("cohere/embed-english-v3.0")
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
# Using Cohere with custom endpoint
|
|
57
|
+
```python
|
|
58
|
+
model_id = ModelId.from_string("cohere/https://my-cohere-url:8000/v1:my-model-name")
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
# Using Datasaur
|
|
62
|
+
```python
|
|
63
|
+
model_id = ModelId.from_string("datasaur/https://deployment.datasaur.ai/api/deployment/teamId/deploymentId/")
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
# Using Google
|
|
67
|
+
```python
|
|
68
|
+
model_id = ModelId.from_string("google/gemini-2.5-flash-lite")
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
# Using Jina
|
|
72
|
+
```python
|
|
73
|
+
model_id = ModelId.from_string("jina/jina-embeddings-v2-large")
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
# Using Jina with custom endpoint
|
|
77
|
+
```python
|
|
78
|
+
model_id = ModelId.from_string("jina/https://my-jina-url:8000/v1:my-model-name")
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
# Using OpenAI
|
|
82
|
+
```python
|
|
83
|
+
model_id = ModelId.from_string("openai/gpt-5-nano")
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
# Using OpenAI with Chat Completions API
|
|
87
|
+
```python
|
|
88
|
+
model_id = ModelId.from_string("openai-chat-completions/gpt-5-nano")
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
# Using OpenAI Responses API-compatible endpoints (e.g. SGLang)
|
|
92
|
+
```python
|
|
93
|
+
model_id = ModelId.from_string("openai/https://my-sglang-url:8000/v1:my-model-name")
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
# Using OpenAI Chat Completions API-compatible endpoints (e.g. Groq)
|
|
97
|
+
```python
|
|
98
|
+
model_id = ModelId.from_string("openai-chat-completions/https://api.groq.com/openai/v1:llama3-8b-8192")
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
# Using Azure OpenAI
|
|
102
|
+
```python
|
|
103
|
+
model_id = ModelId.from_string("azure-openai/https://my-resource.openai.azure.com/openai/v1:my-deployment")
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
# Using Voyage
|
|
107
|
+
```python
|
|
108
|
+
model_id = ModelId.from_string("voyage/voyage-3.5-lite")
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
# Using TwelveLabs
|
|
112
|
+
```python
|
|
113
|
+
model_id = ModelId.from_string("twelvelabs/Marengo-retrieval-2.7")
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
# Using LangChain
|
|
117
|
+
```python
|
|
118
|
+
model_id = ModelId.from_string("langchain/langchain_openai.ChatOpenAI:gpt-4o-mini")
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
For the list of supported providers, please refer to the following table:
|
|
122
|
+
https://python.langchain.com/docs/integrations/chat/#featured-providers
|
|
123
|
+
|
|
124
|
+
# Using LiteLLM
|
|
125
|
+
```python
|
|
126
|
+
model_id = ModelId.from_string("litellm/openai/gpt-4o-mini")
|
|
127
|
+
```
|
|
128
|
+
For the list of supported providers, please refer to the following page:
|
|
129
|
+
https://docs.litellm.ai/docs/providers/
|
|
130
|
+
|
|
131
|
+
# Using xAI
|
|
132
|
+
```python
|
|
133
|
+
model_id = ModelId.from_string("xai/grok-4-0709")
|
|
134
|
+
```
|
|
135
|
+
For the list of supported models, please refer to the following page:
|
|
136
|
+
https://docs.x.ai/docs/models
|
|
137
|
+
|
|
138
|
+
Custom model name validation example:
|
|
139
|
+
```python
|
|
140
|
+
validation_map = {
|
|
141
|
+
ModelProvider.ANTHROPIC: {"claude-sonnet-4-20250514"},
|
|
142
|
+
ModelProvider.GOOGLE: {"gemini-2.5-flash-lite"},
|
|
143
|
+
ModelProvider.OPENAI: {"gpt-4.1-nano", "gpt-5-nano"},
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
model_id = ModelId.from_string("...", validation_map)
|
|
147
|
+
```
|
|
148
|
+
'''
|
|
149
|
+
provider: ModelProvider
|
|
150
|
+
name: str | None
|
|
151
|
+
path: str | None
|
|
152
|
+
@classmethod
|
|
153
|
+
def from_string(cls, model_id: str, validation_map: dict[str, set[str]] | None = None) -> ModelId:
|
|
154
|
+
"""Parse a model id string into a ModelId object.
|
|
155
|
+
|
|
156
|
+
Args:
|
|
157
|
+
model_id (str): The model id to parse. Must be in the format defined in the following page:
|
|
158
|
+
https://gdplabs.gitbook.io/sdk/resources/supported-models
|
|
159
|
+
validation_map (dict[str, set[str]] | None, optional): An optional dictionary that maps provider names to
|
|
160
|
+
sets of valid model names. For the defined model providers, the model names will be validated against
|
|
161
|
+
the set of valid model names. For the undefined model providers, the model name will not be validated.
|
|
162
|
+
Defaults to None.
|
|
163
|
+
|
|
164
|
+
Returns:
|
|
165
|
+
ModelId: The parsed ModelId object.
|
|
166
|
+
|
|
167
|
+
Raises:
|
|
168
|
+
ValueError: If the provided model id is invalid or if the model name is not valid for the provider.
|
|
169
|
+
"""
|
|
170
|
+
def to_string(self) -> str:
|
|
171
|
+
"""Convert the ModelId object to a string.
|
|
172
|
+
|
|
173
|
+
Returns:
|
|
174
|
+
str: The string representation of the ModelId object. The format is defined in the following page:
|
|
175
|
+
https://gdplabs.gitbook.io/sdk/resources/supported-models
|
|
176
|
+
"""
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from pydantic import BaseModel
|
|
2
|
+
|
|
3
|
+
class Reasoning(BaseModel):
|
|
4
|
+
"""Defines a reasoning output when a language model is configured to use reasoning.
|
|
5
|
+
|
|
6
|
+
Attributes:
|
|
7
|
+
id (str): The ID of the reasoning output. Defaults to an empty string.
|
|
8
|
+
reasoning (str): The reasoning text. Defaults to an empty string.
|
|
9
|
+
type (str): The type of the reasoning output. Defaults to an empty string.
|
|
10
|
+
data (str): The additional data of the reasoning output. Defaults to an empty string.
|
|
11
|
+
"""
|
|
12
|
+
id: str
|
|
13
|
+
reasoning: str
|
|
14
|
+
type: str
|
|
15
|
+
data: str
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
from pydantic import BaseModel
|
|
2
|
+
|
|
3
|
+
class InputTokenDetails(BaseModel):
|
|
4
|
+
"""Defines the input token details schema.
|
|
5
|
+
|
|
6
|
+
Attributes:
|
|
7
|
+
cached_tokens (int): The number of cached tokens. Defaults to 0.
|
|
8
|
+
uncached_tokens (int): The number of uncached tokens. Defaults to 0.
|
|
9
|
+
"""
|
|
10
|
+
cached_tokens: int
|
|
11
|
+
uncached_tokens: int
|
|
12
|
+
def __add__(self, other: InputTokenDetails) -> InputTokenDetails:
|
|
13
|
+
"""Add two InputTokenDetails objects together.
|
|
14
|
+
|
|
15
|
+
Args:
|
|
16
|
+
other (InputTokenDetails): The other InputTokenDetails object to add.
|
|
17
|
+
|
|
18
|
+
Returns:
|
|
19
|
+
InputTokenDetails: A new InputTokenDetails object with summed values.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
class OutputTokenDetails(BaseModel):
|
|
23
|
+
"""Defines the output token details schema.
|
|
24
|
+
|
|
25
|
+
Attributes:
|
|
26
|
+
reasoning_tokens (int): The number of reasoning tokens. Defaults to 0.
|
|
27
|
+
response_tokens (int): The number of response tokens. Defaults to 0.
|
|
28
|
+
"""
|
|
29
|
+
reasoning_tokens: int
|
|
30
|
+
response_tokens: int
|
|
31
|
+
def __add__(self, other: OutputTokenDetails) -> OutputTokenDetails:
|
|
32
|
+
"""Add two OutputTokenDetails objects together.
|
|
33
|
+
|
|
34
|
+
Args:
|
|
35
|
+
other (OutputTokenDetails): The other OutputTokenDetails object to add.
|
|
36
|
+
|
|
37
|
+
Returns:
|
|
38
|
+
OutputTokenDetails: A new OutputTokenDetails object with summed values.
|
|
39
|
+
"""
|
|
40
|
+
|
|
41
|
+
class TokenUsage(BaseModel):
|
|
42
|
+
"""Defines the token usage data structure of a language model.
|
|
43
|
+
|
|
44
|
+
Attributes:
|
|
45
|
+
input_tokens (int): The number of input tokens. Defaults to 0.
|
|
46
|
+
output_tokens (int): The number of output tokens. Defaults to 0.
|
|
47
|
+
input_token_details (InputTokenDetails | None): The details of the input tokens. Defaults to None.
|
|
48
|
+
output_token_details (OutputTokenDetails | None): The details of the output tokens. Defaults to None.
|
|
49
|
+
"""
|
|
50
|
+
input_tokens: int
|
|
51
|
+
output_tokens: int
|
|
52
|
+
input_token_details: InputTokenDetails | None
|
|
53
|
+
output_token_details: OutputTokenDetails | None
|
|
54
|
+
@classmethod
|
|
55
|
+
def from_token_details(cls, input_tokens: int | None = None, output_tokens: int | None = None, cached_tokens: int | None = None, reasoning_tokens: int | None = None) -> TokenUsage:
|
|
56
|
+
"""Creates a TokenUsage from token details.
|
|
57
|
+
|
|
58
|
+
Args:
|
|
59
|
+
input_tokens (int | None): The number of input tokens. Defaults to None.
|
|
60
|
+
output_tokens (int | None): The number of output tokens. Defaults to None.
|
|
61
|
+
cached_tokens (int | None): The number of cached tokens. Defaults to None.
|
|
62
|
+
reasoning_tokens (int | None): The number of reasoning tokens. Defaults to None.
|
|
63
|
+
|
|
64
|
+
Returns:
|
|
65
|
+
TokenUsage: The instantiated TokenUsage.
|
|
66
|
+
"""
|
|
67
|
+
def __add__(self, other: TokenUsage) -> TokenUsage:
|
|
68
|
+
"""Add two TokenUsage objects together.
|
|
69
|
+
|
|
70
|
+
Args:
|
|
71
|
+
other (TokenUsage): The other TokenUsage object to add.
|
|
72
|
+
|
|
73
|
+
Returns:
|
|
74
|
+
TokenUsage: A new TokenUsage object with summed values.
|
|
75
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from pydantic import BaseModel
|
|
2
|
+
from typing import Any
|
|
3
|
+
|
|
4
|
+
class ToolCall(BaseModel):
|
|
5
|
+
"""Defines a tool call request when a language model decides to invoke a tool.
|
|
6
|
+
|
|
7
|
+
Attributes:
|
|
8
|
+
id (str): The ID of the tool call.
|
|
9
|
+
name (str): The name of the tool.
|
|
10
|
+
args (dict[str, Any]): The arguments of the tool call.
|
|
11
|
+
"""
|
|
12
|
+
id: str
|
|
13
|
+
name: str
|
|
14
|
+
args: dict[str, Any]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from pydantic import BaseModel
|
|
2
|
+
|
|
3
|
+
class ToolResult(BaseModel):
|
|
4
|
+
"""Defines a tool result to be sent back to the language model.
|
|
5
|
+
|
|
6
|
+
Attributes:
|
|
7
|
+
id (str): The ID of the tool call.
|
|
8
|
+
output (str): The output of the tool call.
|
|
9
|
+
"""
|
|
10
|
+
id: str
|
|
11
|
+
output: str
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from gllm_inference.schema.attachment import Attachment as Attachment
|
|
2
|
+
from gllm_inference.schema.reasoning import Reasoning as Reasoning
|
|
3
|
+
from gllm_inference.schema.tool_call import ToolCall as ToolCall
|
|
4
|
+
from gllm_inference.schema.tool_result import ToolResult as ToolResult
|
|
5
|
+
from pydantic import BaseModel
|
|
6
|
+
from typing import Any
|
|
7
|
+
|
|
8
|
+
ResponseSchema = dict[str, Any] | type[BaseModel]
|
|
9
|
+
MessageContent = str | Attachment | ToolCall | ToolResult | Reasoning
|
|
10
|
+
EMContent = str | Attachment | tuple[str | Attachment, ...]
|
|
11
|
+
Vector = list[float]
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
from gllm_inference.utils.io_utils import base64_to_bytes as base64_to_bytes
|
|
2
|
+
from gllm_inference.utils.langchain import load_langchain_model as load_langchain_model, parse_model_data as parse_model_data
|
|
3
|
+
from gllm_inference.utils.validation import validate_string_enum as validate_string_enum
|
|
4
|
+
|
|
5
|
+
__all__ = ['base64_to_bytes', 'load_langchain_model', 'parse_model_data', 'validate_string_enum']
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from _typeshed import Incomplete
|
|
2
|
+
|
|
3
|
+
logger: Incomplete
|
|
4
|
+
DEFAULT_BASE64_ALLOWED_MIMETYPES: Incomplete
|
|
5
|
+
|
|
6
|
+
def base64_to_bytes(value: str, *, allowed_mimetypes: tuple[str, ...] | None = ...) -> str | bytes:
|
|
7
|
+
'''Decode a base64 string to bytes based on allowed MIME type.
|
|
8
|
+
|
|
9
|
+
The conversion steps are as follows:
|
|
10
|
+
1. The function first attempts to decode the given string from base64.
|
|
11
|
+
2. If decoding succeeds, it checks the MIME type of the decoded content.
|
|
12
|
+
3. When the MIME type matches one of the allowed patterns (e.g., ``"image/*"``),
|
|
13
|
+
the raw bytes are returned. Otherwise, the original string is returned unchanged.
|
|
14
|
+
|
|
15
|
+
Args:
|
|
16
|
+
value (str): Input data to decode.
|
|
17
|
+
allowed_mimetypes (tuple[str, ...], optional): MIME type prefixes that are allowed
|
|
18
|
+
to be decoded into bytes. Defaults to ("image/*", "audio/*", "video/*").
|
|
19
|
+
|
|
20
|
+
Returns:
|
|
21
|
+
str | bytes: Base64-encoded string or raw bytes if MIME type is allowed;
|
|
22
|
+
otherwise returns original string.
|
|
23
|
+
|
|
24
|
+
Raises:
|
|
25
|
+
ValueError: If the input is not a string.
|
|
26
|
+
'''
|