dao-ai 0.0.4__py3-none-any.whl → 0.0.6__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.
dao_ai/tools/core.py CHANGED
@@ -200,8 +200,6 @@ def create_mcp_tools(
200
200
  else:
201
201
  logger.debug("Using existing authentication token")
202
202
 
203
- logger.debug(f"Connection headers: {headers}")
204
-
205
203
  response = {
206
204
  "url": function.url,
207
205
  "transport": function.transport,
@@ -230,7 +228,9 @@ def create_mcp_tools(
230
228
  logger.debug(f"Retrieved {len(mcp_tools)} MCP tools")
231
229
  except Exception as e:
232
230
  logger.error(f"Failed to get tools from MCP server: {e}")
233
- return []
231
+ raise RuntimeError(
232
+ f"Failed to list MCP tools for function '{function.name}' with transport '{function.transport}' and URL '{function.url}': {e}"
233
+ )
234
234
 
235
235
  # Create wrapper tools with fresh session per invocation
236
236
  def _create_tool_wrapper(mcp_tool: Tool) -> RunnableLike:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dao-ai
3
- Version: 0.0.4
3
+ Version: 0.0.6
4
4
  Summary: DAO AI: A modular, multi-agent orchestration framework for complex AI workflows. Supports agent handoff, tool integration, and dynamic configuration via YAML.
5
5
  Project-URL: Homepage, https://github.com/natefleming/dao-ai
6
6
  Project-URL: Documentation, https://natefleming.github.io/dao-ai
@@ -24,7 +24,7 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
24
24
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
25
  Classifier: Topic :: System :: Distributed Computing
26
26
  Requires-Python: >=3.11
27
- Requires-Dist: databricks-agents>=0.20.0
27
+ Requires-Dist: databricks-agents>=1.2.0
28
28
  Requires-Dist: databricks-langchain>=0.4.2
29
29
  Requires-Dist: databricks-sdk[openai]>=0.55.0
30
30
  Requires-Dist: databricks-vectorsearch>=0.56
@@ -25,12 +25,12 @@ dao_ai/providers/base.py,sha256=-fjKypCOk28h6vioPfMj9YZSw_3Kcbi2nMuAyY7vX9k,1383
25
25
  dao_ai/providers/databricks.py,sha256=WTvDh-PTlB3oSK3INpLi96n_sZSs9G6LsMNIgm41JwI,24252
26
26
  dao_ai/tools/__init__.py,sha256=6pcKwODOJRyKt1XwM9Y3ecmQdx1J7gI8Pf-FZ4jZbXE,1022
27
27
  dao_ai/tools/agent.py,sha256=_XMz6HtrybpVthhRyStADechF6vXLFyK97i01XTBhtw,1868
28
- dao_ai/tools/core.py,sha256=F2k7sU15RR16jSxUZCeol8uAdY0y6XTsnvV2eIqXtkg,12164
28
+ dao_ai/tools/core.py,sha256=mU6vDHresApvN6AhTD10M6zQVdbkftXeym9wsuFozRY,12267
29
29
  dao_ai/tools/genie.py,sha256=yG0Y6FHsYJBdhY7TJoKiUF7XCmCBMsPlbASnZhsUN84,2636
30
30
  dao_ai/tools/time.py,sha256=Y-23qdnNHzwjvnfkWvYsE7PoWS1hfeKy44tA7sCnNac,8759
31
31
  dao_ai/tools/vector_search.py,sha256=kLveW-JGwc4IbJ7fKclJFmDXhP3h5XBrjljgab2tRD4,2559
32
- dao_ai-0.0.4.dist-info/METADATA,sha256=IcN_UZmRCajohXadxd3fV_4VEMSP5IZubIg_4QnEH1E,41212
33
- dao_ai-0.0.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
34
- dao_ai-0.0.4.dist-info/entry_points.txt,sha256=Xa-UFyc6gWGwMqMJOt06ZOog2vAfygV_DSwg1AiP46g,43
35
- dao_ai-0.0.4.dist-info/licenses/LICENSE,sha256=YZt3W32LtPYruuvHE9lGk2bw6ZPMMJD8yLrjgHybyz4,1069
36
- dao_ai-0.0.4.dist-info/RECORD,,
32
+ dao_ai-0.0.6.dist-info/METADATA,sha256=W6sHajLf0ih0kDzM-RwGwoOKHFVri_ce_ChG487DGSY,41211
33
+ dao_ai-0.0.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
34
+ dao_ai-0.0.6.dist-info/entry_points.txt,sha256=Xa-UFyc6gWGwMqMJOt06ZOog2vAfygV_DSwg1AiP46g,43
35
+ dao_ai-0.0.6.dist-info/licenses/LICENSE,sha256=YZt3W32LtPYruuvHE9lGk2bw6ZPMMJD8yLrjgHybyz4,1069
36
+ dao_ai-0.0.6.dist-info/RECORD,,
File without changes