rasa-pro 3.9.17__tar.gz → 3.10.3__tar.gz

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 (735) hide show
  1. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/PKG-INFO +25 -51
  2. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/README.md +5 -37
  3. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/pyproject.toml +44 -22
  4. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/__init__.py +1 -2
  5. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/__main__.py +5 -0
  6. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/anonymization/anonymization_rule_executor.py +2 -2
  7. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/api.py +26 -22
  8. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/arguments/data.py +27 -2
  9. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/arguments/default_arguments.py +25 -3
  10. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/arguments/run.py +9 -9
  11. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/arguments/train.py +2 -0
  12. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/data.py +70 -8
  13. rasa_pro-3.10.3/rasa/cli/e2e_test.py +261 -0
  14. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/interactive.py +1 -0
  15. rasa_pro-3.10.3/rasa/cli/llm_fine_tuning.py +395 -0
  16. {rasa_pro-3.9.17/rasa/cli/project_templates/tutorial → rasa_pro-3.10.3/rasa/cli/project_templates/calm}/endpoints.yml +1 -1
  17. {rasa_pro-3.9.17/rasa/cli/project_templates/calm → rasa_pro-3.10.3/rasa/cli/project_templates/tutorial}/endpoints.yml +1 -1
  18. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/run.py +14 -13
  19. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/scaffold.py +10 -8
  20. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/train.py +8 -7
  21. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/utils.py +15 -0
  22. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/constants.py +7 -1
  23. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/action.py +98 -49
  24. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/action_run_slot_rejections.py +4 -1
  25. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/custom_action_executor.py +9 -6
  26. rasa_pro-3.10.3/rasa/core/actions/direct_custom_actions_executor.py +80 -0
  27. rasa_pro-3.10.3/rasa/core/actions/e2e_stub_custom_action_executor.py +68 -0
  28. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/grpc_custom_action_executor.py +2 -2
  29. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/http_custom_action_executor.py +6 -5
  30. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/agent.py +21 -17
  31. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/__init__.py +2 -0
  32. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/audiocodes.py +1 -16
  33. rasa_pro-3.10.3/rasa/core/channels/voice_aware/jambonz.py +103 -0
  34. rasa_pro-3.10.3/rasa/core/channels/voice_aware/jambonz_protocol.py +344 -0
  35. rasa_pro-3.10.3/rasa/core/channels/voice_aware/utils.py +20 -0
  36. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/constants.py +6 -1
  37. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/featurizers/single_state_featurizer.py +1 -22
  38. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/featurizers/tracker_featurizers.py +18 -115
  39. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/information_retrieval/faiss.py +7 -4
  40. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/information_retrieval/information_retrieval.py +8 -0
  41. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/information_retrieval/milvus.py +9 -2
  42. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/information_retrieval/qdrant.py +1 -1
  43. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/nlg/contextual_response_rephraser.py +32 -10
  44. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/nlg/summarize.py +4 -3
  45. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/enterprise_search_policy.py +100 -44
  46. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/flows/flow_executor.py +155 -98
  47. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/intentless_policy.py +52 -28
  48. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/ted_policy.py +33 -58
  49. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/unexpected_intent_policy.py +7 -15
  50. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/processor.py +15 -46
  51. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/run.py +5 -4
  52. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/tracker_store.py +8 -4
  53. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/utils.py +45 -56
  54. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/coexistence/llm_based_router.py +45 -12
  55. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/__init__.py +4 -0
  56. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/change_flow_command.py +0 -6
  57. rasa_pro-3.10.3/rasa/dialogue_understanding/commands/session_start_command.py +59 -0
  58. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/set_slot_command.py +1 -5
  59. rasa_pro-3.10.3/rasa/dialogue_understanding/commands/utils.py +38 -0
  60. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/constants.py +10 -3
  61. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/flow_retrieval.py +14 -5
  62. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/llm_based_command_generator.py +12 -2
  63. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py +106 -87
  64. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/nlu_command_adapter.py +28 -6
  65. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py +90 -37
  66. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml +15 -15
  67. rasa_pro-3.10.3/rasa/dialogue_understanding/patterns/session_start.py +37 -0
  68. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/processor/command_processor.py +13 -14
  69. rasa_pro-3.10.3/rasa/e2e_test/aggregate_test_stats_calculator.py +124 -0
  70. rasa_pro-3.10.3/rasa/e2e_test/assertions.py +1181 -0
  71. rasa_pro-3.10.3/rasa/e2e_test/assertions_schema.yml +106 -0
  72. rasa_pro-3.10.3/rasa/e2e_test/constants.py +31 -0
  73. rasa_pro-3.10.3/rasa/e2e_test/e2e_config.py +220 -0
  74. rasa_pro-3.10.3/rasa/e2e_test/e2e_config_schema.yml +26 -0
  75. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/e2e_test/e2e_test_case.py +131 -8
  76. rasa_pro-3.10.3/rasa/e2e_test/e2e_test_converter.py +363 -0
  77. rasa_pro-3.10.3/rasa/e2e_test/e2e_test_converter_prompt.jinja2 +70 -0
  78. rasa_pro-3.10.3/rasa/e2e_test/e2e_test_coverage_report.py +364 -0
  79. rasa_pro-3.10.3/rasa/e2e_test/e2e_test_result.py +54 -0
  80. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/e2e_test/e2e_test_runner.py +498 -73
  81. rasa_pro-3.10.3/rasa/e2e_test/e2e_test_schema.yml +181 -0
  82. rasa_pro-3.10.3/rasa/e2e_test/pykwalify_extensions.py +39 -0
  83. rasa_pro-3.10.3/rasa/e2e_test/stub_custom_action.py +70 -0
  84. rasa_pro-3.10.3/rasa/e2e_test/utils/e2e_yaml_utils.py +55 -0
  85. rasa_pro-3.10.3/rasa/e2e_test/utils/io.py +596 -0
  86. rasa_pro-3.10.3/rasa/e2e_test/utils/validation.py +80 -0
  87. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/recipes/default_components.py +0 -2
  88. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/storage/local_model_storage.py +0 -1
  89. rasa_pro-3.10.3/rasa/env.py +14 -0
  90. rasa_pro-3.10.3/rasa/llm_fine_tuning/annotation_module.py +241 -0
  91. rasa_pro-3.10.3/rasa/llm_fine_tuning/conversations.py +144 -0
  92. rasa_pro-3.10.3/rasa/llm_fine_tuning/llm_data_preparation_module.py +178 -0
  93. rasa_pro-3.10.3/rasa/llm_fine_tuning/notebooks/unsloth_finetuning.ipynb +407 -0
  94. rasa_pro-3.10.3/rasa/llm_fine_tuning/paraphrasing/conversation_rephraser.py +281 -0
  95. rasa_pro-3.10.3/rasa/llm_fine_tuning/paraphrasing/default_rephrase_prompt_template.jina2 +44 -0
  96. rasa_pro-3.10.3/rasa/llm_fine_tuning/paraphrasing/rephrase_validator.py +121 -0
  97. rasa_pro-3.10.3/rasa/llm_fine_tuning/paraphrasing/rephrased_user_message.py +10 -0
  98. rasa_pro-3.10.3/rasa/llm_fine_tuning/paraphrasing_module.py +128 -0
  99. rasa_pro-3.10.3/rasa/llm_fine_tuning/storage.py +174 -0
  100. rasa_pro-3.10.3/rasa/llm_fine_tuning/train_test_split_module.py +441 -0
  101. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/model_training.py +48 -16
  102. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/classifiers/diet_classifier.py +25 -38
  103. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/classifiers/logistic_regression_classifier.py +9 -44
  104. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/classifiers/sklearn_intent_classifier.py +16 -37
  105. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/extractors/crf_entity_extractor.py +50 -93
  106. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/featurizers/sparse_featurizer/count_vectors_featurizer.py +45 -78
  107. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/featurizers/sparse_featurizer/lexical_syntactic_featurizer.py +17 -52
  108. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/featurizers/sparse_featurizer/regex_featurizer.py +3 -5
  109. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/persistor.py +129 -32
  110. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/server.py +45 -10
  111. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/constants.py +63 -15
  112. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/domain.py +15 -12
  113. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/events.py +28 -2
  114. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/flow.py +208 -13
  115. rasa_pro-3.10.3/rasa/shared/core/flows/flow_path.py +84 -0
  116. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/flows_list.py +28 -10
  117. rasa_pro-3.10.3/rasa/shared/core/flows/flows_yaml_schema.json +293 -0
  118. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/validation.py +112 -25
  119. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/yaml_flows_io.py +149 -10
  120. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/trackers.py +6 -0
  121. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/training_data/visualization.html +2 -2
  122. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/exceptions.py +4 -0
  123. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/importers/importer.py +60 -11
  124. rasa_pro-3.10.3/rasa/shared/importers/remote_importer.py +196 -0
  125. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/constants.py +2 -0
  126. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/features.py +2 -120
  127. rasa_pro-3.10.3/rasa/shared/providers/_configs/azure_openai_client_config.py +181 -0
  128. rasa_pro-3.10.3/rasa/shared/providers/_configs/client_config.py +57 -0
  129. rasa_pro-3.10.3/rasa/shared/providers/_configs/default_litellm_client_config.py +130 -0
  130. rasa_pro-3.10.3/rasa/shared/providers/_configs/huggingface_local_embedding_client_config.py +234 -0
  131. rasa_pro-3.10.3/rasa/shared/providers/_configs/openai_client_config.py +175 -0
  132. rasa_pro-3.10.3/rasa/shared/providers/_configs/self_hosted_llm_client_config.py +171 -0
  133. rasa_pro-3.10.3/rasa/shared/providers/_configs/utils.py +101 -0
  134. rasa_pro-3.10.3/rasa/shared/providers/_ssl_verification_utils.py +124 -0
  135. rasa_pro-3.10.3/rasa/shared/providers/embedding/_base_litellm_embedding_client.py +254 -0
  136. rasa_pro-3.10.3/rasa/shared/providers/embedding/_langchain_embedding_client_adapter.py +74 -0
  137. rasa_pro-3.10.3/rasa/shared/providers/embedding/azure_openai_embedding_client.py +277 -0
  138. rasa_pro-3.10.3/rasa/shared/providers/embedding/default_litellm_embedding_client.py +102 -0
  139. rasa_pro-3.10.3/rasa/shared/providers/embedding/embedding_client.py +90 -0
  140. rasa_pro-3.10.3/rasa/shared/providers/embedding/embedding_response.py +41 -0
  141. rasa_pro-3.10.3/rasa/shared/providers/embedding/huggingface_local_embedding_client.py +191 -0
  142. rasa_pro-3.10.3/rasa/shared/providers/embedding/openai_embedding_client.py +172 -0
  143. rasa_pro-3.10.3/rasa/shared/providers/llm/__init__.py +0 -0
  144. rasa_pro-3.10.3/rasa/shared/providers/llm/_base_litellm_client.py +227 -0
  145. rasa_pro-3.10.3/rasa/shared/providers/llm/azure_openai_llm_client.py +338 -0
  146. rasa_pro-3.10.3/rasa/shared/providers/llm/default_litellm_llm_client.py +84 -0
  147. rasa_pro-3.10.3/rasa/shared/providers/llm/llm_client.py +76 -0
  148. rasa_pro-3.10.3/rasa/shared/providers/llm/llm_response.py +50 -0
  149. rasa_pro-3.10.3/rasa/shared/providers/llm/openai_llm_client.py +155 -0
  150. rasa_pro-3.10.3/rasa/shared/providers/llm/self_hosted_llm_client.py +169 -0
  151. rasa_pro-3.10.3/rasa/shared/providers/mappings.py +75 -0
  152. rasa_pro-3.10.3/rasa/shared/utils/__init__.py +0 -0
  153. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/utils/cli.py +30 -0
  154. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/utils/io.py +65 -3
  155. rasa_pro-3.10.3/rasa/shared/utils/llm.py +427 -0
  156. rasa_pro-3.10.3/rasa/shared/utils/schemas/__init__.py +0 -0
  157. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/utils/yaml.py +122 -7
  158. rasa_pro-3.10.3/rasa/studio/__init__.py +0 -0
  159. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/studio/download.py +19 -13
  160. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/studio/train.py +2 -3
  161. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/studio/upload.py +2 -3
  162. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/telemetry.py +113 -58
  163. rasa_pro-3.10.3/rasa/tracing/__init__.py +0 -0
  164. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/tracing/config.py +2 -3
  165. rasa_pro-3.10.3/rasa/tracing/instrumentation/__init__.py +0 -0
  166. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/tracing/instrumentation/attribute_extractors.py +29 -17
  167. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/tracing/instrumentation/instrumentation.py +4 -47
  168. rasa_pro-3.10.3/rasa/utils/__init__.py +0 -0
  169. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/common.py +18 -19
  170. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/endpoints.py +7 -4
  171. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/io.py +66 -0
  172. rasa_pro-3.10.3/rasa/utils/json_utils.py +60 -0
  173. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/licensing.py +9 -1
  174. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/ml_utils.py +4 -2
  175. rasa_pro-3.10.3/rasa/utils/tensorflow/__init__.py +0 -0
  176. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/model_data.py +193 -2
  177. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/validator.py +195 -1
  178. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/version.py +1 -1
  179. rasa_pro-3.9.17/rasa/cli/e2e_test.py +0 -586
  180. rasa_pro-3.9.17/rasa/e2e_test/constants.py +0 -11
  181. rasa_pro-3.9.17/rasa/e2e_test/e2e_test_result.py +0 -34
  182. rasa_pro-3.9.17/rasa/e2e_test/e2e_test_schema.yml +0 -85
  183. rasa_pro-3.9.17/rasa/env.py +0 -5
  184. rasa_pro-3.9.17/rasa/nlu/classifiers/llm_intent_classifier.py +0 -519
  185. rasa_pro-3.9.17/rasa/shared/core/flows/flows_yaml_schema.json +0 -217
  186. rasa_pro-3.9.17/rasa/shared/providers/openai/clients.py +0 -43
  187. rasa_pro-3.9.17/rasa/shared/providers/openai/session_handler.py +0 -110
  188. rasa_pro-3.9.17/rasa/shared/utils/llm.py +0 -404
  189. rasa_pro-3.9.17/rasa/utils/tensorflow/feature_array.py +0 -366
  190. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/NOTICE +0 -0
  191. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/anonymization/__init__.py +0 -0
  192. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/anonymization/anonymisation_rule_yaml_reader.py +0 -0
  193. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/anonymization/anonymization_pipeline.py +0 -0
  194. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/anonymization/anonymization_rule_orchestrator.py +0 -0
  195. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/anonymization/schemas/config.yml +0 -0
  196. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/anonymization/utils.py +0 -0
  197. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/__init__.py +0 -0
  198. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/arguments/__init__.py +0 -0
  199. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/arguments/evaluate.py +0 -0
  200. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/arguments/export.py +0 -0
  201. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/arguments/interactive.py +0 -0
  202. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/arguments/shell.py +0 -0
  203. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/arguments/test.py +0 -0
  204. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/arguments/visualize.py +0 -0
  205. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/arguments/x.py +0 -0
  206. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/evaluate.py +0 -0
  207. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/export.py +0 -0
  208. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/inspect.py +0 -0
  209. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/license.py +0 -0
  210. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/markers.py +0 -0
  211. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/__init__.py +0 -0
  212. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/actions/__init__.py +0 -0
  213. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/actions/action_template.py +0 -0
  214. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/actions/add_contact.py +0 -0
  215. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/actions/db.py +0 -0
  216. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/actions/list_contacts.py +0 -0
  217. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/actions/remove_contact.py +0 -0
  218. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/config.yml +0 -0
  219. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/credentials.yml +0 -0
  220. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/data/flows/add_contact.yml +0 -0
  221. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/data/flows/list_contacts.yml +0 -0
  222. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/data/flows/remove_contact.yml +0 -0
  223. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/db/contacts.json +0 -0
  224. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/domain/add_contact.yml +0 -0
  225. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/domain/list_contacts.yml +0 -0
  226. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/domain/remove_contact.yml +0 -0
  227. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/domain/shared.yml +0 -0
  228. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/e2e_tests/cancelations/user_cancels_during_a_correction.yml +0 -0
  229. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/e2e_tests/cancelations/user_changes_mind_on_a_whim.yml +0 -0
  230. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/e2e_tests/corrections/user_corrects_contact_handle.yml +0 -0
  231. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/e2e_tests/corrections/user_corrects_contact_name.yml +0 -0
  232. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_adds_contact_to_their_list.yml +0 -0
  233. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_lists_contacts.yml +0 -0
  234. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact.yml +0 -0
  235. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact_from_list.yml +0 -0
  236. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/default/actions/__init__.py +0 -0
  237. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/default/actions/actions.py +0 -0
  238. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/default/config.yml +0 -0
  239. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/default/credentials.yml +0 -0
  240. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/default/data/nlu.yml +0 -0
  241. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/default/data/rules.yml +0 -0
  242. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/default/data/stories.yml +0 -0
  243. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/default/domain.yml +0 -0
  244. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/default/endpoints.yml +0 -0
  245. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/default/tests/test_stories.yml +0 -0
  246. {rasa_pro-3.9.17/rasa/cli/studio → rasa_pro-3.10.3/rasa/cli/project_templates/tutorial/actions}/__init__.py +0 -0
  247. {rasa_pro-3.9.17/rasa/cli/project_templates/tutorial → rasa_pro-3.10.3/rasa/cli/project_templates/tutorial/actions}/actions.py +0 -0
  248. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/tutorial/config.yml +0 -0
  249. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/tutorial/credentials.yml +0 -0
  250. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/tutorial/data/flows.yml +0 -0
  251. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/tutorial/data/patterns.yml +0 -0
  252. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/project_templates/tutorial/domain.yml +0 -0
  253. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/shell.py +0 -0
  254. {rasa_pro-3.9.17/rasa/core/actions → rasa_pro-3.10.3/rasa/cli/studio}/__init__.py +0 -0
  255. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/studio/download.py +0 -0
  256. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/studio/studio.py +0 -0
  257. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/studio/train.py +0 -0
  258. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/studio/upload.py +0 -0
  259. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/telemetry.py +0 -0
  260. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/test.py +0 -0
  261. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/visualize.py +0 -0
  262. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/cli/x.py +0 -0
  263. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/__init__.py +0 -0
  264. {rasa_pro-3.9.17/rasa/core/brokers → rasa_pro-3.10.3/rasa/core/actions}/__init__.py +0 -0
  265. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/action_clean_stack.py +0 -0
  266. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/action_exceptions.py +0 -0
  267. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/action_trigger_chitchat.py +0 -0
  268. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/action_trigger_flow.py +0 -0
  269. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/action_trigger_search.py +0 -0
  270. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/constants.py +0 -0
  271. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/forms.py +0 -0
  272. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/loops.py +0 -0
  273. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/actions/two_stage_fallback.py +0 -0
  274. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/auth_retry_tracker_store.py +0 -0
  275. {rasa_pro-3.9.17/rasa/core/evaluation → rasa_pro-3.10.3/rasa/core/brokers}/__init__.py +0 -0
  276. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/brokers/broker.py +0 -0
  277. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/brokers/file.py +0 -0
  278. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/brokers/kafka.py +0 -0
  279. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/brokers/pika.py +0 -0
  280. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/brokers/sql.py +0 -0
  281. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/botframework.py +0 -0
  282. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/callback.py +0 -0
  283. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/channel.py +0 -0
  284. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/console.py +0 -0
  285. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/development_inspector.py +0 -0
  286. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/facebook.py +0 -0
  287. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/hangouts.py +0 -0
  288. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/.eslintrc.cjs +0 -0
  289. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/.gitignore +0 -0
  290. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/README.md +0 -0
  291. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/assets/favicon.ico +0 -0
  292. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/assets/rasa-chat.js +0 -0
  293. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/custom.d.ts +0 -0
  294. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/arc-b6e548fe.js +0 -0
  295. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/array-9f3ba611.js +0 -0
  296. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/c4Diagram-d0fbc5ce-fa03ac9e.js +0 -0
  297. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/classDiagram-936ed81e-ee67392a.js +0 -0
  298. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/classDiagram-v2-c3cb15f1-9b283fae.js +0 -0
  299. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/createText-62fc7601-8b6fcc2a.js +0 -0
  300. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/edges-f2ad444c-22e77f4f.js +0 -0
  301. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/erDiagram-9d236eb7-60ffc87f.js +0 -0
  302. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/flowDb-1972c806-9dd802e4.js +0 -0
  303. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/flowDiagram-7ea5b25a-5fa1912f.js +0 -0
  304. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/flowDiagram-v2-855bc5b3-1844e5a5.js +0 -0
  305. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/flowchart-elk-definition-abe16c3d-622a1fd2.js +0 -0
  306. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/ganttDiagram-9b5ea136-e285a63a.js +0 -0
  307. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/gitGraphDiagram-99d0ae7c-f237bdca.js +0 -0
  308. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-128cfa44.ttf +0 -0
  309. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-21dbcb97.woff +0 -0
  310. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-222b5e26.svg +0 -0
  311. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-9ad89b2a.woff2 +0 -0
  312. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/index-2c4b9a3b-4b03d70e.js +0 -0
  313. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/index-3ee28881.css +0 -0
  314. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/index-a5d3e69d.js +0 -0
  315. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/infoDiagram-736b4530-72a0fa5f.js +0 -0
  316. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/init-77b53fdd.js +0 -0
  317. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/journeyDiagram-df861f2b-82218c41.js +0 -0
  318. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-60c05ee4.woff +0 -0
  319. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-8335d9b8.svg +0 -0
  320. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-9cc39c75.ttf +0 -0
  321. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-ead13ccf.woff2 +0 -0
  322. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-16705655.woff2 +0 -0
  323. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-5aeb07f9.woff +0 -0
  324. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9c459044.ttf +0 -0
  325. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9e2898a4.svg +0 -0
  326. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/layout-78cff630.js +0 -0
  327. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/line-5038b469.js +0 -0
  328. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/linear-c4fc4098.js +0 -0
  329. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/mindmap-definition-beec6740-c33c8ea6.js +0 -0
  330. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/ordinal-ba9b4969.js +0 -0
  331. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/path-53f90ab3.js +0 -0
  332. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/pieDiagram-dbbf0591-a8d03059.js +0 -0
  333. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/quadrantDiagram-4d7f4fd6-6a0e56b2.js +0 -0
  334. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/requirementDiagram-6fc4c22a-2dc7c7bd.js +0 -0
  335. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/sankeyDiagram-8f13d901-2360fe39.js +0 -0
  336. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/sequenceDiagram-b655622a-41b9f9ad.js +0 -0
  337. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/stateDiagram-59f0c015-0aad326f.js +0 -0
  338. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/stateDiagram-v2-2b26beab-9847d984.js +0 -0
  339. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/styles-080da4f6-564d890e.js +0 -0
  340. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/styles-3dcbcfbf-38957613.js +0 -0
  341. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/styles-9c745c82-f0fc6921.js +0 -0
  342. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/svgDrawCommon-4835440b-ef3c5a77.js +0 -0
  343. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/timeline-definition-5b62e21b-bf3e91c1.js +0 -0
  344. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/assets/xychartDiagram-2b33534f-4d4026c0.js +0 -0
  345. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/dist/index.html +0 -0
  346. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/index.html +0 -0
  347. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/jest.config.ts +0 -0
  348. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/package.json +0 -0
  349. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/setupTests.ts +0 -0
  350. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/App.tsx +0 -0
  351. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/components/DiagramFlow.tsx +0 -0
  352. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/components/DialogueInformation.tsx +0 -0
  353. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/components/DialogueStack.tsx +0 -0
  354. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/components/ExpandIcon.tsx +0 -0
  355. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/components/FullscreenButton.tsx +0 -0
  356. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/components/LoadingSpinner.tsx +0 -0
  357. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/components/NoActiveFlow.tsx +0 -0
  358. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/components/RasaLogo.tsx +0 -0
  359. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/components/SaraDiagrams.tsx +0 -0
  360. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/components/Slots.tsx +0 -0
  361. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/components/Welcome.tsx +0 -0
  362. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/helpers/formatters.test.ts +0 -0
  363. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/helpers/formatters.ts +0 -0
  364. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/helpers/utils.ts +0 -0
  365. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/main.tsx +0 -0
  366. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/Button/Button.ts +0 -0
  367. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/Heading/Heading.ts +0 -0
  368. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/Input/Input.ts +0 -0
  369. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/Link/Link.ts +0 -0
  370. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/Modal/Modal.ts +0 -0
  371. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/Table/Table.tsx +0 -0
  372. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/Tooltip/Tooltip.ts +0 -0
  373. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/breakpoints.ts +0 -0
  374. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/colors.ts +0 -0
  375. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/fontFaces.css +0 -0
  376. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.eot +0 -0
  377. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.svg +0 -0
  378. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.ttf +0 -0
  379. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.woff +0 -0
  380. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.woff2 +0 -0
  381. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.eot +0 -0
  382. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.svg +0 -0
  383. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.ttf +0 -0
  384. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.woff +0 -0
  385. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.woff2 +0 -0
  386. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.eot +0 -0
  387. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.svg +0 -0
  388. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.ttf +0 -0
  389. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.woff +0 -0
  390. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.woff2 +0 -0
  391. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/radii.ts +0 -0
  392. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/shadows.ts +0 -0
  393. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/sizes.ts +0 -0
  394. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/space.ts +0 -0
  395. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/styles.ts +0 -0
  396. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/typography.ts +0 -0
  397. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/base/zIndices.ts +0 -0
  398. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/theme/index.ts +0 -0
  399. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/types.ts +0 -0
  400. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/src/vite-env.d.ts +0 -0
  401. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/tests/__mocks__/fileMock.ts +0 -0
  402. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/tests/__mocks__/matchMedia.ts +0 -0
  403. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/tests/__mocks__/styleMock.ts +0 -0
  404. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/tests/renderWithProviders.tsx +0 -0
  405. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/tsconfig.json +0 -0
  406. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/tsconfig.node.json +0 -0
  407. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/vite.config.ts +0 -0
  408. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/inspector/yarn.lock +0 -0
  409. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/mattermost.py +0 -0
  410. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/rasa_chat.py +0 -0
  411. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/rest.py +0 -0
  412. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/rocketchat.py +0 -0
  413. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/slack.py +0 -0
  414. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/socketio.py +0 -0
  415. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/telegram.py +0 -0
  416. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/twilio.py +0 -0
  417. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/twilio_voice.py +0 -0
  418. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/vier_cvg.py +0 -0
  419. {rasa_pro-3.9.17/rasa/core/featurizers → rasa_pro-3.10.3/rasa/core/channels/voice_aware}/__init__.py +0 -0
  420. {rasa_pro-3.9.17/rasa/core/policies → rasa_pro-3.10.3/rasa/core/channels/voice_native}/__init__.py +0 -0
  421. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/channels/webexteams.py +0 -0
  422. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/concurrent_lock_store.py +0 -0
  423. {rasa_pro-3.9.17/rasa/core/policies/flows → rasa_pro-3.10.3/rasa/core/evaluation}/__init__.py +0 -0
  424. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/evaluation/marker.py +0 -0
  425. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/evaluation/marker_base.py +0 -0
  426. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/evaluation/marker_stats.py +0 -0
  427. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/evaluation/marker_tracker_loader.py +0 -0
  428. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/exceptions.py +0 -0
  429. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/exporter.py +0 -0
  430. {rasa_pro-3.9.17/rasa/core/secrets_manager → rasa_pro-3.10.3/rasa/core/featurizers}/__init__.py +0 -0
  431. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/featurizers/precomputation.py +0 -0
  432. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/http_interpreter.py +0 -0
  433. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/information_retrieval/__init__.py +0 -0
  434. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/jobs.py +0 -0
  435. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/lock.py +0 -0
  436. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/lock_store.py +0 -0
  437. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/migrate.py +0 -0
  438. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/nlg/__init__.py +0 -0
  439. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/nlg/callback.py +0 -0
  440. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/nlg/generator.py +0 -0
  441. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/nlg/interpolator.py +0 -0
  442. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/nlg/response.py +0 -0
  443. {rasa_pro-3.9.17/rasa/core/training/converters → rasa_pro-3.10.3/rasa/core/policies}/__init__.py +0 -0
  444. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/ensemble.py +0 -0
  445. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/enterprise_search_prompt_template.jinja2 +0 -0
  446. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2 +0 -0
  447. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/flow_policy.py +0 -0
  448. {rasa_pro-3.9.17/rasa/dialogue_understanding → rasa_pro-3.10.3/rasa/core/policies/flows}/__init__.py +0 -0
  449. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/flows/flow_exceptions.py +0 -0
  450. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/flows/flow_step_result.py +0 -0
  451. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/intentless_prompt_template.jinja2 +0 -0
  452. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/memoization.py +0 -0
  453. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/policy.py +0 -0
  454. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/policies/rule_policy.py +0 -0
  455. {rasa_pro-3.9.17/rasa/dialogue_understanding/coexistence → rasa_pro-3.10.3/rasa/core/secrets_manager}/__init__.py +0 -0
  456. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/secrets_manager/constants.py +0 -0
  457. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/secrets_manager/endpoints.py +0 -0
  458. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/secrets_manager/factory.py +0 -0
  459. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/secrets_manager/secret_manager.py +0 -0
  460. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/secrets_manager/vault.py +0 -0
  461. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/test.py +0 -0
  462. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/train.py +0 -0
  463. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/training/__init__.py +0 -0
  464. {rasa_pro-3.9.17/rasa/dialogue_understanding/generator/multi_step → rasa_pro-3.10.3/rasa/core/training/converters}/__init__.py +0 -0
  465. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/training/converters/responses_prefix_converter.py +0 -0
  466. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/training/interactive.py +0 -0
  467. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/training/story_conflict.py +0 -0
  468. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/training/training.py +0 -0
  469. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/core/visualize.py +0 -0
  470. {rasa_pro-3.9.17/rasa/dialogue_understanding/generator/single_step → rasa_pro-3.10.3/rasa/dialogue_understanding}/__init__.py +0 -0
  471. {rasa_pro-3.9.17/rasa/dialogue_understanding/patterns → rasa_pro-3.10.3/rasa/dialogue_understanding/coexistence}/__init__.py +0 -0
  472. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/coexistence/constants.py +0 -0
  473. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/coexistence/intent_based_router.py +0 -0
  474. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/coexistence/router_template.jinja2 +0 -0
  475. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/can_not_handle_command.py +0 -0
  476. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/cancel_flow_command.py +0 -0
  477. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/chit_chat_answer_command.py +0 -0
  478. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/clarify_command.py +0 -0
  479. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/command.py +0 -0
  480. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/correct_slots_command.py +0 -0
  481. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/error_command.py +0 -0
  482. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/free_form_answer_command.py +0 -0
  483. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/handle_code_change_command.py +0 -0
  484. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/human_handoff_command.py +0 -0
  485. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/knowledge_answer_command.py +0 -0
  486. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/noop_command.py +0 -0
  487. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/skip_question_command.py +0 -0
  488. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/commands/start_flow_command.py +0 -0
  489. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/__init__.py +0 -0
  490. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/command_generator.py +0 -0
  491. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/flow_document_template.jinja2 +0 -0
  492. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/llm_command_generator.py +0 -0
  493. {rasa_pro-3.9.17/rasa/dialogue_understanding/processor → rasa_pro-3.10.3/rasa/dialogue_understanding/generator/multi_step}/__init__.py +0 -0
  494. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2 +0 -0
  495. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/multi_step/handle_flows_prompt.jinja2 +0 -0
  496. {rasa_pro-3.9.17/rasa/dialogue_understanding/stack → rasa_pro-3.10.3/rasa/dialogue_understanding/generator/single_step}/__init__.py +0 -0
  497. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2 +0 -0
  498. {rasa_pro-3.9.17/rasa/e2e_test → rasa_pro-3.10.3/rasa/dialogue_understanding/patterns}/__init__.py +0 -0
  499. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/cancel.py +0 -0
  500. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/cannot_handle.py +0 -0
  501. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/chitchat.py +0 -0
  502. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/clarify.py +0 -0
  503. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/code_change.py +0 -0
  504. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/collect_information.py +0 -0
  505. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/completed.py +0 -0
  506. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/continue_interrupted.py +0 -0
  507. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/correction.py +0 -0
  508. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/human_handoff.py +0 -0
  509. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/internal_error.py +0 -0
  510. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/search.py +0 -0
  511. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/patterns/skip_question.py +0 -0
  512. {rasa_pro-3.9.17/rasa/engine → rasa_pro-3.10.3/rasa/dialogue_understanding/processor}/__init__.py +0 -0
  513. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/processor/command_processor_component.py +0 -0
  514. {rasa_pro-3.9.17/rasa/engine/recipes → rasa_pro-3.10.3/rasa/dialogue_understanding/stack}/__init__.py +0 -0
  515. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/stack/dialogue_stack.py +0 -0
  516. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/stack/frames/__init__.py +0 -0
  517. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/stack/frames/chit_chat_frame.py +0 -0
  518. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/stack/frames/dialogue_stack_frame.py +0 -0
  519. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/stack/frames/flow_stack_frame.py +0 -0
  520. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/stack/frames/pattern_frame.py +0 -0
  521. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/stack/frames/search_frame.py +0 -0
  522. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/dialogue_understanding/stack/utils.py +0 -0
  523. {rasa_pro-3.9.17/rasa/engine/runner → rasa_pro-3.10.3/rasa/e2e_test}/__init__.py +0 -0
  524. {rasa_pro-3.9.17/rasa/engine/storage → rasa_pro-3.10.3/rasa/e2e_test/utils}/__init__.py +0 -0
  525. {rasa_pro-3.9.17/rasa/engine/training → rasa_pro-3.10.3/rasa/engine}/__init__.py +0 -0
  526. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/caching.py +0 -0
  527. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/constants.py +0 -0
  528. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/exceptions.py +0 -0
  529. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/graph.py +0 -0
  530. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/loader.py +0 -0
  531. {rasa_pro-3.9.17/rasa/graph_components → rasa_pro-3.10.3/rasa/engine/recipes}/__init__.py +0 -0
  532. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/recipes/config_files/default_config.yml +0 -0
  533. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/recipes/default_recipe.py +0 -0
  534. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/recipes/graph_recipe.py +0 -0
  535. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/recipes/recipe.py +0 -0
  536. {rasa_pro-3.9.17/rasa/graph_components/converters → rasa_pro-3.10.3/rasa/engine/runner}/__init__.py +0 -0
  537. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/runner/dask.py +0 -0
  538. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/runner/interface.py +0 -0
  539. {rasa_pro-3.9.17/rasa/graph_components/providers → rasa_pro-3.10.3/rasa/engine/storage}/__init__.py +0 -0
  540. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/storage/resource.py +0 -0
  541. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/storage/storage.py +0 -0
  542. {rasa_pro-3.9.17/rasa/graph_components/validators → rasa_pro-3.10.3/rasa/engine/training}/__init__.py +0 -0
  543. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/training/components.py +0 -0
  544. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/training/fingerprinting.py +0 -0
  545. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/training/graph_trainer.py +0 -0
  546. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/training/hooks.py +0 -0
  547. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/engine/validation.py +0 -0
  548. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/exceptions.py +0 -0
  549. {rasa_pro-3.9.17/rasa/markers → rasa_pro-3.10.3/rasa/graph_components}/__init__.py +0 -0
  550. {rasa_pro-3.9.17/rasa/nlu/emulators → rasa_pro-3.10.3/rasa/graph_components/converters}/__init__.py +0 -0
  551. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/graph_components/converters/nlu_message_converter.py +0 -0
  552. {rasa_pro-3.9.17/rasa/nlu/extractors → rasa_pro-3.10.3/rasa/graph_components/providers}/__init__.py +0 -0
  553. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/graph_components/providers/domain_for_core_training_provider.py +0 -0
  554. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/graph_components/providers/domain_provider.py +0 -0
  555. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/graph_components/providers/flows_provider.py +0 -0
  556. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/graph_components/providers/forms_provider.py +0 -0
  557. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/graph_components/providers/nlu_training_data_provider.py +0 -0
  558. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/graph_components/providers/responses_provider.py +0 -0
  559. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/graph_components/providers/rule_only_provider.py +0 -0
  560. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/graph_components/providers/story_graph_provider.py +0 -0
  561. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/graph_components/providers/training_tracker_provider.py +0 -0
  562. {rasa_pro-3.9.17/rasa/nlu/featurizers → rasa_pro-3.10.3/rasa/graph_components/validators}/__init__.py +0 -0
  563. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/graph_components/validators/default_recipe_validator.py +0 -0
  564. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/graph_components/validators/finetuning_validator.py +0 -0
  565. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/hooks.py +0 -0
  566. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/jupyter.py +0 -0
  567. {rasa_pro-3.9.17/rasa/nlu/featurizers/dense_featurizer → rasa_pro-3.10.3/rasa/llm_fine_tuning}/__init__.py +0 -0
  568. {rasa_pro-3.9.17/rasa/nlu/featurizers/sparse_featurizer → rasa_pro-3.10.3/rasa/llm_fine_tuning/paraphrasing}/__init__.py +0 -0
  569. {rasa_pro-3.9.17/rasa/nlu/selectors → rasa_pro-3.10.3/rasa/markers}/__init__.py +0 -0
  570. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/markers/marker.py +0 -0
  571. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/markers/marker_base.py +0 -0
  572. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/markers/upload.py +0 -0
  573. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/markers/validate.py +0 -0
  574. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/model.py +0 -0
  575. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/model_testing.py +0 -0
  576. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/__init__.py +0 -0
  577. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/classifiers/__init__.py +0 -0
  578. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/classifiers/classifier.py +0 -0
  579. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/classifiers/fallback_classifier.py +0 -0
  580. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/classifiers/keyword_intent_classifier.py +0 -0
  581. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/classifiers/mitie_intent_classifier.py +0 -0
  582. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/classifiers/regex_message_handler.py +0 -0
  583. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/constants.py +0 -0
  584. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/convert.py +0 -0
  585. {rasa_pro-3.9.17/rasa/nlu/tokenizers → rasa_pro-3.10.3/rasa/nlu/emulators}/__init__.py +0 -0
  586. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/emulators/dialogflow.py +0 -0
  587. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/emulators/emulator.py +0 -0
  588. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/emulators/luis.py +0 -0
  589. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/emulators/no_emulator.py +0 -0
  590. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/emulators/wit.py +0 -0
  591. {rasa_pro-3.9.17/rasa/nlu/utils/hugging_face → rasa_pro-3.10.3/rasa/nlu/extractors}/__init__.py +0 -0
  592. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/extractors/duckling_entity_extractor.py +0 -0
  593. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/extractors/entity_synonyms.py +0 -0
  594. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/extractors/extractor.py +0 -0
  595. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/extractors/mitie_entity_extractor.py +0 -0
  596. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/extractors/regex_entity_extractor.py +0 -0
  597. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/extractors/spacy_entity_extractor.py +0 -0
  598. {rasa_pro-3.9.17/rasa/shared → rasa_pro-3.10.3/rasa/nlu/featurizers}/__init__.py +0 -0
  599. {rasa_pro-3.9.17/rasa/shared/core → rasa_pro-3.10.3/rasa/nlu/featurizers/dense_featurizer}/__init__.py +0 -0
  600. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/featurizers/dense_featurizer/convert_featurizer.py +0 -0
  601. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/featurizers/dense_featurizer/dense_featurizer.py +0 -0
  602. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/featurizers/dense_featurizer/lm_featurizer.py +0 -0
  603. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/featurizers/dense_featurizer/mitie_featurizer.py +0 -0
  604. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/featurizers/dense_featurizer/spacy_featurizer.py +0 -0
  605. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/featurizers/featurizer.py +0 -0
  606. {rasa_pro-3.9.17/rasa/shared/core/training_data → rasa_pro-3.10.3/rasa/nlu/featurizers/sparse_featurizer}/__init__.py +0 -0
  607. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/featurizers/sparse_featurizer/sparse_featurizer.py +0 -0
  608. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/model.py +0 -0
  609. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/run.py +0 -0
  610. {rasa_pro-3.9.17/rasa/shared/core/training_data/story_reader → rasa_pro-3.10.3/rasa/nlu/selectors}/__init__.py +0 -0
  611. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/selectors/response_selector.py +0 -0
  612. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/test.py +0 -0
  613. {rasa_pro-3.9.17/rasa/shared/core/training_data/story_writer → rasa_pro-3.10.3/rasa/nlu/tokenizers}/__init__.py +0 -0
  614. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/tokenizers/jieba_tokenizer.py +0 -0
  615. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/tokenizers/mitie_tokenizer.py +0 -0
  616. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/tokenizers/spacy_tokenizer.py +0 -0
  617. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/tokenizers/tokenizer.py +0 -0
  618. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/tokenizers/whitespace_tokenizer.py +0 -0
  619. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/utils/__init__.py +0 -0
  620. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/utils/bilou_utils.py +0 -0
  621. {rasa_pro-3.9.17/rasa/shared/engine → rasa_pro-3.10.3/rasa/nlu/utils/hugging_face}/__init__.py +0 -0
  622. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/utils/hugging_face/registry.py +0 -0
  623. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/utils/hugging_face/transformers_pre_post_processors.py +0 -0
  624. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/utils/mitie_utils.py +0 -0
  625. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/utils/pattern_utils.py +0 -0
  626. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/nlu/utils/spacy_utils.py +0 -0
  627. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/plugin.py +0 -0
  628. {rasa_pro-3.9.17/rasa/shared/importers → rasa_pro-3.10.3/rasa/shared}/__init__.py +0 -0
  629. {rasa_pro-3.9.17/rasa/shared/nlu → rasa_pro-3.10.3/rasa/shared/core}/__init__.py +0 -0
  630. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/command_payload_reader.py +0 -0
  631. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/constants.py +0 -0
  632. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/conversation.py +0 -0
  633. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/__init__.py +0 -0
  634. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/flow_step.py +0 -0
  635. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/flow_step_links.py +0 -0
  636. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/flow_step_sequence.py +0 -0
  637. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/nlu_trigger.py +0 -0
  638. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/steps/__init__.py +0 -0
  639. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/steps/action.py +0 -0
  640. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/steps/call.py +0 -0
  641. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/steps/collect.py +0 -0
  642. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/steps/constants.py +0 -0
  643. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/steps/continuation.py +0 -0
  644. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/steps/end.py +0 -0
  645. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/steps/internal.py +0 -0
  646. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/steps/link.py +0 -0
  647. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/steps/no_operation.py +0 -0
  648. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/steps/set_slots.py +0 -0
  649. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/flows/steps/start.py +0 -0
  650. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/generator.py +0 -0
  651. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/slot_mappings.py +0 -0
  652. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/slots.py +0 -0
  653. {rasa_pro-3.9.17/rasa/shared/nlu → rasa_pro-3.10.3/rasa/shared/core}/training_data/__init__.py +0 -0
  654. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/training_data/loading.py +0 -0
  655. {rasa_pro-3.9.17/rasa/shared/nlu/training_data/schemas → rasa_pro-3.10.3/rasa/shared/core/training_data/story_reader}/__init__.py +0 -0
  656. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/training_data/story_reader/story_reader.py +0 -0
  657. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/training_data/story_reader/story_step_builder.py +0 -0
  658. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/training_data/story_reader/yaml_story_reader.py +0 -0
  659. {rasa_pro-3.9.17/rasa/shared/providers → rasa_pro-3.10.3/rasa/shared/core/training_data/story_writer}/__init__.py +0 -0
  660. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/training_data/story_writer/story_writer.py +0 -0
  661. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/training_data/story_writer/yaml_story_writer.py +0 -0
  662. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/training_data/structures.py +0 -0
  663. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/core/training_data/visualization.py +0 -0
  664. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/data.py +0 -0
  665. {rasa_pro-3.9.17/rasa/shared/providers/openai → rasa_pro-3.10.3/rasa/shared/engine}/__init__.py +0 -0
  666. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/engine/caching.py +0 -0
  667. {rasa_pro-3.9.17/rasa/shared/utils → rasa_pro-3.10.3/rasa/shared/importers}/__init__.py +0 -0
  668. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/importers/multi_project.py +0 -0
  669. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/importers/rasa.py +0 -0
  670. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/importers/utils.py +0 -0
  671. {rasa_pro-3.9.17/rasa/shared/utils/schemas → rasa_pro-3.10.3/rasa/shared/nlu}/__init__.py +0 -0
  672. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/interpreter.py +0 -0
  673. {rasa_pro-3.9.17/rasa/studio → rasa_pro-3.10.3/rasa/shared/nlu/training_data}/__init__.py +0 -0
  674. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/entities_parser.py +0 -0
  675. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/formats/__init__.py +0 -0
  676. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/formats/dialogflow.py +0 -0
  677. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/formats/luis.py +0 -0
  678. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/formats/rasa.py +0 -0
  679. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/formats/rasa_yaml.py +0 -0
  680. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/formats/readerwriter.py +0 -0
  681. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/formats/wit.py +0 -0
  682. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/loading.py +0 -0
  683. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/lookup_tables_parser.py +0 -0
  684. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/message.py +0 -0
  685. {rasa_pro-3.9.17/rasa/tracing → rasa_pro-3.10.3/rasa/shared/nlu/training_data/schemas}/__init__.py +0 -0
  686. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/schemas/data_schema.py +0 -0
  687. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/schemas/nlu.yml +0 -0
  688. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/schemas/responses.yml +0 -0
  689. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/synonyms_parser.py +0 -0
  690. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/training_data.py +0 -0
  691. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/nlu/training_data/util.py +0 -0
  692. {rasa_pro-3.9.17/rasa/tracing/instrumentation → rasa_pro-3.10.3/rasa/shared/providers}/__init__.py +0 -0
  693. {rasa_pro-3.9.17/rasa/utils → rasa_pro-3.10.3/rasa/shared/providers/_configs}/__init__.py +0 -0
  694. {rasa_pro-3.9.17/rasa/utils/tensorflow → rasa_pro-3.10.3/rasa/shared/providers/embedding}/__init__.py +0 -0
  695. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/utils/common.py +0 -0
  696. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/utils/constants.py +0 -0
  697. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/utils/pykwalify_extensions.py +0 -0
  698. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/utils/schemas/config.yml +0 -0
  699. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/utils/schemas/domain.yml +0 -0
  700. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/utils/schemas/events.py +0 -0
  701. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/utils/schemas/model_config.yml +0 -0
  702. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/shared/utils/schemas/stories.yml +0 -0
  703. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/studio/auth.py +0 -0
  704. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/studio/config.py +0 -0
  705. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/studio/constants.py +0 -0
  706. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/studio/data_handler.py +0 -0
  707. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/studio/results_logger.py +0 -0
  708. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/tracing/constants.py +0 -0
  709. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/tracing/instrumentation/intentless_policy_instrumentation.py +0 -0
  710. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/tracing/instrumentation/metrics.py +0 -0
  711. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/tracing/metric_instrument_provider.py +0 -0
  712. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/beta.py +0 -0
  713. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/cli.py +0 -0
  714. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/converter.py +0 -0
  715. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/log_utils.py +0 -0
  716. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/mapper.py +0 -0
  717. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/plotting.py +0 -0
  718. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/singleton.py +0 -0
  719. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/callback.py +0 -0
  720. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/constants.py +0 -0
  721. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/crf.py +0 -0
  722. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/data_generator.py +0 -0
  723. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/environment.py +0 -0
  724. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/exceptions.py +0 -0
  725. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/layers.py +0 -0
  726. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/layers_utils.py +0 -0
  727. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/metrics.py +0 -0
  728. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/model_data_utils.py +0 -0
  729. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/models.py +0 -0
  730. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/rasa_layers.py +0 -0
  731. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/transformer.py +0 -0
  732. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/tensorflow/types.py +0 -0
  733. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/train_utils.py +0 -0
  734. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/url_tools.py +0 -0
  735. {rasa_pro-3.9.17 → rasa_pro-3.10.3}/rasa/utils/yaml.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rasa-pro
