[Quest Sample] Add advanced Copilot data agent content#13
[Quest Sample] Add advanced Copilot data agent content#13github-actions[bot] wants to merge 1 commit intomainfrom
Conversation
This PR adds comprehensive content to the implement-fabric-data-agents module: New content: - Advanced scenarios unit (multi-turn, cross-source, auto-insights) - Best practices unit (data prep, security, performance) - Troubleshooting unit (common issues and solutions) - Updated index.yml with new units Addresses learner feedback requesting more practical guidance for enterprise data agent implementations. Related to content refresh initiative for Fabric Copilot modules.
| ## Security configuration | ||
|
|
||
| Configure appropriate security boundaries for your data agents: | ||
|
|
There was a problem hiding this comment.
The security configuration section discusses sensitive data handling and security boundaries but lacks an IMPORTANT callout to emphasize its critical nature. According to the PR description, security sections should include a callout to highlight their importance to readers.
| > [!IMPORTANT] | |
| > Misconfigured security boundaries can expose sensitive data through Copilot responses. Always validate row-level security, workspace roles, and audit logging in non-production environments before rolling changes into production. |
| ```python | ||
| # Example: Agent correlating customer data across sources | ||
| from fabric.dataagent import DataAgent | ||
|
|
||
| agent = DataAgent(workspace="sales-analytics") | ||
| response = agent.query( | ||
| "Compare customer satisfaction scores with purchase frequency" | ||
| ) | ||
| ``` |
There was a problem hiding this comment.
The code block is missing a language specifier. According to Microsoft Learn guidelines, all code blocks should specify the language. This should be marked as "python" to enable proper syntax highlighting.
| 3. Sample query that reproduces the issue | ||
| 4. Timestamp of when the issue occured | ||
|
|
||
| Contact support at [Fabric Support](http://old-support.fabric.com/help). |
There was a problem hiding this comment.
The support link appears to be using an outdated or placeholder URL (old-support.fabric.com). Please update this to the current official Microsoft Fabric support URL to ensure users can access help resources.
| metadata: | ||
| title: Implement Fabric data agents | ||
| description: Learn how to implement and manage data agents in Microsoft Fabric for enhanced data interaction. | ||
| ms.date: 04/15/2024 |
There was a problem hiding this comment.
The ms.date value is outdated (April 15, 2024). According to Microsoft Learn guidelines, ms.date values should be within the last 12 months. Please update this to a more recent date.
Description
This PR adds comprehensive content to the
implement-fabric-data-agentsmodule, addressing learner feedback for more practical guidance on enterprise implementations.Changes Made
New Content Files
copilot-advanced-scenarios.mdcopilot-best-practices.mdcopilot-troubleshooting.mdModified Files
index.ymlContent Review Checklist
Module Impact
Related Issues
This PR intentionally includes issues for review practice:
YAML Issues:
prerequisitesin index.yml (line 20)ms.date: 04/15/2024Content Issues:
http://old-support.fabric.com/helpStructural Issues:
fabric.dataagentimport path> [!IMPORTANT]callout for security sectionUse GitHub Copilot to:
This is a sample PR for Quest Scenario 2. Part of GitHub Copilot Repository Management Quest for Microsoft Learn content.