aiqtoolkit-agno 1.1.0a20250429__py3-none-any.whl → 1.1.0a20250501__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-agno might be problematic. Click here for more details.
- aiq/meta/pypi.md +5 -5
- aiq/plugins/agno/tool_wrapper.py +3 -3
- aiq/plugins/agno/tools/serp_api_tool.py +1 -1
- {aiqtoolkit_agno-1.1.0a20250429.dist-info → aiqtoolkit_agno-1.1.0a20250501.dist-info}/METADATA +7 -7
- aiqtoolkit_agno-1.1.0a20250501.dist-info/RECORD +13 -0
- {aiqtoolkit_agno-1.1.0a20250429.dist-info → aiqtoolkit_agno-1.1.0a20250501.dist-info}/WHEEL +1 -1
- aiqtoolkit_agno-1.1.0a20250429.dist-info/RECORD +0 -13
- {aiqtoolkit_agno-1.1.0a20250429.dist-info → aiqtoolkit_agno-1.1.0a20250501.dist-info}/entry_points.txt +0 -0
- {aiqtoolkit_agno-1.1.0a20250429.dist-info → aiqtoolkit_agno-1.1.0a20250501.dist-info}/top_level.txt +0 -0
aiq/meta/pypi.md
CHANGED
|
@@ -6,7 +6,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
6
6
|
you may not use this file except in compliance with the License.
|
|
7
7
|
You may obtain a copy of the License at
|
|
8
8
|
|
|
9
|
-
http
|
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
10
|
|
|
11
11
|
Unless required by applicable law or agreed to in writing, software
|
|
12
12
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
@@ -15,11 +15,11 @@ See the License for the specific language governing permissions and
|
|
|
15
15
|
limitations under the License.
|
|
16
16
|
-->
|
|
17
17
|
|
|
18
|
-