3
- Version: 3.9.17
3
+ Version: 3.10.3
4
4
  Summary: State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development.
5
5
  Home-page: https://rasa.com
6
6
  Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
@@ -19,6 +19,7 @@ Provides-Extra: full
19
19
  Provides-Extra: gh-release-notes
20
20
  Provides-Extra: jieba
21
21
  Provides-Extra: metal
22
+ Provides-Extra: mlflow
22
23
  Provides-Extra: spacy
23
24
  Provides-Extra: transformers
24
25
  Requires-Dist: CacheControl (>=0.12.14,<0.13.0)
@@ -31,8 +32,9 @@ Requires-Dist: aiohttp (>=3.9.4,<3.10)
31
32
  Requires-Dist: apscheduler (>=3.10,<3.11)
32
33
  Requires-Dist: attrs (>=23.1,<23.2)
33
34
  Requires-Dist: azure-storage-blob (>=12.16.0,<12.17.0)
34
- Requires-Dist: boto3 (>=1.27.1,<2.0.0)
35
+ Requires-Dist: boto3 (>=1.35.5,<1.36.0)
35
36
  Requires-Dist: certifi (>=2024.2.2)
37
+ Requires-Dist: cloudpickle (>=2.2.1,<3.1)
36
38
  Requires-Dist: colorama (>=0.4.6,<0.5.0) ; sys_platform == "win32"
