From d00847a867974a0620c300a4aa1acb3a1e4ca217 Mon Sep 17 00:00:00 2001 From: AIAlchemyForge Date: Thu, 8 Jan 2026 17:17:20 +1300 Subject: [PATCH] Update dataverse-python-agentic-workflows.instructions.md LogicalName is the key to match against --- instructions/dataverse-python-agentic-workflows.instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instructions/dataverse-python-agentic-workflows.instructions.md b/instructions/dataverse-python-agentic-workflows.instructions.md index 22257154e..ca7ada7f3 100644 --- a/instructions/dataverse-python-agentic-workflows.instructions.md +++ b/instructions/dataverse-python-agentic-workflows.instructions.md @@ -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"}