File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -472,8 +472,8 @@ Conversation options are represented as features. They can be configured from Ap
472
472
473
473
| Name | Description | Type | Default |
474
474
|-|-|-|-|
475
- | `answer_hard_timeout_sec` | The hard timeout for the bot answer in secs . | `int` | 60 |
476
- | `answer_soft_timeout_sec` | The soft timeout for the bot answer in secs . | `int` | 30 |
475
+ | `answer_hard_timeout_sec` | Time waiting the LLM before aborting the answer with an error message . | `int` | 40 |
476
+ | `answer_soft_timeout_sec` | Time waiting the LLM before sending a waiting message . | `int` | 15 |
477
477
| `callback_timeout_hour` | The timeout for a callback in hours. Set 0 to disable. | `int` | 3 |
478
478
| `phone_silence_timeout_sec` | Amount of silence in secs to trigger a warning message from the assistant. | `int` | 20 |
479
479
| `recognition_retry_max` | TThe maximum number of retries for voice recognition. Minimum of 1. | `int` | 3 |
Original file line number Diff line number Diff line change 17
17
18
18
async def answer_hard_timeout_sec () -> int :
19
19
"""
20
- The hard timeout for the bot answer in secs .
20
+ Time waiting the LLM before aborting the answer with an error message .
21
21
"""
22
22
return await _default (
23
- default = 60 ,
23
+ default = 40 ,
24
24
key = "answer_hard_timeout_sec" ,
25
25
type_res = int ,
26
26
)
27
27
28
28
29
29
async def answer_soft_timeout_sec () -> int :
30
30
"""
31
- The soft timeout for the bot answer in secs .
31
+ Time waiting the LLM before sending a waiting message .
32
32
"""
33
33
return await _default (
34
- default = 30 ,
34
+ default = 15 ,
35
35
key = "answer_soft_timeout_sec" ,
36
36
type_res = int ,
37
37
)
Original file line number Diff line number Diff line change @@ -949,8 +949,8 @@ resource assignmentAppConfigurationDataReader 'Microsoft.Authorization/roleAssig
949
949
950
950
resource configValues 'Microsoft.AppConfiguration/configurationStores/keyValues@2023-03-01' = [
951
951
for item in items ({
952
- answer_hard_timeout_sec : 180
953
- answer_soft_timeout_sec : 30
952
+ answer_hard_timeout_sec : 40
953
+ answer_soft_timeout_sec : 15
954
954
callback_timeout_hour : 3
955
955
phone_silence_timeout_sec : 20
956
956
recognition_retry_max : 2
You can’t perform that action at this time.
0 commit comments