37
39
  Requires-Dist: colorclass (>=2.2,<2.3)
38
40
  Requires-Dist: coloredlogs (>=15,<16)
@@ -41,9 +43,10 @@ Requires-Dist: confluent-kafka (>=2.3.0,<3.0.0)
41
43
  Requires-Dist: cryptography (>=42.0.5)
42
44
  Requires-Dist: cvg-python-sdk (>=0.5.1,<0.6.0)
43
45
  Requires-Dist: dask (==2022.10.2) ; python_version >= "3.9" and python_version < "3.11"
46
+ Requires-Dist: diskcache (>=5.6.3,<5.7.0)
44
47
  Requires-Dist: dnspython (==2.6.1)
45
48
  Requires-Dist: faiss-cpu (>=1.7.4,<2.0.0)
46
- Requires-Dist: faker (>=19.13.0,<20.0.0)
49
+ Requires-Dist: faker (>=26.0.0,<27.0.0)
47
50
  Requires-Dist: fbmessenger (>=6.0.0,<6.1.0)
48
51
  Requires-Dist: github3.py (>=3.2.0,<3.3.0) ; extra == "gh-release-notes"
49
52
  Requires-Dist: google-auth (>=2.23.4,<3)
@@ -53,26 +56,31 @@ Requires-Dist: importlib-metadata (>=6.8.0,<7.0.0)
53
56
  Requires-Dist: importlib-resources (>=6.1.1,<7.0.0)
