fyodorov-llm-agents 0.4.8__py3-none-any.whl → 0.4.9__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.
- fyodorov_llm_agents/tools/mcp_tool_service.py +3 -0
- {fyodorov_llm_agents-0.4.8.dist-info → fyodorov_llm_agents-0.4.9.dist-info}/METADATA +1 -1
- {fyodorov_llm_agents-0.4.8.dist-info → fyodorov_llm_agents-0.4.9.dist-info}/RECORD +5 -5
- {fyodorov_llm_agents-0.4.8.dist-info → fyodorov_llm_agents-0.4.9.dist-info}/WHEEL +1 -1
- {fyodorov_llm_agents-0.4.8.dist-info → fyodorov_llm_agents-0.4.9.dist-info}/top_level.txt +0 -0
@@ -66,6 +66,9 @@ class MCPTool():
|
|
66
66
|
try:
|
67
67
|
supabase = get_supabase(access_token)
|
68
68
|
result = supabase.table('mcp_tools').select('*').eq('user_id', user_id).eq('handle', handle).limit(1).execute()
|
69
|
+
if not result or not result.data or len(result.data) == 0:
|
70
|
+
print(f"No tool found with the given handle {handle} and user ID {user_id}: {result}")
|
71
|
+
return None
|
69
72
|
tool_dict = result.data[0]
|
70
73
|
tool = ToolModel(**tool_dict)
|
71
74
|
return tool
|
@@ -8,9 +8,9 @@ fyodorov_llm_agents/models/llm_service.py,sha256=35bS0RFXJhJUSjge-v4u5cftn_MT-Cm
|
|
8
8
|
fyodorov_llm_agents/providers/provider_model.py,sha256=OyCK6WMRhyElsp88gILg0wso-OPHI7f55gEeypsJ7O0,957
|
9
9
|
fyodorov_llm_agents/providers/provider_service.py,sha256=GST-NLV8aLPsvapQEvgT_qHGYu7IpS5Xsut60XFmD-g,5865
|
10
10
|
fyodorov_llm_agents/tools/mcp_tool_model.py,sha256=LuQE-mu5zKmiMmWOOKETAVkjwGsHSbcDbB57piEAACU,5025
|
11
|
-
fyodorov_llm_agents/tools/mcp_tool_service.py,sha256=
|
11
|
+
fyodorov_llm_agents/tools/mcp_tool_service.py,sha256=uA2xskCqNlibcaG0xLzSP4LuH6OMvgEo3VTSoCV98Po,5744
|
12
12
|
fyodorov_llm_agents/tools/tool.py,sha256=HyOk0X_3XE23sa8J-8UZx657tJ0sxwZWMbA4OPxXU6E,7940
|
13
|
-
fyodorov_llm_agents-0.4.
|
14
|
-
fyodorov_llm_agents-0.4.
|
15
|
-
fyodorov_llm_agents-0.4.
|
16
|
-
fyodorov_llm_agents-0.4.
|
13
|
+
fyodorov_llm_agents-0.4.9.dist-info/METADATA,sha256=4jmrBJLO6ec_v7sp8inq5ZozkUY17xUyF9oeh_pDQNM,550
|
14
|
+
fyodorov_llm_agents-0.4.9.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
15
|
+
fyodorov_llm_agents-0.4.9.dist-info/top_level.txt,sha256=4QOslsBp8Gh7ng25DceA7fHp4KguTIdAxwURz97gH-g,20
|
16
|
+
fyodorov_llm_agents-0.4.9.dist-info/RECORD,,
|
File without changes
|