Skip to content

Commit 4762076

Browse files
Merge pull request #639 from microsoft/dev
fix: merge from dev to main
2 parents b57a10f + 6f03144 commit 4762076

File tree

5 files changed

+24
-12
lines changed

5 files changed

+24
-12
lines changed

.github/workflows/broken-links-checker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: lycheeverse/[email protected]
3838
with:
3939
args: >
40-
--verbose --exclude-mail --no-progress --exclude ^https?://
40+
--verbose --no-progress --exclude ^https?://
4141
${{ steps.changed-markdown-files.outputs.all_changed_files }}
4242
failIfEmpty: false
4343
env:
@@ -50,7 +50,7 @@ jobs:
5050
uses: lycheeverse/[email protected]
5151
with:
5252
args: >
53-
--verbose --exclude-mail --no-progress --exclude ^https?://
53+
--verbose --no-progress --exclude ^https?://
5454
'**/*.md'
5555
failIfEmpty: false
5656
env:

documents/DeploymentGuide.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -243,15 +243,7 @@ Follow steps in [Local Debugging Setup](./LocalDebuggingSetup.md) to configure y
243243
244244
## Sample Questions
245245
246-
To help you get started, here are some **Sample Questions** you can ask in the app:
247-
248-
- Total number of calls by date for the last 7 days
249-
- Show average handling time by topics in minutes
250-
- What are the top 7 challenges users reported?
251-
- Give a summary of billing issues
252-
- When customers call in about unexpected charges, what types of charges are they seeing?
253-
254-
These questions serve as a great starting point to explore insights from the data.
246+
To help you get started, here are some [Sample Questions](./SampleQuestions.md) you can follow to try it out.
255247
256248
## Next Steps:
257249
Now that you've completed your deployment, you can start using the solution. Try out these things to start getting familiar with the capabilities:
231 KB
Loading

documents/SampleQuestions.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Sample Questions
2+
3+
To help you get started, here are some **Sample Prompts** you can ask in the app:
4+
5+
> Note: To avoid rate limit errors, pause for 2–3 seconds after a response before submitting the next question. <br>
6+
Average response time is 8–14 seconds.
7+
8+
1. Ask the following questions:
9+
- Total number of calls by date for last 7 days.
10+
- To view the response data as a graph, just prompt "Generate Chart".
11+
- Show average handling time by topics in minutes.
12+
- What are top 7 challenges user reported.
13+
- Give a summary of billing issues.
14+
- When customers call in about unexpected charges, what types of charges are they seeing?
15+
16+
17+
![GenerateDraft](Images/Samplequestions1.png)
18+
19+
20+
This structured approach helps users quickly extract actionable insights from client conversations to help users understand priorities, trends, and opportunities for better engagement.

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1432,7 +1432,7 @@ module webServerFarm 'br/public:avm/res/web/serverfarm:0.5.0' = {
14321432
diagnosticSettings: enableMonitoring ? [{ workspaceResourceId: logAnalyticsWorkspaceResourceId }] : null
14331433
// WAF aligned configuration for Scalability
14341434
skuName: enableScalability || enableRedundancy ? 'P1v3' : 'B3'
1435-
skuCapacity: enableScalability ? 3 : 1
1435+
skuCapacity: enableScalability ? 1 : 1
14361436
// WAF aligned configuration for Redundancy
14371437
zoneRedundant: enableRedundancy ? true : false
14381438
}

0 commit comments

Comments
 (0)