54
57
  Requires-Dist: jieba (>=0.42.1,<0.43) ; extra == "jieba" or extra == "full"
55
58
  Requires-Dist: jinja2 (>=3.1.4,<4.0.0)
59
+ Requires-Dist: joblib (>=1.2.0,<1.3.0)
56
60
  Requires-Dist: jsonpatch (>=1.33,<2.0)
57
61
  Requires-Dist: jsonpickle (>=3.0,<3.1)
58
- Requires-Dist: jsonschema (>=4.20,<4.21)
62
+ Requires-Dist: jsonschema (>=4.22)
59
63
  Requires-Dist: keras (==2.14.0)
60
- Requires-Dist: langchain (>=0.0.329,<0.0.330)
64
+ Requires-Dist: langchain (>=0.2.0,<0.3.0)
65
+ Requires-Dist: langchain-community (>=0.2.0,<0.3.0)
66
+ Requires-Dist: litellm (>=1.44.7,<1.45.0)
61
67
  Requires-Dist: matplotlib (>=3.7,<3.8)
62
68
  Requires-Dist: mattermostwrapper (>=2.2,<2.3)
69
+ Requires-Dist: mlflow (>=2.15.1,<3.0.0) ; extra == "mlflow"
63
70
  Requires-Dist: networkx (>=3.1,<3.2)
