Skip to content

Commit 14eed6a

Browse files
Merge pull request #613 from microsoft/psl-samplequestion-doc
docs: Added Sample Questions page and reference file
2 parents c22b2d3 + 4b51ba3 commit 14eed6a

File tree

4 files changed

+83
-2
lines changed

4 files changed

+83
-2
lines changed

docs/DeploymentGuide.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,6 @@ Once you've opened the project in [Codespaces](#github-codespaces), [Dev Contain
286286

287287
10. If you are done trying out the application, you can delete the resources by running `azd down`.
288288

289-
290289
### 🛠️ Troubleshooting
291290
If you encounter any issues during the deployment process, please refer [troubleshooting](../docs/TroubleShootingSteps.md) document for detailed steps and solutions.
292291

@@ -497,3 +496,7 @@ To debug the python server in the frontend directory (frontend_server.py) and re
497496
"jinja": true
498497
}
499498
```
499+
## Next Steps
500+
Now that you've completed your deployment, you can start using the solution.
501+
502+
To help you get started, here are some [Sample Questions](./SampleQuestions.md) you can follow to try it out.

docs/SampleQuestions.md

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
2+
# Sample Workflow
3+
4+
To help you get started, here are some **Sample Prompts** you can ask in the app:
5+
6+
## **Teams**
7+
Select the Team option from the top-left section, then click Continue after choosing the desired team.
8+
9+
By default, three teams are available after running the post-deployment scripts:
10+
- Retail
11+
- HR
12+
- Marketing
13+
14+
![Application](images/samplequestion_1.png)
15+
16+
### **Retail Scenario**
17+
If you select the Retail team, follow the prompts below.
18+
19+
>**Agents Used:** Customer, Order, Analysis Recommendation
20+
21+
The Retail scenario enables users to explore and access information related to the Retail team and its associated data. Key activities include:
22+
23+
_Sample operation:_
24+
- Task: From the Quick Tasks, select **"Satisfaction Plan"** and submit it.
25+
> _Note: Average response time is 15–20 seconds._ <br>
26+
> _Observe: An analysis of Emily Thompson’s satisfaction with Contoso has been generated. It provides a proposed plan consisting of four or more steps._
27+
28+
- Task: Click **"Approve Task Plan"** Button
29+
> _Note: Average response time is 01 minute 15 seconds._ <br>
30+
> _Observe: It goes into "Thinking Process", "Processing your plan" and "coordinating with AI Agents"._ <br>
31+
> _Review the output._
32+
33+
### **Product Marketing Scenario**
34+
If you select the Marketing team, follow the prompts below.
35+
36+
>**Agents Used:** Product, Marketing , Proxy
37+
38+
The Product Marketing Scenario allows users to explore and retrieve information related to Marketing and specific product. Key tasks include:
39+
40+
_Sample operation:_
41+
- Task: Switch to **"Product Marketing Team"** from the top left section and click **"Continue"** button.
42+
- Task: From the Quick Tasks, select **"Draft a press release"** and submit it.
43+
> _Note: Average response time is 15–20 seconds._ <br>
44+
> _Observe: It will trigger the "Generating Plan Action" and give the Proposed Plan with 4 or more Steps_
45+
- Task: Click on **"Approve Task Plan"** Button
46+
> _Note: Average response time is around 01 minute._ <br>
47+
> _Observe: It goes into "Thinking Process" and observe a spinner "Processing your plan and coordinating with AI Agents"._ <br>
48+
> _Review the output._
49+
50+
### **HR Onboarding Scenario**
51+
If you select the HR team, follow the prompts below.
52+
53+
>**Agents Used:** HR Helper, Technical support , Proxy
54+
55+
The HR Onboarding Scenario allows users to explore and retrieve information related to OnBoarding the Employee. Key tasks include:
56+
57+
_Sample operation:_
58+
59+
- Task: Switch to the **"Human Resources Team"** from the top left section and click **"Continue"**
60+
- Task: From the Quick Tasks, select **"Onboard New Employee"** and submit it.
61+
62+
> _Note: Average response time is 15–20 seconds._ <br>
63+
> _Observe: If it asks for additional clarification (Human in the loop) Please provide this information irrespective of what specific information is asked. This will prevent agent for asking for multiple clarifications_
64+
65+
```sh
66+
department: hr, role: manager, start date: 11/23/2025, orientation date: 11/25/2025, location: onsite, email: js@contoso.com, mentor: Jim Shorts, benefits package: standard, ID Card: yes, salary: 70000, Laptop : Dell 14 Plus
67+
```
68+
> _Observe: It will trigger "Generating Plan Action" and "Proposed Plan" with 4 or more Steps_
69+
</br>
70+
71+
- Task: Click on **"Approve Task Plan"** Button.
72+
> _Note: Average response time is around 01 minute 15 seconds._ <br>
73+
> _Observe: It goes into "Thinking Process", "Processing your plan" and "coordinating with AI Agents"_ <br>
74+
> _Review the output._
75+
76+
77+
This structured approach ensures that users receive automated, AI-coordinated task execution and intelligent responses from specialized agents.

docs/images/samplequestion_1.png

50.9 KB
Loading

src/tests/agents/interactive_test_harness/reasoning_agent_interactive.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
from pathlib import Path
77

88
# Add the backend path to sys.path so we can import v3 modules
9-
backend_path = Path(__file__).parent.parent.parent / "backend"
9+
10+
backend_path = Path(__file__).parent.parent.parent.parent / "backend"
1011
sys.path.insert(0, str(backend_path))
1112

1213
from v3.magentic_agents.models.agent_models import MCPConfig, SearchConfig

0 commit comments

Comments
 (0)