aiqtoolkit 1.2.0a20250801__py3-none-any.whl → 1.2.0a20250802__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/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/cli/commands/start.py +0 -5
- aiq/observability/processor/callback_processor.py +1 -2
- aiq/runtime/loader.py +2 -2
- {aiqtoolkit-1.2.0a20250801.dist-info → aiqtoolkit-1.2.0a20250802.dist-info}/METADATA +1 -1
- {aiqtoolkit-1.2.0a20250801.dist-info → aiqtoolkit-1.2.0a20250802.dist-info}/RECORD +13 -13
- {aiqtoolkit-1.2.0a20250801.dist-info → aiqtoolkit-1.2.0a20250802.dist-info}/WHEEL +0 -0
- {aiqtoolkit-1.2.0a20250801.dist-info → aiqtoolkit-1.2.0a20250802.dist-info}/entry_points.txt +0 -0
- {aiqtoolkit-1.2.0a20250801.dist-info → aiqtoolkit-1.2.0a20250802.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
- {aiqtoolkit-1.2.0a20250801.dist-info → aiqtoolkit-1.2.0a20250802.dist-info}/licenses/LICENSE.md +0 -0
- {aiqtoolkit-1.2.0a20250801.dist-info → aiqtoolkit-1.2.0a20250802.dist-info}/top_level.txt +0 -0
|
@@ -18,7 +18,6 @@ import logging
|
|
|
18
18
|
from pydantic import AliasChoices
|
|
19
19
|
from pydantic import Field
|
|
20
20
|
|
|
21
|
-
from aiq.agent.base import AGENT_LOG_PREFIX
|
|
22
21
|
from aiq.builder.builder import Builder
|
|
23
22
|
from aiq.builder.framework_enum import LLMFrameworkEnum
|
|
24
23
|
from aiq.builder.function_info import FunctionInfo
|
|
@@ -79,6 +78,7 @@ async def react_agent_workflow(config: ReActAgentWorkflowConfig, builder: Builde
|
|
|
79
78
|
from langchain_core.messages import trim_messages
|
|
80
79
|
from langgraph.graph.graph import CompiledGraph
|
|
81
80
|
|
|
81
|
+
from aiq.agent.base import AGENT_LOG_PREFIX
|
|
82
82
|
from aiq.agent.react_agent.agent import ReActAgentGraph
|
|
83
83
|
from aiq.agent.react_agent.agent import ReActGraphState
|
|
84
84
|
from aiq.agent.react_agent.agent import create_react_agent_prompt
|
|
@@ -19,7 +19,6 @@ from collections.abc import AsyncGenerator
|
|
|
19
19
|
|
|
20
20
|
from pydantic import Field
|
|
21
21
|
|
|
22
|
-
from aiq.agent.base import AGENT_LOG_PREFIX
|
|
23
22
|
from aiq.builder.builder import Builder
|
|
24
23
|
from aiq.builder.framework_enum import LLMFrameworkEnum
|
|
25
24
|
from aiq.builder.function_info import FunctionInfo
|
|
@@ -86,6 +85,8 @@ async def build_reasoning_function(config: ReasoningFunctionConfig, builder: Bui
|
|
|
86
85
|
from langchain_core.language_models import BaseChatModel
|
|
87
86
|
from langchain_core.prompts import PromptTemplate
|
|
88
87
|
|
|
88
|
+
from aiq.agent.base import AGENT_LOG_PREFIX
|
|
89
|
+
|
|
89
90
|
def remove_r1_think_tags(text: str):
|
|
90
91
|
pattern = r'(<think>)?.*?</think>\s*(.*)'
|
|
91
92
|
|
|
@@ -17,7 +17,6 @@ import logging
|
|
|
17
17
|
|
|
18
18
|
from pydantic import Field
|
|
19
19
|
|
|
20
|
-
from aiq.agent.base import AGENT_LOG_PREFIX
|
|
21
20
|
from aiq.builder.builder import Builder
|
|
22
21
|
from aiq.builder.framework_enum import LLMFrameworkEnum
|
|
23
22
|
from aiq.builder.function_info import FunctionInfo
|
|
@@ -49,6 +48,8 @@ async def tool_calling_agent_workflow(config: ToolCallAgentWorkflowConfig, build
|
|
|
49
48
|
from langchain_core.messages.human import HumanMessage
|
|
50
49
|
from langgraph.graph.graph import CompiledGraph
|
|
51
50
|
|
|
51
|
+
from aiq.agent.base import AGENT_LOG_PREFIX
|
|
52
|
+
|
|
52
53
|
from .agent import ToolCallAgentGraph
|
|
53
54
|
from .agent import ToolCallAgentGraphState
|
|
54
55
|
|
aiq/cli/commands/start.py
CHANGED
|
@@ -190,11 +190,6 @@ class StartCommandGroup(click.Group):
|
|
|
190
190
|
# Override default front end config with values from the config file for serverless execution modes.
|
|
191
191
|
# Check that we have the right kind of front end
|
|
192
192
|
if (not isinstance(config.general.front_end, front_end.config_type)):
|
|
193
|
-
logger.warning(
|
|
194
|
-
"The front end type in the config file (%s) does not match the command name (%s). "
|
|
195
|
-
"Overwriting the config file front end.",
|
|
196
|
-
config.general.front_end.type,
|
|
197
|
-
cmd_name)
|
|
198
193
|
|
|
199
194
|
# Set the front end config
|
|
200
195
|
config.general.front_end = front_end.config_type()
|
|
@@ -17,7 +17,6 @@ from abc import abstractmethod
|
|
|
17
17
|
from collections.abc import Awaitable
|
|
18
18
|
from collections.abc import Callable
|
|
19
19
|
from typing import Any
|
|
20
|
-
from typing import Generic
|
|
21
20
|
from typing import TypeVar
|
|
22
21
|
|
|
23
22
|
from aiq.observability.processor.processor import Processor
|
|
@@ -26,7 +25,7 @@ InputT = TypeVar('InputT')
|
|
|
26
25
|
OutputT = TypeVar('OutputT')
|
|
27
26
|
|
|
28
27
|
|
|
29
|
-
class CallbackProcessor(Processor[InputT, OutputT]
|
|
28
|
+
class CallbackProcessor(Processor[InputT, OutputT]):
|
|
30
29
|
"""Abstract base class for processors that support done callbacks.
|
|
31
30
|
|
|
32
31
|
Processors inheriting from this class can register callbacks that are
|
aiq/runtime/loader.py
CHANGED
|
@@ -175,8 +175,8 @@ def discover_and_register_plugins(plugin_type: PluginTypes):
|
|
|
175
175
|
# Log a warning if the plugin took a long time to load. This can be useful for debugging slow imports.
|
|
176
176
|
# The threshold is 300 ms if no plugins have been loaded yet, and 100 ms otherwise. Triple the threshold
|
|
177
177
|
# if a debugger is attached.
|
|
178
|
-
if (elapsed_time > (300.0 if count == 0 else
|
|
179
|
-
logger.
|
|
178
|
+
if (elapsed_time > (300.0 if count == 0 else 150.0) * (3 if is_debugger_attached() else 1)):
|
|
179
|
+
logger.debug(
|
|
180
180
|
"Loading module '%s' from entry point '%s' took a long time (%f ms). "
|
|
181
181
|
"Ensure all imports are inside your registered functions.",
|
|
182
182
|
entry_point.module,
|
|
@@ -6,16 +6,16 @@ aiq/agent/react_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
6
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
|
|
@@ -63,7 +63,7 @@ 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=
|
|
66
|
+
aiq/cli/commands/start.py,sha256=zQJdSW9xQbK1oahM-mWaIXm-B2E25n2SZFNv6bSkQ6Y,9838
|
|
67
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
|
|
@@ -274,7 +274,7 @@ aiq/observability/mixin/serialize_mixin.py,sha256=DgRHJpXCz9qHFYzhlTTx8Dkj297Eyl
|
|
|
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
276
|
aiq/observability/processor/batching_processor.py,sha256=dE5E_0oHwISXfCxGXpOJ5fEM-YKIfuPz5h9j9gpJoMQ,13857
|
|
277
|
-
aiq/observability/processor/callback_processor.py,sha256=
|
|
277
|
+
aiq/observability/processor/callback_processor.py,sha256=U1IhQq5x5H6FaoqWCjZZqOFb5RcTdd4ORoQZCHgkdC8,1547
|
|
278
278
|
aiq/observability/processor/intermediate_step_serializer.py,sha256=UQgcHauq568TqVmF_FrInsE5Q_Piryrf_fDnuJbRtAc,1249
|
|
279
279
|
aiq/observability/processor/processor.py,sha256=kfYe1EiQZkOPSnqIwQ6Rjz44j-EpreRAe2uIspmHK9w,2593
|
|
280
280
|
aiq/observability/utils/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
@@ -355,7 +355,7 @@ aiq/retriever/nemo_retriever/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W
|
|
|
355
355
|
aiq/retriever/nemo_retriever/register.py,sha256=ODV-TZfXzDs1VJHHLdj2kC05odirtlQZSeh9c1zw8AQ,2893
|
|
356
356
|
aiq/retriever/nemo_retriever/retriever.py,sha256=IvScUr9XuDLiMR__I3QsboLaM52N5D5Qu94qtTOGQw8,6958
|
|
357
357
|
aiq/runtime/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
358
|
-
aiq/runtime/loader.py,sha256=
|
|
358
|
+
aiq/runtime/loader.py,sha256=drLE-OnrAPjFgWrQ3ZsnhHSbon8GkRsUk0p7Oe8Jn2I,7117
|
|
359
359
|
aiq/runtime/runner.py,sha256=CqmlVAYfrBh3ml3t2n3V693RaNyxtK9ScWT4S-Isbr8,6365
|
|
360
360
|
aiq/runtime/session.py,sha256=i1pIqopZCBgGJqVUskKLiBnZYH-lTdMhvFu56dXAU5A,6206
|
|
361
361
|
aiq/runtime/user_metadata.py,sha256=9EiBc-EEJzOdpf3Q1obHqAdY_kRlJ1T0TVvY0Jonk6o,3692
|
|
@@ -428,10 +428,10 @@ aiq/utils/reactive/base/observer_base.py,sha256=UAlyAY_ky4q2t0P81RVFo2Bs_R7z5Nde
|
|
|
428
428
|
aiq/utils/reactive/base/subject_base.py,sha256=Ed-AC6P7cT3qkW1EXjzbd5M9WpVoeN_9KCe3OM3FLU4,2521
|
|
429
429
|
aiq/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
430
430
|
aiq/utils/settings/global_settings.py,sha256=U9TCLdoZsKq5qOVGjREipGVv9e-FlStzqy5zv82_VYk,7454
|
|
431
|
-
aiqtoolkit-1.2.
|
|
432
|
-
aiqtoolkit-1.2.
|
|
433
|
-
aiqtoolkit-1.2.
|
|
434
|
-
aiqtoolkit-1.2.
|
|
435
|
-
aiqtoolkit-1.2.
|
|
436
|
-
aiqtoolkit-1.2.
|
|
437
|
-
aiqtoolkit-1.2.
|
|
431
|
+
aiqtoolkit-1.2.0a20250802.dist-info/licenses/LICENSE-3rd-party.txt,sha256=8o7aySJa9CBvFshPcsRdJbczzdNyDGJ8b0J67WRUQ2k,183936
|
|
432
|
+
aiqtoolkit-1.2.0a20250802.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
433
|
+
aiqtoolkit-1.2.0a20250802.dist-info/METADATA,sha256=MNhTmfIeb6bpYVMTDj9EIj9kS8IWaf8JLfwBMzH6WQ0,21564
|
|
434
|
+
aiqtoolkit-1.2.0a20250802.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
435
|
+
aiqtoolkit-1.2.0a20250802.dist-info/entry_points.txt,sha256=iZR3yrf1liXfbcLqn5_pUkLhZyr1bUw_Qh1d2i7gsv4,625
|
|
436
|
+
aiqtoolkit-1.2.0a20250802.dist-info/top_level.txt,sha256=fo7AzYcNhZ_tRWrhGumtxwnxMew4xrT1iwouDy_f0Kc,4
|
|
437
|
+
aiqtoolkit-1.2.0a20250802.dist-info/RECORD,,
|
|
File without changes
|
{aiqtoolkit-1.2.0a20250801.dist-info → aiqtoolkit-1.2.0a20250802.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
{aiqtoolkit-1.2.0a20250801.dist-info → aiqtoolkit-1.2.0a20250802.dist-info}/licenses/LICENSE.md
RENAMED
|
File without changes
|
|
File without changes
|