64
71
  Requires-Dist: numpy (>=1.23.5,<1.25.0) ; python_version >= "3.9" and python_version < "3.11"
65
- Requires-Dist: openai (>=0.28.1,<0.29.0)
72
+ Requires-Dist: openai (>=1.40.0,<1.41.0)
73
+ Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
66
74
  Requires-Dist: opentelemetry-api (>=1.16.0,<1.17.0)
67
75
  Requires-Dist: opentelemetry-exporter-jaeger (>=1.16.0,<1.17.0)
68
76
  Requires-Dist: opentelemetry-exporter-otlp (>=1.16.0,<1.17.0)
69
77
  Requires-Dist: opentelemetry-sdk (>=1.16.0,<1.17.0)
70
- Requires-Dist: packaging (>=21.3,<21.4)
78
+ Requires-Dist: packaging (>=23.2,<23.3)
71
79
  Requires-Dist: pep440-version-utils (>=1.1.0,<1.2.0)
72
80
  Requires-Dist: pluggy (>=1.2.0,<2.0.0)
73
81
  Requires-Dist: portalocker (>=2.7.0,<3.0.0)
74
82
  Requires-Dist: presidio-analyzer (>=2.2.33,<2.2.34)
75
- Requires-Dist: presidio-anonymizer (>=2.2.33,<2.2.34)
83
+ Requires-Dist: presidio-anonymizer (>=2.2.354,<3.0.0)
76
84
  Requires-Dist: prompt-toolkit (>=3.0.28,<3.0.29)
