aiqtoolkit 1.2.0rc2__py3-none-any.whl → 1.2.0rc4__py3-none-any.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 aiqtoolkit might be problematic. Click here for more details.
- aiq/agent/base.py +8 -7
- aiq/agent/react_agent/agent.py +2 -3
- aiq/agent/react_agent/register.py +1 -1
- aiq/agent/reasoning_agent/reasoning_agent.py +2 -1
- aiq/agent/tool_calling_agent/register.py +2 -1
- aiq/authentication/api_key/api_key_auth_provider.py +6 -2
- aiq/builder/function.py +21 -6
- aiq/builder/function_base.py +6 -2
- aiq/cli/commands/sizing/calc.py +6 -3
- aiq/cli/commands/start.py +0 -5
- aiq/cli/commands/uninstall.py +2 -4
- aiq/data_models/api_server.py +6 -12
- aiq/data_models/component_ref.py +1 -1
- aiq/data_models/discovery_metadata.py +62 -13
- aiq/front_ends/console/console_front_end_plugin.py +2 -22
- aiq/front_ends/simple_base/simple_front_end_plugin_base.py +4 -2
- aiq/object_store/in_memory_object_store.py +18 -16
- aiq/observability/exporter/processing_exporter.py +99 -46
- aiq/observability/exporter/span_exporter.py +1 -0
- aiq/observability/processor/batching_processor.py +52 -59
- aiq/observability/processor/callback_processor.py +42 -0
- aiq/observability/processor/processor.py +4 -1
- aiq/profiler/calc/calc_runner.py +5 -1
- aiq/profiler/calc/data_models.py +18 -6
- aiq/registry_handlers/package_utils.py +397 -28
- aiq/runtime/loader.py +23 -2
- aiq/tool/code_execution/README.md +0 -1
- aiq/tool/server_tools.py +1 -1
- aiq/utils/dump_distro_mapping.py +32 -0
- aiq/utils/type_converter.py +52 -10
- {aiqtoolkit-1.2.0rc2.dist-info → aiqtoolkit-1.2.0rc4.dist-info}/METADATA +1 -1
- {aiqtoolkit-1.2.0rc2.dist-info → aiqtoolkit-1.2.0rc4.dist-info}/RECORD +37 -35
- {aiqtoolkit-1.2.0rc2.dist-info → aiqtoolkit-1.2.0rc4.dist-info}/WHEEL +0 -0
- {aiqtoolkit-1.2.0rc2.dist-info → aiqtoolkit-1.2.0rc4.dist-info}/entry_points.txt +0 -0
- {aiqtoolkit-1.2.0rc2.dist-info → aiqtoolkit-1.2.0rc4.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
- {aiqtoolkit-1.2.0rc2.dist-info → aiqtoolkit-1.2.0rc4.dist-info}/licenses/LICENSE.md +0 -0
- {aiqtoolkit-1.2.0rc2.dist-info → aiqtoolkit-1.2.0rc4.dist-info}/top_level.txt +0 -0
aiq/utils/type_converter.py
CHANGED
|
@@ -35,9 +35,12 @@ class TypeConverter:
|
|
|
35
35
|
|
|
36
36
|
def __init__(self, converters: list[Callable[[typing.Any], typing.Any]], parent: "TypeConverter | None" = None):
|
|
37
37
|
"""
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
Parameters
|
|
39
|
+
----------
|
|
40
|
+
converters : list[Callable[[typing.Any], typing.Any]]
|
|
41
|
+
A list of single-argument converter callables annotated with their input param and return type.
|
|
42
|
+
parent : TypeConverter | None
|
|
43
|
+
An optional parent TypeConverter for fallback.
|
|
41
44
|
"""
|
|
42
45
|
# dict[to_type, dict[from_type, converter]]
|
|
43
46
|
self._converters: OrderedDict[type, OrderedDict[type, Callable]] = OrderedDict()
|
|
@@ -54,6 +57,16 @@ class TypeConverter:
|
|
|
54
57
|
"""
|
|
55
58
|
Registers a converter. Must have exactly one parameter
|
|
56
59
|
and an annotated return type.
|
|
60
|
+
|
|
61
|
+
Parameters
|
|
62
|
+
----------
|
|
63
|
+
converter : Callable
|
|
64
|
+
A converter function. Must have exactly one parameter and an annotated return type.
|
|
65
|
+
|
|
66
|
+
Raises
|
|
67
|
+
------
|
|
68
|
+
ValueError
|
|
69
|
+
If the converter does not have a return type or exactly one argument or the argument has no data type.
|
|
57
70
|
"""
|
|
58
71
|
sig = typing.get_type_hints(converter)
|
|
59
72
|
to_type = sig.pop("return", None)
|
|
@@ -70,7 +83,7 @@ class TypeConverter:
|
|
|
70
83
|
self._converters.setdefault(to_type, OrderedDict())[from_type] = converter
|
|
71
84
|
# to do(MDD): If needed, sort by specificity here.
|
|
72
85
|
|
|
73
|
-
def _convert(self, data, to_type: type[_T]) -> _T | None:
|
|
86
|
+
def _convert(self, data: typing.Any, to_type: type[_T]) -> _T | None:
|
|
74
87
|
"""
|
|
75
88
|
Attempts to convert `data` into `to_type`. Returns None if no path is found.
|
|
76
89
|
"""
|
|
@@ -95,10 +108,27 @@ class TypeConverter:
|
|
|
95
108
|
# 4) If we still haven't succeeded, return None
|
|
96
109
|
return None
|
|
97
110
|
|
|
98
|
-
def convert(self, data, to_type: type[_T]) -> _T:
|
|
111
|
+
def convert(self, data: typing.Any, to_type: type[_T]) -> _T:
|
|
99
112
|
"""
|
|
100
|
-
Converts or raises ValueError if no path is found.
|
|
113
|
+
Converts or raises ValueError if no conversion path is found.
|
|
101
114
|
We also give the parent a chance if self fails.
|
|
115
|
+
|
|
116
|
+
Parameters
|
|
117
|
+
----------
|
|
118
|
+
data : typing.Any
|
|
119
|
+
The value to convert.
|
|
120
|
+
to_type : type
|
|
121
|
+
The type to convert the value to.
|
|
122
|
+
|
|
123
|
+
Returns
|
|
124
|
+
-------
|
|
125
|
+
_T
|
|
126
|
+
The converted value.
|
|
127
|
+
|
|
128
|
+
Raises
|
|
129
|
+
------
|
|
130
|
+
ValueError
|
|
131
|
+
If the value cannot be converted to the specified type.
|
|
102
132
|
"""
|
|
103
133
|
result = self._convert(data, to_type)
|
|
104
134
|
if result is None and self._parent:
|
|
@@ -109,10 +139,22 @@ class TypeConverter:
|
|
|
109
139
|
return result
|
|
110
140
|
raise ValueError(f"Cannot convert type {type(data)} to {to_type}. No match found.")
|
|
111
141
|
|
|
112
|
-
def try_convert(self, data, to_type: type[_T]) -> _T:
|
|
142
|
+
def try_convert(self, data: typing.Any, to_type: type[_T]) -> _T | typing.Any:
|
|
113
143
|
"""
|
|
114
144
|
Converts with graceful error handling. If conversion fails, returns the original data
|
|
115
145
|
and continues processing.
|
|
146
|
+
|
|
147
|
+
Parameters
|
|
148
|
+
----------
|
|
149
|
+
data : typing.Any
|
|
150
|
+
The value to convert.
|
|
151
|
+
to_type : type
|
|
152
|
+
The type to convert the value to.
|
|
153
|
+
|
|
154
|
+
Returns
|
|
155
|
+
-------
|
|
156
|
+
_T | typing.Any
|
|
157
|
+
The converted value, or original value if conversion fails.
|
|
116
158
|
"""
|
|
117
159
|
try:
|
|
118
160
|
return self.convert(data, to_type)
|
|
@@ -124,7 +166,7 @@ class TypeConverter:
|
|
|
124
166
|
# -------------------------------------------------
|
|
125
167
|
# INTERNAL DIRECT CONVERSION (with parent fallback)
|
|
126
168
|
# -------------------------------------------------
|
|
127
|
-
def _try_direct_conversion(self, data, target_root_type: type) -> typing.Any | None:
|
|
169
|
+
def _try_direct_conversion(self, data: typing.Any, target_root_type: type) -> typing.Any | None:
|
|
128
170
|
"""
|
|
129
171
|
Tries direct conversion in *this* converter's registry.
|
|
130
172
|
If no match here, we forward to parent's direct conversion
|
|
@@ -149,7 +191,7 @@ class TypeConverter:
|
|
|
149
191
|
# -------------------------------------------------
|
|
150
192
|
# INTERNAL INDIRECT CONVERSION (with parent fallback)
|
|
151
193
|
# -------------------------------------------------
|
|
152
|
-
def _try_indirect_convert(self, data, to_type: type[_T]) -> _T | None:
|
|
194
|
+
def _try_indirect_convert(self, data: typing.Any, to_type: type[_T]) -> _T | None:
|
|
153
195
|
"""
|
|
154
196
|
Attempt indirect conversion (DFS) in *this* converter.
|
|
155
197
|
If no success, fallback to parent's indirect attempt.
|
|
@@ -234,7 +276,7 @@ class GlobalTypeConverter:
|
|
|
234
276
|
return GlobalTypeConverter._global_converter.convert(data, to_type)
|
|
235
277
|
|
|
236
278
|
@staticmethod
|
|
237
|
-
def try_convert(data, to_type: type[_T]) -> _T:
|
|
279
|
+
def try_convert(data: typing.Any, to_type: type[_T]) -> _T | typing.Any:
|
|
238
280
|
return GlobalTypeConverter._global_converter.try_convert(data, to_type)
|
|
239
281
|
|
|
240
282
|
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
aiq/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
aiq/agent/base.py,sha256=
|
|
2
|
+
aiq/agent/base.py,sha256=vKD3q6RiRdXYlmsZOsB9DB0cVfSMNByhjn7uwp8TxGw,9094
|
|
3
3
|
aiq/agent/dual_node.py,sha256=EOYpYzhaY-m1t2W3eiQrBjSfNjYMDttAwtzEEEcYP4s,2353
|
|
4
4
|
aiq/agent/register.py,sha256=EATlFFl7ov5HNGySLcPv1T7jzV-Jy-jPVkUzSXDT-7s,1005
|
|
5
5
|
aiq/agent/react_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
aiq/agent/react_agent/agent.py,sha256=
|
|
6
|
+
aiq/agent/react_agent/agent.py,sha256=w3IkPuU13JElSmmGMbYBo3YZF4LrDXvPHbEZ_ZL-L8s,19424
|
|
7
7
|
aiq/agent/react_agent/output_parser.py,sha256=m7K6wRwtckBBpAHqOf3BZ9mqZLwrP13Kxz5fvNxbyZE,4219
|
|
8
8
|
aiq/agent/react_agent/prompt.py,sha256=iGPBU6kh1xbp4QsU1p3o4A0JDov23J1EVM3HSAX6S0A,1713
|
|
9
|
-
aiq/agent/react_agent/register.py,sha256=
|
|
9
|
+
aiq/agent/react_agent/register.py,sha256=Qz7KO6tZKMB9TGmy-eJzAPmsJEbEl2lu7trXI4a2CmY,8132
|
|
10
10
|
aiq/agent/reasoning_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
aiq/agent/reasoning_agent/reasoning_agent.py,sha256=
|
|
11
|
+
aiq/agent/reasoning_agent/reasoning_agent.py,sha256=lutxHz3T0HUiFyuQfWmSg-MVRw2YTKQJrYCABtHV6cs,9458
|
|
12
12
|
aiq/agent/rewoo_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
aiq/agent/rewoo_agent/agent.py,sha256=C8zUpbEFJ0De1tzMNvpxY66Qll2ekjAqSKCIcL0ftLA,19009
|
|
14
14
|
aiq/agent/rewoo_agent/prompt.py,sha256=2XsuI-db_qmH02ypx_IDvi6jTak15cqt_4pZkUv9TFk,3929
|
|
15
15
|
aiq/agent/rewoo_agent/register.py,sha256=krm0dUqM5RZpojiLZRpTgAsE0KGqa2NS2QCtlG70EJE,8128
|
|
16
16
|
aiq/agent/tool_calling_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
aiq/agent/tool_calling_agent/agent.py,sha256=e6VOeBnX_cHXUbnGW8N-ByRtHg4GrbsJecFhA9w0Ksk,5718
|
|
18
|
-
aiq/agent/tool_calling_agent/register.py,sha256=
|
|
18
|
+
aiq/agent/tool_calling_agent/register.py,sha256=Vf_7tOYYDwotxPoPWMuMMr4ZJrPLeLjqBEQ-qVsHbzU,5413
|
|
19
19
|
aiq/authentication/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
20
20
|
aiq/authentication/interfaces.py,sha256=jfsbVx0MTrxZonyTEH0YFcSJoyFHVkfVHFhm9v3jMrY,3317
|
|
21
21
|
aiq/authentication/register.py,sha256=dYChd2HRv-uv4m8Ebo2sLfbVnksT8D3jEWA-QT-MzX0,947
|
|
22
22
|
aiq/authentication/api_key/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
23
|
-
aiq/authentication/api_key/api_key_auth_provider.py,sha256=
|
|
23
|
+
aiq/authentication/api_key/api_key_auth_provider.py,sha256=ZclKuexJShF8QVJ2vwhePk2q-VSDsJB4iZn2dkOCK4I,4057
|
|
24
24
|
aiq/authentication/api_key/api_key_auth_provider_config.py,sha256=U9Rx93XVfEFXzT_fikkE0b3bX4eP8VRB2b52_YjAFjY,5472
|
|
25
25
|
aiq/authentication/api_key/register.py,sha256=2W7GMWNNa_cZvB1uU4an5kNBrYVBY-kX0tgZ9daAF6Y,1147
|
|
26
26
|
aiq/authentication/exceptions/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
@@ -44,8 +44,8 @@ aiq/builder/eval_builder.py,sha256=P2yqhPkjvkUi_ZwEsBNJi_qTSmHjraH0_9LXPGnLR7s,6
|
|
|
44
44
|
aiq/builder/evaluator.py,sha256=O6Gu0cUwQkrPxPX29Vf_-RopgijxPnhy7mhg_j-9A84,1162
|
|
45
45
|
aiq/builder/framework_enum.py,sha256=eYwHQifZ86dx-OTubVA3qhCLRqhB4ElMBYBGA0gYtic,885
|
|
46
46
|
aiq/builder/front_end.py,sha256=Xhvfi4VcDh5EoCtLr6AlLQfbRm8_TyugUc_IRfirN6Y,2225
|
|
47
|
-
aiq/builder/function.py,sha256=
|
|
48
|
-
aiq/builder/function_base.py,sha256=
|
|
47
|
+
aiq/builder/function.py,sha256=ox6wkmSk9ZlwJqAogxCe5rlWr7ZjwlyK2P_iGRJtOlY,13179
|
|
48
|
+
aiq/builder/function_base.py,sha256=xj956YMIySsppijaRkL0GBL0NICtiKqCt4clPFSYJKE,13280
|
|
49
49
|
aiq/builder/function_info.py,sha256=pGPIAL0tjVqLOJymIRB0boI9pzJGdXiPK3KiZvXQsqM,25266
|
|
50
50
|
aiq/builder/intermediate_step_manager.py,sha256=sENuXYQKOwnlEZ7f4lKZ63TTVa6FraT8s_ZM9-vwqa4,7614
|
|
51
51
|
aiq/builder/llm.py,sha256=DcoYCyschsRjkW_yGsa_Ci7ELSpk5KRbi9778Dm_B9c,951
|
|
@@ -63,8 +63,8 @@ aiq/cli/cli_utils/config_override.py,sha256=WuX9ki1W0Z6jTqjm553U_owWFxbVzjbKRWGJ
|
|
|
63
63
|
aiq/cli/cli_utils/validation.py,sha256=GlKpoi3HfE5HELjmz5wk8ezGbb5iZeY0zmA3uxmCrBU,1302
|
|
64
64
|
aiq/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
65
|
aiq/cli/commands/evaluate.py,sha256=_pqAuvrNKBf0DvGpZFO28vAKBWp6izMpaLbAVnP57_4,4783
|
|
66
|
-
aiq/cli/commands/start.py,sha256=
|
|
67
|
-
aiq/cli/commands/uninstall.py,sha256=
|
|
66
|
+
aiq/cli/commands/start.py,sha256=zQJdSW9xQbK1oahM-mWaIXm-B2E25n2SZFNv6bSkQ6Y,9838
|
|
67
|
+
aiq/cli/commands/uninstall.py,sha256=D3PGizMGy-c3DLQ-HBcVYPOv0X8eyxFFw27jJW4kxig,3195
|
|
68
68
|
aiq/cli/commands/validate.py,sha256=YfYNRK7m5te_jkKp1klhGp4PdUVCuDyVG4LRW1YXZk0,1669
|
|
69
69
|
aiq/cli/commands/configure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
70
|
aiq/cli/commands/configure/configure.py,sha256=b_rnfThV161rDmuRO0Jbke-10oSn4RJj2q4IdTvL3ng,1107
|
|
@@ -85,7 +85,7 @@ aiq/cli/commands/registry/registry.py,sha256=oo-dPYoKqmGc9lqw3FN9ADg6mGMHwfM14hX
|
|
|
85
85
|
aiq/cli/commands/registry/remove.py,sha256=ysyfA38NKFZpktjKqDkVK54e9AakpAmBGym2OF6xSuo,3915
|
|
86
86
|
aiq/cli/commands/registry/search.py,sha256=1AhW5Q5GL8SsR6fKgG0rbsd2E0nodm-ehYZwqX2SGgA,5125
|
|
87
87
|
aiq/cli/commands/sizing/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
88
|
-
aiq/cli/commands/sizing/calc.py,sha256=
|
|
88
|
+
aiq/cli/commands/sizing/calc.py,sha256=vAcDknEG8tbmfJV7GcsdbPePOvb-Z8fIZUeW5Q5dl2w,11150
|
|
89
89
|
aiq/cli/commands/sizing/sizing.py,sha256=-Hr9mz_ScEMtBbn6ijvmmWVk0WybLeX0Ryi4qhDiYQU,902
|
|
90
90
|
aiq/cli/commands/workflow/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
91
91
|
aiq/cli/commands/workflow/workflow.py,sha256=gzd_UXIMGq_NBRZiS_WHh3Dimuw9aTdncREVh8KItJI,1342
|
|
@@ -96,14 +96,14 @@ aiq/cli/commands/workflow/templates/pyproject.toml.j2,sha256=tDV7-vbt8Of82OEdSOi
|
|
|
96
96
|
aiq/cli/commands/workflow/templates/register.py.j2,sha256=SlOFmIZakPDu_E6DbIhUZ3yP8KhTrAQCFGBuhy9Fyg4,170
|
|
97
97
|
aiq/cli/commands/workflow/templates/workflow.py.j2,sha256=NRp0MP8GtZByk7lrHp2Y5_6iEopRK2Wyrt0v0_2qQeo,1226
|
|
98
98
|
aiq/data_models/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
99
|
-
aiq/data_models/api_server.py,sha256=
|
|
99
|
+
aiq/data_models/api_server.py,sha256=dHlRq_jI8N6dFHiKVJ_y4mMOHKkKP9TPM_A6oc0GSCQ,24969
|
|
100
100
|
aiq/data_models/authentication.py,sha256=TShP47-z9vIrkV3S4sadm0QF7YUkEWtsToKSBiHS3NI,7349
|
|
101
101
|
aiq/data_models/common.py,sha256=y_8AiWmTEaMjCMayVaFYddhv2AAou8Pr84isHgGxeUg,5874
|
|
102
102
|
aiq/data_models/component.py,sha256=_HeHlDmz2fgJlVfmz0tG_yCyes86hQNaQwSWz1FDQvk,1737
|
|
103
|
-
aiq/data_models/component_ref.py,sha256=
|
|
103
|
+
aiq/data_models/component_ref.py,sha256=LJbi5NzGQuq8QRhNGzAKNK1zfxvYTycELFiBy1DKNeM,4587
|
|
104
104
|
aiq/data_models/config.py,sha256=I7-9kJqpr6IvqmTU4nnALjDmq8YRlrKhYzq6g7DrJeo,17124
|
|
105
105
|
aiq/data_models/dataset_handler.py,sha256=liMB3xRohkr4VTMmNWPvWi9qhbhlJQfQK36g5Rknweo,4027
|
|
106
|
-
aiq/data_models/discovery_metadata.py,sha256=
|
|
106
|
+
aiq/data_models/discovery_metadata.py,sha256=ycrLQ2HTT4lOFZJGwvvGfXPAFRswygmNUWW0nKFNtHg,14662
|
|
107
107
|
aiq/data_models/embedder.py,sha256=nPhthEQDtzAMGd8gFRB1ZfJpN5M9DJvv0h28ohHnTmI,1002
|
|
108
108
|
aiq/data_models/evaluate.py,sha256=WBeABZsIa6W04MPj24SRu4s-ty2PkJ7_4SLojXmj5Pk,4704
|
|
109
109
|
aiq/data_models/evaluator.py,sha256=bd2njsyQB2t6ClJ66gJiCjYHsQpWZwPD7rsU0J109TI,939
|
|
@@ -208,7 +208,7 @@ aiq/front_ends/register.py,sha256=OKv1xi-g8WHtUMuIPhwjG6wOYqaGDD-Q9vDtKtT9d1Y,88
|
|
|
208
208
|
aiq/front_ends/console/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
209
209
|
aiq/front_ends/console/authentication_flow_handler.py,sha256=pKgaAnBfr3Zc5V3yPiyU-oVZyCC-dNwjvhLn1gSxnUE,9566
|
|
210
210
|
aiq/front_ends/console/console_front_end_config.py,sha256=vI81IK9GJll0t9P-3yb1JcUda5PLfdvyKc-636ZSqYU,1327
|
|
211
|
-
aiq/front_ends/console/console_front_end_plugin.py,sha256=
|
|
211
|
+
aiq/front_ends/console/console_front_end_plugin.py,sha256=WXrB5ugakwsoGxbhXJPJjyb5Evoe-eDHBPOnJdtWO9A,3937
|
|
212
212
|
aiq/front_ends/console/register.py,sha256=a84M0jWUFTgOQVyrUiS7UJcxx84i1zhCb1yRkjhapiQ,1159
|
|
213
213
|
aiq/front_ends/cron/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
214
214
|
aiq/front_ends/fastapi/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
@@ -235,7 +235,7 @@ aiq/front_ends/mcp/mcp_front_end_plugin.py,sha256=XXyu5A5zWLH-eZgLDGcdCELXkwC1YP
|
|
|
235
235
|
aiq/front_ends/mcp/register.py,sha256=9u5AJVH5UXiniP9bmsOjpfWVzQLHFlUPfL5HZ10Qwnw,1179
|
|
236
236
|
aiq/front_ends/mcp/tool_converter.py,sha256=Pgb06Gtb8MVWeV_dAaI4Tl0Hono_mSuJAHRxTvSONHQ,9840
|
|
237
237
|
aiq/front_ends/simple_base/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
238
|
-
aiq/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=
|
|
238
|
+
aiq/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=HFGa3qJXEK_og4lwXid_YGArlm1lz0GOZ89dMWn152E,1774
|
|
239
239
|
aiq/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
240
|
aiq/llm/aws_bedrock_llm.py,sha256=FFlwS7xZYSTRuPWU_vxvTbmPTbuZpN0ByVxYukEThM4,2836
|
|
241
241
|
aiq/llm/nim_llm.py,sha256=_9WwR4Pt9RCg8RG9oBeYxSt94KcZsMEVoKOFjig_2Zo,2179
|
|
@@ -250,7 +250,7 @@ aiq/memory/models.py,sha256=c5dA7nKHQ4AS1_ptQZcfC_oXO495-ehocnf_qXTE6c8,4319
|
|
|
250
250
|
aiq/meta/module_to_distro.json,sha256=1XV7edobFrdDKvsSoynfodXg_hczUWpDrQzGkW9qqEs,28
|
|
251
251
|
aiq/meta/pypi.md,sha256=N1fvWaio3KhnAw9yigeM-oWaLuT5i_C7U_2UVzyPbks,4386
|
|
252
252
|
aiq/object_store/__init__.py,sha256=7JInpxFZUdqigaBaXDzUj0KTlv_2tiM-SuTOlSvadkg,847
|
|
253
|
-
aiq/object_store/in_memory_object_store.py,sha256=
|
|
253
|
+
aiq/object_store/in_memory_object_store.py,sha256=iMwy_JaA3uZkXL6K5ToaOtarC7UfmBuvRoqmLbuYieo,2644
|
|
254
254
|
aiq/object_store/interfaces.py,sha256=5NbsE9TccihOf5ScG04hE1eNOaiajOZIUOeK_Kvukk8,2519
|
|
255
255
|
aiq/object_store/models.py,sha256=yAEa7oZgax7OwObynv0MFCMo43xTGps5xz3SIY6-0VM,1425
|
|
256
256
|
aiq/object_store/register.py,sha256=M93V17RxBXzGZaAmWboDw-S2XP7lrMEyzdlxXqC0f30,788
|
|
@@ -261,9 +261,9 @@ aiq/observability/exporter/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48j
|
|
|
261
261
|
aiq/observability/exporter/base_exporter.py,sha256=uVr2qssNwJPVJP0P9fD7tNVSdUmj4SWx4GVHqkA1_3s,16639
|
|
262
262
|
aiq/observability/exporter/exporter.py,sha256=QjEtbaTC7LTQpuzdcvRK7gUs6OIlHzQnhzD2pGmXyws,2391
|
|
263
263
|
aiq/observability/exporter/file_exporter.py,sha256=Z1DhUSpTu1SmN282pPRTU20QJZox49jZ75ARsUkgZAk,1496
|
|
264
|
-
aiq/observability/exporter/processing_exporter.py,sha256=
|
|
264
|
+
aiq/observability/exporter/processing_exporter.py,sha256=wLQ7luy5pZD_uVeAI_JDS92MJhyLDSmoOWeSNL_G3uI,14493
|
|
265
265
|
aiq/observability/exporter/raw_exporter.py,sha256=9MFukCkJE7qHBWf2V2rnsCdzL1HRYRarcudveTsvS8w,1862
|
|
266
|
-
aiq/observability/exporter/span_exporter.py,sha256=
|
|
266
|
+
aiq/observability/exporter/span_exporter.py,sha256=AxEAFeEN3oOs-5ljveDWWCYuJDhVeNXzqyIDS5Gx6Rc,12095
|
|
267
267
|
aiq/observability/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
268
268
|
aiq/observability/mixin/batch_config_mixin.py,sha256=DixQq-jRhBFJvpOX-gq7GvPmZCPOXQdacylyEuhZ6y0,1399
|
|
269
269
|
aiq/observability/mixin/collector_config_mixin.py,sha256=3iptkRH9N6JgcsPq7GyjjJVAoxjd-l42UKE7iSF4Hq8,1087
|
|
@@ -273,9 +273,10 @@ aiq/observability/mixin/resource_conflict_mixin.py,sha256=mcUp3Qinmhiepq3DyRvp9I
|
|
|
273
273
|
aiq/observability/mixin/serialize_mixin.py,sha256=DgRHJpXCz9qHFYzhlTTx8Dkj297EylCKK3ydGrH5zOw,2478
|
|
274
274
|
aiq/observability/mixin/type_introspection_mixin.py,sha256=VCb68SY_hitWrWLaK2UHQLkjn2jsgxSn9593T2N3zC0,6637
|
|
275
275
|
aiq/observability/processor/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
276
|
-
aiq/observability/processor/batching_processor.py,sha256=
|
|
276
|
+
aiq/observability/processor/batching_processor.py,sha256=dE5E_0oHwISXfCxGXpOJ5fEM-YKIfuPz5h9j9gpJoMQ,13857
|
|
277
|
+
aiq/observability/processor/callback_processor.py,sha256=U1IhQq5x5H6FaoqWCjZZqOFb5RcTdd4ORoQZCHgkdC8,1547
|
|
277
278
|
aiq/observability/processor/intermediate_step_serializer.py,sha256=UQgcHauq568TqVmF_FrInsE5Q_Piryrf_fDnuJbRtAc,1249
|
|
278
|
-
aiq/observability/processor/processor.py,sha256=
|
|
279
|
+
aiq/observability/processor/processor.py,sha256=kfYe1EiQZkOPSnqIwQ6Rjz44j-EpreRAe2uIspmHK9w,2593
|
|
279
280
|
aiq/observability/utils/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
280
281
|
aiq/observability/utils/dict_utils.py,sha256=DcNhZ0mgcJ-QQfsCl9QSGL-m_jTuHhr1N-v43ZCAMik,7371
|
|
281
282
|
aiq/observability/utils/time_utils.py,sha256=V8m-e3ldUgwv031B17y29yLXIowdlTH4QW8xDw9WKvk,1071
|
|
@@ -288,9 +289,9 @@ aiq/profiler/intermediate_property_adapter.py,sha256=XZ_A8f2S5M-EJSkErY6I750Y8HA
|
|
|
288
289
|
aiq/profiler/profile_runner.py,sha256=aNwzcgw9udNh_rgTjtPCScAfvn7ug63LVzW13AvhWRY,22363
|
|
289
290
|
aiq/profiler/utils.py,sha256=hNh_JfxXDrACIp4usXtlriTfVuYUkk3Pv-x74K34MQg,8180
|
|
290
291
|
aiq/profiler/calc/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
291
|
-
aiq/profiler/calc/calc_runner.py,sha256=
|
|
292
|
+
aiq/profiler/calc/calc_runner.py,sha256=r06RJi7bWGfI39lmG6qjS-l9ZkWm_r7AbzBRNYuVc9w,30681
|
|
292
293
|
aiq/profiler/calc/calculations.py,sha256=GUDceQOs52QMmHg0u6BVgq_cmFKjXLbuQdNyd7UVZ0A,12327
|
|
293
|
-
aiq/profiler/calc/data_models.py,sha256=
|
|
294
|
+
aiq/profiler/calc/data_models.py,sha256=vmBu89C1LsJyIRpEEzGi29_cFJDZJUJXOSXWtraVfd8,6172
|
|
294
295
|
aiq/profiler/calc/plot.py,sha256=GW1cK8U2w6hIzKp6ItciCmxHR0KeUCw7n5EvpcPsoio,12222
|
|
295
296
|
aiq/profiler/callbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
296
297
|
aiq/profiler/callbacks/agno_callback_handler.py,sha256=aDAUY6GDIUtly6KowXXKUqLc7NbE6khg1aXT1AritaA,14930
|
|
@@ -323,7 +324,7 @@ aiq/profiler/inference_optimization/experimental/concurrency_spike_analysis.py,s
|
|
|
323
324
|
aiq/profiler/inference_optimization/experimental/prefix_span_analysis.py,sha256=nD46SCVi7zwxdPXRN5c61O58_OgMA2WCfaZdRJRqgP4,16600
|
|
324
325
|
aiq/registry_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
326
|
aiq/registry_handlers/metadata_factory.py,sha256=Urr_7mLLpoU0VPjl2Nknl9aZhzaAAwb66ydTGBBrIwc,2778
|
|
326
|
-
aiq/registry_handlers/package_utils.py,sha256=
|
|
327
|
+
aiq/registry_handlers/package_utils.py,sha256=KZYtGNEIaG9pyG3gyHyumL6w8jsNF8iD-FWNWgP4oBY,22523
|
|
327
328
|
aiq/registry_handlers/register.py,sha256=k2gvV0htVpfMdzsRvZGnTZp17JA2Na8sO9ocMaxDSmo,902
|
|
328
329
|
aiq/registry_handlers/registry_handler_base.py,sha256=BYLH6R9y3pySBDH9HKUR16rM0atFRt594IDyyhgCQVQ,5842
|
|
329
330
|
aiq/registry_handlers/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -354,7 +355,7 @@ aiq/retriever/nemo_retriever/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W
|
|
|
354
355
|
aiq/retriever/nemo_retriever/register.py,sha256=ODV-TZfXzDs1VJHHLdj2kC05odirtlQZSeh9c1zw8AQ,2893
|
|
355
356
|
aiq/retriever/nemo_retriever/retriever.py,sha256=IvScUr9XuDLiMR__I3QsboLaM52N5D5Qu94qtTOGQw8,6958
|
|
356
357
|
aiq/runtime/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
357
|
-
aiq/runtime/loader.py,sha256=
|
|
358
|
+
aiq/runtime/loader.py,sha256=F_CHLj3KR8PBxzqu1sy70JLyNBDFG55bFm9kVNGoSdM,7707
|
|
358
359
|
aiq/runtime/runner.py,sha256=CqmlVAYfrBh3ml3t2n3V693RaNyxtK9ScWT4S-Isbr8,6365
|
|
359
360
|
aiq/runtime/session.py,sha256=i1pIqopZCBgGJqVUskKLiBnZYH-lTdMhvFu56dXAU5A,6206
|
|
360
361
|
aiq/runtime/user_metadata.py,sha256=9EiBc-EEJzOdpf3Q1obHqAdY_kRlJ1T0TVvY0Jonk6o,3692
|
|
@@ -368,8 +369,8 @@ aiq/tool/document_search.py,sha256=w3D3r5ZBS2jYmVAZZ7lC7xCoi25bA1RePoFjjlV1Zog,6
|
|
|
368
369
|
aiq/tool/nvidia_rag.py,sha256=9mS3igONo1RywxXNj_ITh2-qD91x1R0f7uhOWMZQX3o,4178
|
|
369
370
|
aiq/tool/register.py,sha256=Lwl6l_eEzS8LAELxClmniNhhLluRVZFYXhsk2ocQhNg,1491
|
|
370
371
|
aiq/tool/retriever.py,sha256=DnuU4khpJkd4epDBGQsowDOqDBKFiLQrnyKXgU6IRW8,3724
|
|
371
|
-
aiq/tool/server_tools.py,sha256=
|
|
372
|
-
aiq/tool/code_execution/README.md,sha256=
|
|
372
|
+
aiq/tool/server_tools.py,sha256=286hTIvX_8pEohmkqmgWTCLkTfMTjuR9v0zivcW17r4,3200
|
|
373
|
+
aiq/tool/code_execution/README.md,sha256=QM8Fe8O7a9t2oDbG2d1PTIbddpGM4hhlIg2ZTYUKHY0,4019
|
|
373
374
|
aiq/tool/code_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
374
375
|
aiq/tool/code_execution/code_sandbox.py,sha256=ibe6BoYdWzmQWHdVNweVP-QW1WRGirfhvFr0iqm4fI8,10159
|
|
375
376
|
aiq/tool/code_execution/register.py,sha256=i3MNxCb3lBeeSKMwQeg6X2oUpgUKdEoOw2bqUEIqy1E,3322
|
|
@@ -399,12 +400,13 @@ aiq/tool/memory_tools/delete_memory_tool.py,sha256=wdB_I8y-1D1OpNtBi6ZOg36vvNkba
|
|
|
399
400
|
aiq/tool/memory_tools/get_memory_tool.py,sha256=-i0Bt5xYeapbbd2wtAgPc0pOv0Dx4jK1-yyHG7YCeQ0,2749
|
|
400
401
|
aiq/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
401
402
|
aiq/utils/debugging_utils.py,sha256=6M4JhbHDNDnfmSRGmHvT5IgEeWSHBore3VngdE_PMqc,1332
|
|
403
|
+
aiq/utils/dump_distro_mapping.py,sha256=5I3IGsmhoW12VZrInxx9CyyVSEtRmhRyo1bSdJJUj-o,1155
|
|
402
404
|
aiq/utils/log_utils.py,sha256=dZLHt7qFqLlpPqMMFO9UVtSkOpMjFwz9tkmbAfOiNlg,1355
|
|
403
405
|
aiq/utils/metadata_utils.py,sha256=lGYvc8Gk0az4qZDGeRbVz4L7B_b-Gnjss8JT4goqL5I,2897
|
|
404
406
|
aiq/utils/optional_imports.py,sha256=jQSVBc2fBSRw-2d6r8cEwvh5-di2EUUPakuuo9QbbwA,4039
|
|
405
407
|
aiq/utils/producer_consumer_queue.py,sha256=AcSYkAMBxLx06A5Xdy960PP3AJ7YaSPGJ7rbN_hJsjI,6599
|
|
406
408
|
aiq/utils/string_utils.py,sha256=71HuIzGx7rF8ocTmeoUBpnCi1Qf1yynYlNLLIKP4BVs,1415
|
|
407
|
-
aiq/utils/type_converter.py,sha256=
|
|
409
|
+
aiq/utils/type_converter.py,sha256=mu09lnTOrsYee1gQlc1zLoDL7rJhzN7VNhK6viIS5gA,10640
|
|
408
410
|
aiq/utils/type_utils.py,sha256=G-SYlk4BkJv4L225myUhwBY6-Z7wOgR9K49dVUtV8SA,14896
|
|
409
411
|
aiq/utils/url_utils.py,sha256=UzDP_xaS6brWTu7vAws0B4jZyrITIK9Si3U6pZBZqDE,1028
|
|
410
412
|
aiq/utils/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -427,10 +429,10 @@ aiq/utils/reactive/base/observer_base.py,sha256=UAlyAY_ky4q2t0P81RVFo2Bs_R7z5Nde
|
|
|
427
429
|
aiq/utils/reactive/base/subject_base.py,sha256=Ed-AC6P7cT3qkW1EXjzbd5M9WpVoeN_9KCe3OM3FLU4,2521
|
|
428
430
|
aiq/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
429
431
|
aiq/utils/settings/global_settings.py,sha256=U9TCLdoZsKq5qOVGjREipGVv9e-FlStzqy5zv82_VYk,7454
|
|
430
|
-
aiqtoolkit-1.2.
|
|
431
|
-
aiqtoolkit-1.2.
|
|
432
|
-
aiqtoolkit-1.2.
|
|
433
|
-
aiqtoolkit-1.2.
|
|
434
|
-
aiqtoolkit-1.2.
|
|
435
|
-
aiqtoolkit-1.2.
|
|
436
|
-
aiqtoolkit-1.2.
|
|
432
|
+
aiqtoolkit-1.2.0rc4.dist-info/licenses/LICENSE-3rd-party.txt,sha256=8o7aySJa9CBvFshPcsRdJbczzdNyDGJ8b0J67WRUQ2k,183936
|
|
433
|
+
aiqtoolkit-1.2.0rc4.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
434
|
+
aiqtoolkit-1.2.0rc4.dist-info/METADATA,sha256=4mgm80zLDxo_rJhad7-nJNv--TYpcFJv5UO3eUDzUZM,21558
|
|
435
|
+
aiqtoolkit-1.2.0rc4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
436
|
+
aiqtoolkit-1.2.0rc4.dist-info/entry_points.txt,sha256=iZR3yrf1liXfbcLqn5_pUkLhZyr1bUw_Qh1d2i7gsv4,625
|
|
437
|
+
aiqtoolkit-1.2.0rc4.dist-info/top_level.txt,sha256=fo7AzYcNhZ_tRWrhGumtxwnxMew4xrT1iwouDy_f0Kc,4
|
|
438
|
+
aiqtoolkit-1.2.0rc4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{aiqtoolkit-1.2.0rc2.dist-info → aiqtoolkit-1.2.0rc4.dist-info}/licenses/LICENSE-3rd-party.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|