Forum Discussion
Preparing data for data agent
- 11 months ago
Hi Wickjone,
Thank you for reaching out to the Microsoft fabric community forum.
The data agent can read relationships defined in your lakehouse's semantic model via its schema. If it's struggling, ensure clear column names and permissions. Adding specific instructions in the agent's configuration can clarify joins, like: Table 'Sales' joins to 'Customers' on CustomerID (LEFT JOIN, one-to-many).Instructions are usually sufficient and more flexible than a single summary table. In the agent's settings, add table descriptions and Join logic. Example queries to guide the agent. A summary table is only needed for very complex scenarios.
The agent doesn't natively support partial matches (e.g: "Amy" for "Amy Burns"). Add instructions like: When asked for a partial name like "Amy", use SELECT * FROM Customers WHERE FullName LIKE '%Amy%'. Include example queries to train the agent.
Best regards,
Ganesh Singamshetty.
Just wanted to share my two cents i tried fabric data agent by providing relation in the Fabric data agent itself and it worked as expected. In some cases you will not be able to define each relation in semantic model but logically you can give instrction in Fabric data agent and it will work. I hope this might help you.