77
85
  Requires-Dist: protobuf (>=4.23.3,<4.25.4)
78
86
  Requires-Dist: psutil (>=5.9.5,<6.0.0)
@@ -81,27 +89,26 @@ Requires-Dist: pycountry (>=22.3.5,<23.0.0)
81
89
  Requires-Dist: pydantic (>=2.0,<3.0)
82
90
  Requires-Dist: pydot (>=1.4,<1.5)
83
91
  Requires-Dist: pykwalify (>=1.8,<1.9)
84
- Requires-Dist: pymilvus (>=2.3.6,<3.0.0)
92
+ Requires-Dist: pymilvus (<2.4.2)
85
93
  Requires-Dist: pymongo[srv,tls] (>=4.6.3,<4.7)
86
94
  Requires-Dist: pypred (>=0.4.0,<0.5.0)
87
95
  Requires-Dist: python-dateutil (>=2.8.2,<2.9.0)
88
96
  Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
89
97
  Requires-Dist: python-engineio (>=4.5.1,<6,!=5.0.0)
90
- Requires-Dist: python-keycloak (>=3.7.0,<4.0.0)
98
+ Requires-Dist: python-keycloak (>=3.12.0,<4.0.0)
91
99
  Requires-Dist: python-socketio (>=5.8,<6)
92
100
  Requires-Dist: pytz (>=2022.7.1,<2023.0)
93
101
  Requires-Dist: pyyaml (>=6.0)
94
102
  Requires-Dist: qdrant-client (>=1.9.0,<2.0.0)
95
103
  Requires-Dist: questionary (>=1.10.0,<2.1.0)
96
104
  Requires-Dist: randomname (>=0.2.1,<0.3.0)
97
- Requires-Dist: rasa-sdk (==3.9.1)
105
+ Requires-Dist: rasa-sdk (==3.10.0)
98
106
  Requires-Dist: redis (>=4.6.0,<6.0)
99
107
  Requires-Dist: regex (>=2022.10.31,<2022.11)
100
108
  Requires-Dist: requests (>=2.31.0,<2.32.0)
101
109
  Requires-Dist: rich (>=13.4.2,<14.0.0)
102
110
  Requires-Dist: rocketchat_API (>=1.30.0,<1.31.0)
103
111
  Requires-Dist: ruamel.yaml (>=0.17.21,<0.17.22)
104
- Requires-Dist: safetensors (>=0.4.5,<0.5.0)
105
112
  Requires-Dist: sanic (>=22.12,<22.13)
106
113
  Requires-Dist: sanic-cors (>=2.2.0,<2.3.0)
107
114
  Requires-Dist: sanic-jwt (>=1.8.0,<2.0.0)
@@ -112,7 +119,6 @@ Requires-Dist: sentencepiece[sentencepiece] (>=0.1.99,<0.2.0) ; extra == "transf
112
119
  Requires-Dist: sentry-sdk (>=1.14.0,<1.15.0)
113
120
  Requires-Dist: setuptools (>=70.0.0,<70.1.0)
114
121
  Requires-Dist: sklearn-crfsuite (>=0.3.6,<0.4.0)
115
- Requires-Dist: skops (>=0.10.0,<0.11.0)
116
122
  Requires-Dist: slack-sdk (>=3.27.1,<4.0.0)
117
123
  Requires-Dist: spacy (>=3.5.4,<4.0.0) ; extra == "spacy" or extra == "full"
118
124
  Requires-Dist: structlog (>=23.1.0,<23.2.0)
