rasa-pro 3.14.0rc2__py3-none-any.whl → 3.14.0rc3__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.

Files changed (69) hide show
  1. rasa/agents/protocol/a2a/a2a_agent.py +50 -42
  2. rasa/agents/utils.py +27 -5
  3. rasa/agents/validation.py +7 -9
  4. rasa/api.py +1 -2
  5. rasa/builder/copilot/copilot.py +37 -1
  6. rasa/builder/copilot/models.py +43 -49
  7. rasa/builder/copilot/prompts/copilot_system_prompt.jinja2 +33 -12
  8. rasa/builder/copilot/prompts/latest_user_message_context_prompt.jinja2 +59 -29
  9. rasa/builder/copilot/telemetry.py +8 -0
  10. rasa/builder/service.py +1 -0
  11. rasa/cli/dialogue_understanding_test.py +1 -0
  12. rasa/cli/e2e_test.py +1 -0
  13. rasa/cli/inspect.py +1 -0
  14. rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/feedback.yml +46 -0
  15. rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/goodbye.yml +9 -0
  16. rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/help.yml +8 -0
  17. rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/human_handoff.yml +41 -0
  18. rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/patterns.yml +32 -0
  19. rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/show_faqs.yml +8 -0
  20. rasa/cli/project_templates/telco/data/network/flow_solve_internet_issue.yml +2 -2
  21. rasa/cli/project_templates/telco/domain/network/solve_internet_issue.yml +1 -2
  22. rasa/cli/project_templates/telco/tests/e2e_test_cases/with_stub/network/solve_internet_not_slow.yml +33 -0
  23. rasa/cli/project_templates/telco/tests/e2e_test_cases/with_stub/network/solve_internet_slow.yml +47 -0
  24. rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/hello.yml +8 -0
  25. rasa/cli/run.py +1 -5
  26. rasa/cli/shell.py +1 -0
  27. rasa/cli/train.py +1 -0
  28. rasa/cli/validation/bot_config.py +7 -2
  29. rasa/core/available_agents.py +65 -55
  30. rasa/core/config/available_endpoints.py +0 -3
  31. rasa/core/config/configuration.py +36 -1
  32. rasa/core/policies/flows/agent_executor.py +16 -8
  33. rasa/dialogue_understanding/commands/start_flow_command.py +10 -3
  34. rasa/dialogue_understanding/commands/utils.py +15 -4
  35. rasa/dialogue_understanding/generator/llm_based_command_generator.py +4 -2
  36. rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py +4 -4
  37. rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py +4 -4
  38. rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py +2 -2
  39. rasa/dialogue_understanding_test/du_test_runner.py +2 -2
  40. rasa/e2e_test/e2e_test_runner.py +2 -2
  41. rasa/shared/agents/auth/auth_strategy/oauth2_auth_strategy.py +10 -4
  42. rasa/shared/agents/auth/constants.py +1 -0
  43. rasa/shared/core/flows/steps/call.py +2 -2
  44. rasa/telemetry.py +3 -3
  45. rasa/validator.py +37 -0
  46. rasa/version.py +1 -1
  47. {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc3.dist-info}/METADATA +13 -2
  48. {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc3.dist-info}/RECORD +68 -60
  49. rasa/cli/project_templates/telco/tests/e2e_test_cases/network/solve_internet_issue.yml +0 -57
  50. /rasa/cli/project_templates/{finance/tests/e2e_test_cases → basic/tests/e2e_test_cases/without_stub}/general/hello.yml +0 -0
  51. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{accounts → without_stub/accounts}/check_balance.yml +0 -0
  52. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{accounts → without_stub/accounts}/download_statements.yml +0 -0
  53. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{cards → without_stub/cards}/block_card.yml +0 -0
  54. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/bot_challenge.yml +0 -0
  55. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/feedback.yml +0 -0
  56. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/goodbye.yml +0 -0
  57. /rasa/cli/project_templates/{telco/tests/e2e_test_cases → finance/tests/e2e_test_cases/without_stub}/general/hello.yml +0 -0
  58. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/human_handoff.yml +0 -0
  59. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/patterns.yml +0 -0
  60. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{transfers → without_stub/transfers}/transfer_money.yml +0 -0
  61. /rasa/cli/project_templates/telco/tests/e2e_test_cases/{billing → without_stub/billing}/understand_bill.yml +0 -0
  62. /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/bot_challenge.yml +0 -0
  63. /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/feedback.yml +0 -0
  64. /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/goodbye.yml +0 -0
  65. /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/human_handoff.yml +0 -0
  66. /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/patterns.yml +0 -0
  67. {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc3.dist-info}/NOTICE +0 -0
  68. {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc3.dist-info}/WHEEL +0 -0
  69. {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc3.dist-info}/entry_points.txt +0 -0