rasa-pro 3.14.0rc2__py3-none-any.whl → 3.14.0rc4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rasa-pro might be problematic. Click here for more details.
- rasa/agents/protocol/a2a/a2a_agent.py +50 -42
- rasa/agents/protocol/mcp/mcp_base_agent.py +15 -1
- rasa/agents/utils.py +27 -5
- rasa/agents/validation.py +64 -13
- rasa/api.py +1 -2
- rasa/builder/copilot/constants.py +4 -0
- rasa/builder/copilot/copilot.py +37 -1
- rasa/builder/copilot/copilot_templated_message_provider.py +23 -0
- rasa/builder/copilot/models.py +43 -49
- rasa/builder/copilot/prompts/copilot_system_prompt.jinja2 +33 -12
- rasa/builder/copilot/prompts/latest_user_message_context_prompt.jinja2 +59 -29
- rasa/builder/copilot/telemetry.py +8 -0
- rasa/builder/copilot/templated_messages/copilot_templated_responses.yml +3 -0
- rasa/builder/copilot/templated_messages/copilot_welcome_messages.yml +56 -0
- rasa/builder/jobs.py +162 -5
- rasa/builder/models.py +3 -0
- rasa/builder/service.py +1 -0
- rasa/cli/dialogue_understanding_test.py +1 -0
- rasa/cli/e2e_test.py +1 -0
- rasa/cli/inspect.py +1 -0
- rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/feedback.yml +46 -0
- rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/goodbye.yml +9 -0
- rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/help.yml +8 -0
- rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/human_handoff.yml +41 -0
- rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/patterns.yml +32 -0
- rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/show_faqs.yml +8 -0
- rasa/cli/project_templates/telco/data/network/flow_solve_internet_issue.yml +2 -2
- rasa/cli/project_templates/telco/domain/network/solve_internet_issue.yml +1 -2
- rasa/cli/project_templates/telco/tests/e2e_test_cases/with_stub/network/solve_internet_not_slow.yml +33 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/with_stub/network/solve_internet_slow.yml +47 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/hello.yml +8 -0
- rasa/cli/run.py +1 -5
- rasa/cli/shell.py +1 -0
- rasa/cli/train.py +1 -0
- rasa/cli/validation/bot_config.py +9 -2
- rasa/core/available_agents.py +65 -55
- rasa/core/config/available_endpoints.py +6 -3
- rasa/core/config/configuration.py +36 -1
- rasa/core/policies/flows/agent_executor.py +16 -8
- rasa/dialogue_understanding/commands/start_flow_command.py +10 -3
- rasa/dialogue_understanding/commands/utils.py +15 -4
- rasa/dialogue_understanding/generator/llm_based_command_generator.py +4 -2
- rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py +4 -4
- rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py +4 -4
- rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py +2 -2
- rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml +22 -20
- rasa/dialogue_understanding_test/du_test_runner.py +2 -2
- rasa/e2e_test/e2e_test_runner.py +2 -2
- rasa/engine/validation.py +6 -2
- rasa/shared/agents/auth/auth_strategy/oauth2_auth_strategy.py +10 -4
- rasa/shared/agents/auth/constants.py +1 -0
- rasa/shared/agents/auth/utils.py +85 -0
- rasa/shared/constants.py +3 -0
- rasa/shared/core/flows/steps/call.py +2 -2
- rasa/shared/utils/llm.py +33 -0
- rasa/telemetry.py +3 -3
- rasa/utils/pypred.py +7 -0
- rasa/validator.py +127 -2
- rasa/version.py +1 -1
- {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc4.dist-info}/METADATA +19 -7
- {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc4.dist-info}/RECORD +81 -71
- rasa/cli/project_templates/telco/tests/e2e_test_cases/network/solve_internet_issue.yml +0 -57
- /rasa/cli/project_templates/{finance/tests/e2e_test_cases → basic/tests/e2e_test_cases/without_stub}/general/hello.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{accounts → without_stub/accounts}/check_balance.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{accounts → without_stub/accounts}/download_statements.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{cards → without_stub/cards}/block_card.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/bot_challenge.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/feedback.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/goodbye.yml +0 -0
- /rasa/cli/project_templates/{telco/tests/e2e_test_cases → finance/tests/e2e_test_cases/without_stub}/general/hello.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/human_handoff.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/patterns.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{transfers → without_stub/transfers}/transfer_money.yml +0 -0
- /rasa/cli/project_templates/telco/tests/e2e_test_cases/{billing → without_stub/billing}/understand_bill.yml +0 -0
- /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/bot_challenge.yml +0 -0
- /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/feedback.yml +0 -0
- /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/goodbye.yml +0 -0
- /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/human_handoff.yml +0 -0
- /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/patterns.yml +0 -0
- {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc4.dist-info}/NOTICE +0 -0
- {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc4.dist-info}/WHEEL +0 -0
- {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc4.dist-info}/entry_points.txt +0 -0
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
test_cases:
|
|
2
|
-
# one of these test cases will fail since the speed test will be randomly selected
|
|
3
|
-
- test_case: Solving Internet slow issue
|
|
4
|
-
steps:
|
|
5
|
-
- user: "Hey, my internet is very slow. What's going on?"
|
|
6
|
-
assertions:
|
|
7
|
-
- flow_started: "fix_internet_slow"
|
|
8
|
-
- bot_uttered:
|
|
9
|
-
utter_name: "utter_acknowledge_issue"
|
|
10
|
-
- action_executed: action_sleep_few_sec
|
|
11
|
-
- flow_started: "run_diagnostics"
|
|
12
|
-
- bot_uttered:
|
|
13
|
-
utter_name: "utter_communicate_run_diagnosticss"
|
|
14
|
-
- action_executed: "actions_run_speed_test"
|
|
15
|
-
- bot_uttered:
|
|
16
|
-
utter_name: "utter_acknowledge_speed_test_not_good"
|
|
17
|
-
- action_executed: "action_sleep_few_sec"
|
|
18
|
-
- bot_uttered:
|
|
19
|
-
utter_name: "utter_propose_reboot_router_solution"
|
|
20
|
-
- action_executed: "action_sleep_few_sec"
|
|
21
|
-
- flow_started: "reboot_router"
|
|
22
|
-
- bot_uttered:
|
|
23
|
-
utter_name: "utter_explain_reboot_router"
|
|
24
|
-
- bot_uttered:
|
|
25
|
-
utter_name: "utter_ask_reboot_router"
|
|
26
|
-
buttons:
|
|
27
|
-
- title: "Done"
|
|
28
|
-
payload: "/SetSlots(reboot_router=True)"
|
|
29
|
-
- title: "Facing a problem"
|
|
30
|
-
payload: "/SetSlots(reboot_router=False)"
|
|
31
|
-
- user: "/SetSlots(reboot_router=False)"
|
|
32
|
-
assertions:
|
|
33
|
-
- slot_was_set:
|
|
34
|
-
- name: "reboot_router"
|
|
35
|
-
value: False
|
|
36
|
-
- flow_started: "human_handoff"
|
|
37
|
-
#
|
|
38
|
-
- test_case: Solving Internet issue not slow
|
|
39
|
-
steps:
|
|
40
|
-
- user: "Hey, my internet is very slow. What's going on?"
|
|
41
|
-
assertions:
|
|
42
|
-
- flow_started: "fix_internet_slow"
|
|
43
|
-
- bot_uttered:
|
|
44
|
-
utter_name: "utter_acknowledge_issue"
|
|
45
|
-
- action_executed: action_sleep_few_sec
|
|
46
|
-
- flow_started: "run_diagnostics"
|
|
47
|
-
- bot_uttered:
|
|
48
|
-
utter_name: "utter_speed_network_not_issue"
|
|
49
|
-
- action_executed: "actions_run_speed_test"
|
|
50
|
-
- bot_uttered:
|
|
51
|
-
utter_name: "utter_propose_other_solutions"
|
|
52
|
-
- action_executed: "action_sleep_few_sec"
|
|
53
|
-
- bot_uttered:
|
|
54
|
-
utter_name: "utter_ask_more_help_needed"
|
|
55
|
-
- user: "/SetSlots(more_help_needed=True)"
|
|
56
|
-
assertions:
|
|
57
|
-
- flow_started: "human_handoff"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/rasa/cli/project_templates/finance/tests/e2e_test_cases/{cards → without_stub/cards}/block_card.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/feedback.yml
RENAMED
|
File without changes
|
/rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/goodbye.yml
RENAMED
|
File without changes
|
|
File without changes
|
/rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/patterns.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|