@@ -130,7 +136,7 @@ Requires-Dist: tensorflow-metal (==1.1.0) ; (sys_platform == "darwin" and platfo
130
136
  Requires-Dist: tensorflow-text (==2.14.0) ; sys_platform != "win32" and (platform_machine != "arm64" and platform_machine != "aarch64")
131
137
  Requires-Dist: tensorflow_hub (>=0.13.0,<0.14.0)
132
138
  Requires-Dist: terminaltables (>=3.1.10,<3.2.0)
133
- Requires-Dist: tiktoken (>=0.4.0,<0.5.0)
139
+ Requires-Dist: tiktoken (>=0.7.0,<0.8.0)
134
140
  Requires-Dist: tqdm (>=4.66.2,<5.0.0)
135
141
  Requires-Dist: transformers (>=4.36.2,<4.37.0) ; extra == "transformers" or extra == "full"
136
142
  Requires-Dist: twilio (>=8.4,<8.5)
@@ -383,39 +389,6 @@ To check the types execute
383
389
  make types
384
390
  ```
385
391
 
386
- ### Backporting
387
-
388
- In order to port changes to `main` and across release branches, we use the `backport` workflow located at
389
- the `.github/workflows/backport.yml` path.
390
- This workflow is triggered by the `backport-to-<release-branch>` label applied to a PR, for example `backport-to-3.8.x`.
391
- Current available target branches are `main` and maintained release branches.
392
-
393
- When a PR gets labelled `backport-to-<release-branch>`, a PR is opened by the `backport-github-action` as soon as the
394
- source PR gets closed (by merging). If you want to close the PR without merging changes, make sure to remove the `backport-to-<release-branch>` label.
395
-
396
- The PR author which the action assigns to the backporting PR has to resolve any conflicts before approving and merging.
397
- Release PRs should also be labelled with `backport-to-main` to backport the `CHANGELOG.md` updates to `main`.
398
- Backporting version updates should be accepted to the `main` branch from the latest release branch only.
399
-
400
- Here are some guidelines to follow when backporting changes and resolving conflicts:
401
-
402
- a) for conflicts in `version.py`: accept only the version from the latest release branch. Do not merge version changes
403
- from earlier release branches into `main` because this could cause issues when trying to make the next minor release.
404
-
405
- b) for conflicts in `pyproject.toml`: if related to the `rasa-pro` version, accept only the latest release branch;
406
- if related to other dependencies, accept `main` or whichever is the higher upgrade (main usually has the updated
407
- dependencies because we only do housekeeping on `main`, apart from vulnerability updates). Be mindful of dependencies that
408
- are removed from `main` but still exist in former release branches (for example `langchain`).
409
-
410
- c) for conflicts in `poetry.lock`: accept changes which were already present on the target branch, then run
411
- `poetry lock --no-update` so that the lock file contains your changes from `pyproject.toml` too.
412
-
413
- d) for conflicts in `CHANGELOG.md`: Manually place the changelog in their allocated section (e.g. 3.8.10 will go under the
414
- 3.8 section with the other releases, rather than go at the top of the file)
415
-
416
- If the backporting workflow fails, you are encouraged to cherry-pick the commits manually and create a PR to
417
- the target branch. Alternatively, you can install the backporting CLI tool as described [here](https://github.com/sorenlouv/backport?tab=readme-ov-file#install).
418
-
419
392
  ## Releases
420
393
  Rasa has implemented robust policies governing version naming, as well as release pace for major, minor, and patch releases.
421
394
 
@@ -498,12 +471,9 @@ Releasing a new version is quite simple, as the packages are build and distribut
498
471
  9. If however an error occurs in the build, then we should see a failure message automatically posted in the company's Slack (`dev-tribe` channel) like this [one](https://rasa-hq.slack.com/archives/C01M5TAHDHA/p1701444735622919)
499
472
  (In this case do the following checks):
500
473
  - Check the workflows in [Github Actions](https://github.com/RasaHQ/rasa-private/actions) and make sure that the merged PR of the current release is completed successfully. To easily find your PR you can use the filters `event: push` and `branch: <version number>` (example on release 2.4 you can see [here](https://github.com/RasaHQ/rasa/actions/runs/643344876))
501
- - If the workflow is not completed, then try to re-run the workflow in case that solves the problem
474
+ - If the workflow is not completed, then try to re run the workflow in case that solves the problem
502
475
  - If the problem persists, check also the log files and try to find the root cause of the issue
503
476
  - If you still cannot resolve the error, contact the infrastructure team by providing any helpful information from your investigation
504
- 10. If the release is successful, add the newly created release branch to the backporting configuration in the `.backportrc.json` file to
505
- the `targetBranchesChoices` list. This is necessary for the backporting workflow to work correctly with new release branches.
506
-
507
477
 
508
478
  ### Cutting a Patch release
509
479
 
@@ -552,6 +522,10 @@ steps.
552
522
 
553
523
  Please refer to the [Rasa Product Release and Maintenance Policy](https://rasa.com/rasa-product-release-and-maintenance-policy/) page.
554
524
 
525
+ ### Active workflows on the CI
526
+
527
+ Please refer to the [WORKFLOW_README FILE](https://github.com/RasaHQ/rasa-private/blob/main/WORKFLOW_README.md)
528
+
555
529
  ## Troubleshooting
556
530
 
557
531
  - When running docker commands, if you encounter this error: `OSError No space left on device`, consider running:
@@ -236,39 +236,6 @@ To check the types execute
236
236
  make types
237
237
  ```
238
238
 
239
- ### Backporting
240
-
241
- In order to port changes to `main` and across release branches, we use the `backport` workflow located at
242
- the `.github/workflows/backport.yml` path.
243
- This workflow is triggered by the `backport-to-<release-branch>` label applied to a PR, for example `backport-to-3.8.x`.
244
- Current available target branches are `main` and maintained release branches.
245
-
246
- When a PR gets labelled `backport-to-<release-branch>`, a PR is opened by the `backport-github-action` as soon as the
247
- source PR gets closed (by merging). If you want to close the PR without merging changes, make sure to remove the `backport-to-<release-branch>` label.
248
-
249
- The PR author which the action assigns to the backporting PR has to resolve any conflicts before approving and merging.
250
- Release PRs should also be labelled with `backport-to-main` to backport the `CHANGELOG.md` updates to `main`.
251
- Backporting version updates should be accepted to the `main` branch from the latest release branch only.
252
-
253
- Here are some guidelines to follow when backporting changes and resolving conflicts:
254
-
255
- a) for conflicts in `version.py`: accept only the version from the latest release branch. Do not merge version changes
256
- from earlier release branches into `main` because this could cause issues when trying to make the next minor release.
257
-
258
- b) for conflicts in `pyproject.toml`: if related to the `rasa-pro` version, accept only the latest release branch;
259
- if related to other dependencies, accept `main` or whichever is the higher upgrade (main usually has the updated
260
- dependencies because we only do housekeeping on `main`, apart from vulnerability updates). Be mindful of dependencies that
261
- are removed from `main` but still exist in former release branches (for example `langchain`).
262
-
263
- c) for conflicts in `poetry.lock`: accept changes which were already present on the target branch, then run
264
- `poetry lock --no-update` so that the lock file contains your changes from `pyproject.toml` too.
265
-
266
- d) for conflicts in `CHANGELOG.md`: Manually place the changelog in their allocated section (e.g. 3.8.10 will go under the
267
- 3.8 section with the other releases, rather than go at the top of the file)
268
-
269
- If the backporting workflow fails, you are encouraged to cherry-pick the commits manually and create a PR to
270
- the target branch. Alternatively, you can install the backporting CLI tool as described [here](https://github.com/sorenlouv/backport?tab=readme-ov-file#install).
271
-
272
239
  ## Releases
273
240
  Rasa has implemented robust policies governing version naming, as well as release pace for major, minor, and patch releases.
274
241
 
@@ -351,12 +318,9 @@ Releasing a new version is quite simple, as the packages are build and distribut
351
318
  9. If however an error occurs in the build, then we should see a failure message automatically posted in the company's Slack (`dev-tribe` channel) like this [one](https://rasa-hq.slack.com/archives/C01M5TAHDHA/p1701444735622919)
352
319
  (In this case do the following checks):
353
320
  - Check the workflows in [Github Actions](https://github.com/RasaHQ/rasa-private/actions) and make sure that the merged PR of the current release is completed successfully. To easily find your PR you can use the filters `event: push` and `branch: <version number>` (example on release 2.4 you can see [here](https://github.com/RasaHQ/rasa/actions/runs/643344876))
354
- - If the workflow is not completed, then try to re-run the workflow in case that solves the problem
321
+ - If the workflow is not completed, then try to re run the workflow in case that solves the problem
355
322
  - If the problem persists, check also the log files and try to find the root cause of the issue
356
323
  - If you still cannot resolve the error, contact the infrastructure team by providing any helpful information from your investigation
357
- 10. If the release is successful, add the newly created release branch to the backporting configuration in the `.backportrc.json` file to
358
- the `targetBranchesChoices` list. This is necessary for the backporting workflow to work correctly with new release branches.
359
-
360
324
 
361
325
  ### Cutting a Patch release
362
326
 
@@ -405,6 +369,10 @@ steps.
405
369
 
406
370
  Please refer to the [Rasa Product Release and Maintenance Policy](https://rasa.com/rasa-product-release-and-maintenance-policy/) page.
407
371
 
372
+ ### Active workflows on the CI
373
+
374
+ Please refer to the [WORKFLOW_README FILE](https://github.com/RasaHQ/rasa-private/blob/main/WORKFLOW_README.md)
375
+
408
376
  ## Troubleshooting
409
377
 
410
378
  - When running docker commands, if you encounter this error: `OSError No space left on device`, consider running:
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "rasa-pro"
7
- version = "3.9.17"
7
+ version = "3.10.3"
8
8
  description = "State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development."
9
9
  authors = [ "Rasa Technologies GmbH <hi@rasa.com>",]
10
10
  maintainers = [ "Tom Bocklisch <tom@rasa.com>",]
@@ -88,7 +88,7 @@ exclude = [ "eggs", ".git", ".pytest_cache", "build", "dist",]
88
88
 
89
89
  [tool.poetry.dependencies]
90
90
  python = ">=3.9,<3.11"
91
- boto3 = "^1.27.1"
91
+ boto3 = "~1.35.5"
92
92
  google-cloud-storage = "^2.14.0"
93
93
  azure-storage-blob = ">=12.16.0, <12.17.0"
94
94
  requests = "~2.31.0"
@@ -110,8 +110,8 @@ webexteamssdk = ">=1.6.1,<1.7.0"
110
110
  mattermostwrapper = "~2.2"
111
111
  rocketchat_API = ">=1.30.0,<1.31.0"
112
112
  colorhash = ">=2.0,<2.1.0"
113
- jsonschema = ">=4.20,<4.21"
114
- packaging = "~21.3"
113
+ jsonschema = ">=4.22"
114
+ packaging = "~23.2"
115
115
  pytz = ">=2022.7.1,<2023.0"
116
116
  colorclass = "~2.2"
117
117
  terminaltables = "~3.1.10"
@@ -120,6 +120,7 @@ sanic-cors = "~2.2.0"
120
120
  sanic-jwt = "^1.8.0"
121
121
  sanic-routing = "^22.8.0"
122
122
  websockets = ">=10.4,<11.0"
123
+ cloudpickle = ">=2.2.1,<3.1"
123
124
  aiohttp = ">=3.9.4,<3.10"
124
125
  questionary = ">=1.10.0,<2.1.0"
125
126
  prompt-toolkit = "^3.0.28,<3.0.29"
@@ -135,6 +136,7 @@ tensorflow_hub = "^0.13.0"
135
136
  setuptools = "~70.0.0"
136
137
  ujson = ">=5.8,<6.0"
137
138
  regex = ">=2022.10.31,<2022.11"
139
+ joblib = ">=1.2.0,<1.3.0"
138
140
  sentry-sdk = ">=1.14.0,<1.15.0"
139
141
  aio-pika = ">=8.2.3,<8.2.4"
140
142
  aiogram = ">=2.15,<2.26"
@@ -151,9 +153,10 @@ portalocker = "^2.7.0"
151
153
  pypred = "^0.4.0"
152
154
  structlog = ">=23.1.0,<23.2.0"
153
155
  structlog-sentry = "^2.0.3"
154
- langchain = "^0.0.329"
156
+ langchain = "~0.2.0"
157
+ langchain-community = "~0.2.0"
155
158
  jinja2 = "^3.1.4"
156
- openai = "^0.28.1"
159
+ openai = "~1.40.0"
157
160
  dnspython = "2.6.1"
158
161
  wheel = ">=0.40.0"
159
162
  certifi = ">=2024.2.2"
@@ -171,19 +174,20 @@ hvac = "^1.2.1"
171
174
  rich = "^13.4.2"
172
175
  cvg-python-sdk = "^0.5.1"
173
176
  presidio-analyzer = "^2.2.33, <2.2.34"
174
- presidio-anonymizer = "^2.2.33, <2.2.34"
175
- faker = "^19.13.0"
176
- python-keycloak = "^3.7.0"
177
- tiktoken = "^0.4.0"
177
+ presidio-anonymizer = "^2.2.354"
178
+ faker = "^26.0.0"
179
+ python-keycloak = "^3.12.0"
180
+ tiktoken = "~0.7.0"
178
181
  faiss-cpu = "^1.7.4"
179
182
  pycountry = "^22.3.5"
180
- pymilvus = "^2.3.6"
183
+ pymilvus = "<2.4.2" # pinned because 2.4.2 introduces milvus-lite dependency that fails on windows
181
184
  qdrant-client = "^1.9.0"
182
185
  psutil = "^5.9.5"
183
- tenacity = "~8.4.1"
186
+ tenacity = "~8.4.1" # pinned down because of langchain
184
187
  types-protobuf = "4.25.0.20240417"
185
- skops = "~0.10.0"
186
- safetensors = "~0.4.5"
188
+ litellm = "~1.44.7"
189
+ openpyxl = "^3.1.5"
190
+ diskcache = "~5.6.3"
187
191
  [[tool.poetry.dependencies.tensorflow-io-gcs-filesystem]]
188
192
  version = "==0.31" # newer versions doesn't provide wheels for Windows
189
193
  markers = "sys_platform == 'win32'"
@@ -220,6 +224,10 @@ optional = true
220
224
  version = "^2.0"
221
225
  optional = true
222
226
 
227
+ [[tool.poetry.dependencies.mlflow]]
228
+ version = "^2.15.1"
229
+ optional = true
230
+
223
231
  [tool.poetry.extras]
224
232
  spacy = [ "spacy",]
225
233
  jieba = [ "jieba",]
@@ -227,11 +235,26 @@ transformers = [ "transformers", "sentencepiece",]
227
235
  full = [ "spacy", "transformers", "sentencepiece", "jieba",]
228
236
  gh-release-notes = [ "github3.py",]
229
237
  metal = [ "tensorflow-metal",]
238
+ mlflow = [ "mlflow",]
230
239
 
231
240
  [tool.poetry.scripts]
232
241
  rasa = "rasa.__main__:main"
233
242
 
234
243
  [tool.ruff.lint]
244
+ # The following checks are disabled because they are not relevant for Rasa
245
+ # - RUF001: Checks for ambiguous Unicode characters in strings. https://docs.astral.sh/ruff/rules/ambiguous-unicode-character-string/
246
+ # - RUF002: Checks for ambiguous Unicode characters in docstrings. https://docs.astral.sh/ruff/rules/ambiguous-unicode-character-docstring/
247
+ # - RUF003: Checks for ambiguous Unicode characters in comments. https://docs.astral.sh/ruff/rules/ambiguous-unicode-character-comment/
248
+ # - RUF005: Use of + operator for string concatenation https://docs.astral.sh/ruff/rules/collection-literal-concatenation/
249
+ # Following checks are currently disabled but will be enabled in the future
250
+ # as part of the ticket https://rasahq.atlassian.net/browse/ATO-866
251
+ # - D100: Missing docstring in public module
252
+ # - D101: Missing docstring in public class
253
+ # - D102: Missing docstring in public method
254
+ # - D103: Missing docstring in public function
255
+ # - D104: Missing docstring in public package
256
+ # - D105: Missing docstring in magic method
257
+ # - D107: Missing docstring in __init__
235
258
  ignore = [ "D100", "D101", "D102", "D103", "D104", "D105", "D107", "RUF001", "RUF002", "RUF003", "RUF005",]
236
259
  select = [ "D", "E", "F", "W", "RUF",]
237
260
 
@@ -246,7 +269,7 @@ timeout_func_only = true
246
269
  asyncio_mode = "auto"
247
270
 
248
271
  [tool.poetry.dependencies.rasa-sdk]
249
- version = "3.9.1"
272
+ version = "3.10.0"
250
273
  allow-prereleases = true
251
274
 
252
275
  [tool.poetry.dependencies.keras]
@@ -324,11 +347,11 @@ pytest-cov = "^4.0.0"
324
347
  pytest-asyncio = "^0.20.0"
325
348
  pytest-xdist = "^3.2.1"
326
349
  pytest = "^7.1.3"
327
- freezegun = "^1.0.0"
350
+ freezegun = "^1.5.1"
328
351
  responses = ">=0.22,<0.25"
329
352
  aioresponses = "^0.7.2"
330
- moto = "~=4.1.2"
331
- fakeredis = "^2.11.2"
353
+ moto = "~5.0.3"
354
+ fakeredis = "^2.23.2"
332
355
  mongomock = "^4.1.2"
333
356
  towncrier = "^22.8.0"
334
357
  toml = "^0.10.0"
@@ -337,15 +360,14 @@ mypy = "^1.0.0"
337
360
  bandit = "^1.6.3"
338
361
  types-pytz = "^2022.1.1"
339
362
  types-python-dateutil = "^2.8.19"
340
- types-requests = "^2.25.0"
363
+ types-requests = "^2.31.0"
341
364
  types-setuptools = "^68.2.0"
342
365
  memory-profiler = "^0.61.0"
343
366
  mypy-extensions = ">=0.4.3,<1.1.0"
344
- sanic-testing = "^22.12.0"
367
+ sanic-testing = "~23.6.0"
345
368
  analytics-python = "^1.4.0"
346
- datadog-api-client = "^2.0.0"
369
+ datadog-api-client = "^2.25.0"
347
370
  datadog = "^0.49.1"
348
371
  types-redis = "^4.3.20"
349
- httpx = "0.23.3"
350
372
  types-protobuf = "^4.24.0"
351
373
  types-toml = "^0.10.8.7"
@@ -1,7 +1,6 @@
1
1
  import logging
2
2
 
3
- from rasa import version, plugin # noqa: F401
4
- from rasa.api import run, train, test # noqa: F401
3
+ from rasa import version
5
4
 
6
5
  # define the version before the other imports since these need it
7
6
  __version__ = version.__version__
@@ -25,6 +25,7 @@ from rasa.cli import (
25
25
  visualize,
26
26
  x,
27
27
  evaluate,
28
+ llm_fine_tuning,
28
29
  )
29
30
  from rasa.cli.arguments.default_arguments import add_logging_options
30
31
  from rasa.cli.utils import (
@@ -76,6 +77,7 @@ def create_argument_parser() -> argparse.ArgumentParser:
76
77
  export.add_subparser(subparsers, parents=parent_parsers)
77
78
  x.add_subparser(subparsers, parents=parent_parsers)
78
79
  evaluate.add_subparser(subparsers, parents=parent_parsers)
80
+ llm_fine_tuning.add_subparser(subparsers, parent_parsers)
79
81
  plugin_manager().hook.refine_cli(
80
82
  subparsers=subparsers, parent_parsers=parent_parsers
81
83
  )
@@ -85,12 +87,15 @@ def create_argument_parser() -> argparse.ArgumentParser:
85
87
 
86
88
  def print_version() -> None:
87
89
  """Prints version information of rasa tooling and python."""
90
+ from rasa.utils.licensing import get_license_expiration_date
91
+
88
92
  print(f"Rasa Version : {version.__version__}")
89
93
  print(f"Minimum Compatible Version: {MINIMUM_COMPATIBLE_VERSION}")
90
94
  print(f"Rasa SDK Version : {rasa_sdk_version}")
91
95
  print(f"Python Version : {platform.python_version()}")
92
96
  print(f"Operating System : {platform.platform()}")
93
97
  print(f"Python Path : {sys.executable}")
98
+ print(f"License Expires : {get_license_expiration_date()}")
94
99
 
95
100
 
96
101
  def main() -> None:
@@ -123,7 +123,7 @@ class AnonymizationRuleExecutor:
123
123
  else None
124
124
  )
125
125
 
126
- self.anonymizer_engine = AnonymizerEngine()
126
+ self.anonymizer_engine = AnonymizerEngine() # type: ignore
127
127
 
128
128
  @staticmethod
129
129
  def _validate_anonymization_rule_list(
@@ -146,7 +146,7 @@ class AnonymizationRuleExecutor:
146
146
 
147
147
  return True
148
148
 
149
- def run(self, text: Text) -> Text:
149
+ def run(self, text: Text) -> Optional[Text]:
150
150
  """Anonymizes the given text using the given anonymization rule list."""
151
151
  if (
152
152
  self.analyzer is None
@@ -1,6 +1,8 @@
1
- from typing import Any, Text, Dict, Union, List, Optional, TYPE_CHECKING
2
1
  import asyncio
2
+ from typing import TYPE_CHECKING, Any, Dict, List, Optional, Text, Union
3
+
3
4
  import rasa.shared.constants
5
+ from rasa.nlu.persistor import StorageType
4
6
 
5
7
  # WARNING: Be careful about adding any top level imports at this place!
6
8
  # These functions are imported in `rasa.__init__` and any top level import
@@ -15,11 +17,11 @@ if TYPE_CHECKING:
15
17
 
16
18
 
17
19
  def run(
18
- model: "Text",
19
- endpoints: "Text",
20
- connector: "Optional[Text]" = None,
21
- credentials: "Optional[Text]" = None,
22
- **kwargs: "Dict[Text, Any]",
20
+ model: Text,
21
+ endpoints: Text,
22
+ connector: Optional[Text] = None,
23
+ credentials: Optional[Text] = None,
24
+ **kwargs: Dict[Text, Any],
23
25
  ) -> None:
24
26
  """Runs a Rasa model.
25
27
 
@@ -34,10 +36,10 @@ def run(
34
36
 
35
37
  """
36
38
  import rasa.core.run
37
- from rasa.core.utils import AvailableEndpoints
38
- from rasa.shared.utils.cli import print_warning
39
39
  import rasa.shared.utils.common
40
+ from rasa.core.utils import AvailableEndpoints
40
41
  from rasa.shared.constants import DOCS_BASE_URL
42
+ from rasa.shared.utils.cli import print_warning
41
43
 
42
44
  _endpoints = AvailableEndpoints.read_endpoints(endpoints)
43
45
 
@@ -63,18 +65,19 @@ def run(
63
65
 
64
66
 
65
67
  def train(
66
- domain: "Text",
67
- config: "Text",
68
+ domain: Text,
69
+ config: Text,
68
70
  training_files: "Union[Text, List[Text]]",
69
- output: "Text" = rasa.shared.constants.DEFAULT_MODELS_PATH,
71
+ output: Text = rasa.shared.constants.DEFAULT_MODELS_PATH,
70
72
  dry_run: bool = False,
71
73
  force_training: bool = False,
72
- fixed_model_name: "Optional[Text]" = None,
74
+ fixed_model_name: Optional[Text] = None,
73
75
  persist_nlu_training_data: bool = False,
74
- core_additional_arguments: "Optional[Dict]" = None,
75
- nlu_additional_arguments: "Optional[Dict]" = None,
76
- model_to_finetune: "Optional[Text]" = None,
76
+ core_additional_arguments: Optional[Dict] = None,
77
+ nlu_additional_arguments: Optional[Dict] = None,
78
+ model_to_finetune: Optional[Text] = None,
77
79
  finetuning_epoch_fraction: float = 1.0,
80
+ remote_storage: Optional[StorageType] = None,
78
81
  ) -> "TrainingResult":
79
82
  """Runs Rasa Core and NLU training in `async` loop.
80
83
 
@@ -96,6 +99,7 @@ def train(
96
99
  a directory in case the latest trained model should be used.
97
100
  finetuning_epoch_fraction: The fraction currently specified training epochs
98
101
  in the model configuration which should be used for finetuning.
102
+ remote_storage: Remote storage to use for model storage.
99
103
 
100
104
  Returns:
101
105
  An instance of `TrainingResult`.
@@ -116,16 +120,17 @@ def train(
116
120
  nlu_additional_arguments=nlu_additional_arguments,
117
121
  model_to_finetune=model_to_finetune,
118
122
  finetuning_epoch_fraction=finetuning_epoch_fraction,
123
+ remote_storage=remote_storage,
119
124
  )
120
125
  )
121
126
 
122
127
 
123
128
  def test(
124
- model: "Text",
125
- stories: "Text",
126
- nlu_data: "Text",
127
- output: "Text" = rasa.shared.constants.DEFAULT_RESULTS_PATH,
128
- additional_arguments: "Optional[Dict]" = None,
129
+ model: Text,
130
+ stories: Text,
131
+ nlu_data: Text,
132
+ output: Text = rasa.shared.constants.DEFAULT_RESULTS_PATH,
133
+ additional_arguments: Optional[Dict] = None,
129
134
  ) -> None:
130
135
  """Test a Rasa model against a set of test data.
131
136
 
@@ -136,8 +141,7 @@ def test(
136
141
  output: path to folder where all output will be stored
137
142
  additional_arguments: additional arguments for the test call
138
143
  """
139
- from rasa.model_testing import test_core
140
- from rasa.model_testing import test_nlu
144
+ from rasa.model_testing import test_core, test_nlu
141
145
 
142
146
  if additional_arguments is None:
143
147
  additional_arguments = {}
@@ -10,8 +10,8 @@ from rasa.cli.arguments.default_arguments import (
10
10
  from rasa.shared.constants import DEFAULT_CONVERTED_DATA_PATH
11
11
 
12
12
 
13
- def set_convert_arguments(parser: argparse.ArgumentParser, data_type: Text) -> None:
14
- """Sets convert command arguments."""
13
+ def set_convert_nlu_arguments(parser: argparse.ArgumentParser, data_type: Text) -> None:
14
+ """Sets convert nlu command arguments."""
15
15
  parser.add_argument(
16
16
  "-f",
17
17
  "--format",
@@ -32,6 +32,31 @@ def set_convert_arguments(parser: argparse.ArgumentParser, data_type: Text) -> N
32
32
  parser.add_argument("-l", "--language", default="en", help="Language of data.")
33
33
 
34
34
 
35
+ def set_convert_e2e_arguments(parser: argparse.ArgumentParser) -> None:
36
+ """Sets convert e2e command arguments.
37
+
38
+ Args:
39
+ parser: Parser we are going to attach arguments to.
40
+ """
41
+ parser.add_argument(
42
+ "path",
43
+ type=str,
44
+ help="Path to the input CSV or XLS/XLSX file.",
45
+ )
46
+ parser.add_argument(
47
+ "-o",
48
+ "--output",
49
+ type=str,
50
+ default="e2e_tests",
51
+ help="Output directory to store the tests.",
52
+ )
53
+ parser.add_argument(
54
+ "--sheet-name",
55
+ type=str,
56
+ help="Worksheet name containing relevant data. Mandatory for Excel file input.",
57
+ )
58
+
59
+
35
60
  def set_split_arguments(parser: argparse.ArgumentParser) -> None:
36
61
  add_nlu_data_param(parser, help_text="File or folder containing your NLU data.")
37
62