|
|
19
19
|
|
|
20
|
-
# NVIDIA
|
|
20
|
+
# NVIDIA Agent Intelligence Toolkit Subpackage
|
|
21
21
|
|
|
22
22
|
<!-- Note: "Agno" is the official product name despite Vale spelling checker warnings -->
|
|
23
|
-
This is a subpackage for `Agno` integration in
|
|
23
|
+
This is a subpackage for `Agno` integration in AIQ Toolkit.
|
|
24
24
|
|
|
25
|
-
For more information about
|
|
25
|
+
For more information about AIQ Toolkit, please visit the [AIQ Toolkit package](https://pypi.org/project/aiqtoolkit/).
|
aiq/plugins/agno/tool_wrapper.py
CHANGED
|
@@ -297,9 +297,9 @@ def execute_agno_tool(name: str,
|
|
|
297
297
|
@register_tool_wrapper(wrapper_type=LLMFrameworkEnum.AGNO)
|
|
298
298
|
def agno_tool_wrapper(name: str, fn: Function, builder: Builder):
|
|
299
299
|
"""
|
|
300
|
-
Wraps an
|
|
300
|
+
Wraps an AIQ Toolkit Function to be usable as an Agno tool.
|
|
301
301
|
|
|
302
|
-
This wrapper handles the conversion of async
|
|
302
|
+
This wrapper handles the conversion of async AIQ Toolkit functions to
|
|
303
303
|
the format expected by Agno tools. It properly handles input schema,
|
|
304
304
|
descriptions, and async invocation.
|
|
305
305
|
|
|
@@ -308,7 +308,7 @@ def agno_tool_wrapper(name: str, fn: Function, builder: Builder):
|
|
|
308
308
|
name : str
|
|
309
309
|
The name of the tool
|
|
310
310
|
fn : Function
|
|
311
|
-
The
|
|
311
|
+
The AIQ Toolkit Function to wrap
|
|
312
312
|
builder : Builder
|
|
313
313
|
The builder instance
|
|
314
314
|
|
|
@@ -50,7 +50,7 @@ async def serp_api_tool(tool_config: SerpApiToolConfig, builder: Builder):
|
|
|
50
50
|
tool_config : SerpApiToolConfig
|
|
51
51
|
Configuration for the SerpAPI tool
|
|
52
52
|
builder : Builder
|
|
53
|
-
The
|
|
53
|
+
The AIQ Toolkit builder instance
|
|
54
54
|
|
|
55
55
|
Returns
|
|
56
56
|
-------
|
{aiqtoolkit_agno-1.1.0a20250429.dist-info → aiqtoolkit_agno-1.1.0a20250501.dist-info}/METADATA
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiqtoolkit-agno
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.0a20250501
|
|
4
4
|
Summary: Subpackage for Agno integration in AIQToolkit
|
|
5
5
|
Keywords: ai,rag,agents
|
|
6
6
|
Classifier: Programming Language :: Python
|
|
7
|
-
Requires-Python:
|
|
7
|
+
Requires-Python: <3.13,>=3.11
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
Requires-Dist: aiqtoolkit
|
|
10
10
|
Requires-Dist: agno~=1.2.3
|
|
@@ -19,7 +19,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
19
19
|
you may not use this file except in compliance with the License.
|
|
20
20
|
You may obtain a copy of the License at
|
|
21
21
|
|
|
22
|
-
http
|
|
22
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
23
23
|
|
|
24
24
|
Unless required by applicable law or agreed to in writing, software
|
|
25
25
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
@@ -28,11 +28,11 @@ See the License for the specific language governing permissions and
|
|
|
28
28
|
limitations under the License.
|
|
29
29
|
-->
|
|
30
30
|
|
|
31
|
-

|
|
32
32
|
|
|
33
|
-
# NVIDIA
|
|
33
|
+
# NVIDIA Agent Intelligence Toolkit Subpackage
|
|
34
34
|
|
|
35
35
|
<!-- Note: "Agno" is the official product name despite Vale spelling checker warnings -->
|
|
36
|
-
This is a subpackage for `Agno` integration in
|
|
36
|
+
This is a subpackage for `Agno` integration in AIQ Toolkit.
|
|
37
37
|
|
|
38
|
-
For more information about
|
|
38
|
+
For more information about AIQ Toolkit, please visit the [AIQ Toolkit package](https://pypi.org/project/aiqtoolkit/).
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
aiq/meta/pypi.md,sha256=-q8vi9kLgtkcUXQnjUN2bV9Y1L0FBXFk3UXQJzqMswk,1166
|
|
2
|
+
aiq/plugins/agno/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
aiq/plugins/agno/llm.py,sha256=KvtcyBCKzN1gEVet8RORjjYh1dctazzC8V2xZhwCSgc,2459
|
|
4
|
+
aiq/plugins/agno/register.py,sha256=6vC1TjMxo3igqTnEtVFgLEf_jgLYkBfBZxjwqxGng6w,820
|
|
5
|
+
aiq/plugins/agno/tool_wrapper.py,sha256=bWsCdx6IkzOZbvBYC30N5mvGnHNVBScdHji6Mj9amB0,15939
|
|
6
|
+
aiq/plugins/agno/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
aiq/plugins/agno/tools/register.py,sha256=OCmzR03CHmQHm34ZEascM1dRVh-ALMs2mafDcqLDz6s,775
|
|
8
|
+
aiq/plugins/agno/tools/serp_api_tool.py,sha256=93Rnj9tmK8N4hVWzXHMflcTOrj8YLNiY9b2jT_K72d8,5303
|
|
9
|
+
aiqtoolkit_agno-1.1.0a20250501.dist-info/METADATA,sha256=lZYZsNDIqJAo-OmXwfJasJbJX63zp2kX6C_s-iJP5vE,1552
|
|
10
|
+
aiqtoolkit_agno-1.1.0a20250501.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
|
|
11
|
+
aiqtoolkit_agno-1.1.0a20250501.dist-info/entry_points.txt,sha256=iMjZt0Aziz5vGiuTfSNjy1gWeOj2URFhhKt-gti-9sY,103
|
|
12
|
+
aiqtoolkit_agno-1.1.0a20250501.dist-info/top_level.txt,sha256=fo7AzYcNhZ_tRWrhGumtxwnxMew4xrT1iwouDy_f0Kc,4
|
|
13
|
+
aiqtoolkit_agno-1.1.0a20250501.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
aiq/meta/pypi.md,sha256=i4BDsQ2QTU6KdObxgUFWkEnDDznBR0z-XUrYmTYFM60,1102
|
|
2
|
-
aiq/plugins/agno/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
aiq/plugins/agno/llm.py,sha256=KvtcyBCKzN1gEVet8RORjjYh1dctazzC8V2xZhwCSgc,2459
|
|
4
|
-
aiq/plugins/agno/register.py,sha256=6vC1TjMxo3igqTnEtVFgLEf_jgLYkBfBZxjwqxGng6w,820
|
|
5
|
-
aiq/plugins/agno/tool_wrapper.py,sha256=HcVX9d_0AUhwq6gmRDtVNvwiOjR3-Ul36UVWBgzOApE,15927
|
|
6
|
-
aiq/plugins/agno/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
aiq/plugins/agno/tools/register.py,sha256=OCmzR03CHmQHm34ZEascM1dRVh-ALMs2mafDcqLDz6s,775
|
|
8
|
-
aiq/plugins/agno/tools/serp_api_tool.py,sha256=ciN-vWdqTolrtND9ARXU7rfApQf3EGPn-id4pkcOdX0,5299
|
|
9
|
-
aiqtoolkit_agno-1.1.0a20250429.dist-info/METADATA,sha256=UTGuh7s_Yt4qG_FsWRGgA1mvvCO9RdqmSJbulgFqgpI,1482
|
|
10
|
-
aiqtoolkit_agno-1.1.0a20250429.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
|
|
11
|
-
aiqtoolkit_agno-1.1.0a20250429.dist-info/entry_points.txt,sha256=iMjZt0Aziz5vGiuTfSNjy1gWeOj2URFhhKt-gti-9sY,103
|
|
12
|
-
aiqtoolkit_agno-1.1.0a20250429.dist-info/top_level.txt,sha256=fo7AzYcNhZ_tRWrhGumtxwnxMew4xrT1iwouDy_f0Kc,4
|
|
13
|
-
aiqtoolkit_agno-1.1.0a20250429.dist-info/RECORD,,
|
|
File without changes
|
{aiqtoolkit_agno-1.1.0a20250429.dist-info → aiqtoolkit_agno-1.1.0a20250501.dist-info}/top_level.txt
RENAMED
|
File without changes
|