Skip to content

Commit 394c745

Browse files
authored
Merge pull request #547 from AIAlchemyForge/patch-1
Update dataverse-python-agentic-workflows.instructions.md
2 parents cd3a98f + a179d17 commit 394c745

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

instructions/dataverse-python-agentic-workflows.instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ class SimpleDataAgent:
485485
"""Agent function: Check table health."""
486486
try:
487487
tables = self.client.list_tables()
488-
matching = [t for t in tables if t['table_logical_name'] == table_name]
488+
matching = [t for t in tables if t['LogicalName'] == table_name]
489489

490490
if not matching:
491491
return {"status": "error", "message": f"Table {table_name} not found"}

0 commit comments

Comments
 (0)