Merge pull request #547 from AIAlchemyForge/patch-1

Update dataverse-python-agentic-workflows.instructions.md
This commit is contained in:
Matt Soucoup
2026-01-09 13:14:00 -10:00
committed by GitHub

View File

@@ -485,7 +485,7 @@ class SimpleDataAgent:
"""Agent function: Check table health."""
try:
tables = self.client.list_tables()
matching = [t for t in tables if t['table_logical_name'] == table_name]
matching = [t for t in tables if t['LogicalName'] == table_name]
if not matching:
return {"status": "error", "message": f"Table {table_name} not found"}