rasa-pro 3.8.17__tar.gz → 3.9.14__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 (908) hide show
  1. rasa_pro-3.9.14/PKG-INFO +528 -0
  2. rasa_pro-3.9.14/README.md +380 -0
  3. rasa_pro-3.9.14/pyproject.toml +351 -0
  4. rasa_pro-3.9.14/rasa/__main__.py +156 -0
  5. rasa_pro-3.9.14/rasa/anonymization/anonymization_pipeline.py +286 -0
  6. rasa_pro-3.9.14/rasa/anonymization/anonymization_rule_executor.py +260 -0
  7. rasa_pro-3.9.14/rasa/anonymization/utils.py +118 -0
  8. rasa_pro-3.9.14/rasa/api.py +146 -0
  9. rasa_pro-3.9.14/rasa/cli/arguments/default_arguments.py +165 -0
  10. rasa_pro-3.9.14/rasa/cli/arguments/run.py +204 -0
  11. rasa_pro-3.9.14/rasa/cli/arguments/test.py +211 -0
  12. rasa_pro-3.9.14/rasa/cli/arguments/train.py +263 -0
  13. rasa_pro-3.9.14/rasa/cli/e2e_test.py +586 -0
  14. rasa_pro-3.9.14/rasa/cli/export.py +250 -0
  15. rasa_pro-3.9.14/rasa/cli/license.py +65 -0
  16. rasa_pro-3.9.14/rasa/cli/project_templates/calm/actions/action_template.py +27 -0
  17. rasa_pro-3.9.14/rasa/cli/project_templates/calm/config.yml +12 -0
  18. rasa_pro-3.9.14/rasa/cli/project_templates/calm/credentials.yml +33 -0
  19. rasa_pro-3.9.14/rasa/cli/project_templates/calm/data/flows/add_contact.yml +31 -0
  20. rasa_pro-3.9.14/rasa/cli/project_templates/calm/data/flows/remove_contact.yml +29 -0
  21. rasa_pro-3.9.14/rasa/cli/project_templates/calm/domain/add_contact.yml +39 -0
  22. rasa_pro-3.9.14/rasa/cli/project_templates/calm/domain/list_contacts.yml +17 -0
  23. rasa_pro-3.9.14/rasa/cli/project_templates/calm/domain/remove_contact.yml +38 -0
  24. rasa_pro-3.9.14/rasa/cli/project_templates/calm/domain/shared.yml +10 -0
  25. rasa_pro-3.9.14/rasa/cli/project_templates/calm/endpoints.yml +45 -0
  26. rasa_pro-3.9.14/rasa/cli/project_templates/default/actions/actions.py +27 -0
  27. rasa_pro-3.9.14/rasa/cli/project_templates/default/config.yml +44 -0
  28. rasa_pro-3.9.14/rasa/cli/project_templates/default/credentials.yml +33 -0
  29. rasa_pro-3.9.14/rasa/cli/project_templates/default/endpoints.yml +42 -0
  30. rasa_pro-3.9.14/rasa/cli/project_templates/default/tests/test_stories.yml +91 -0
  31. rasa_pro-3.9.14/rasa/cli/project_templates/tutorial/config.yml +11 -0
  32. rasa_pro-3.9.14/rasa/cli/project_templates/tutorial/credentials.yml +33 -0
  33. rasa_pro-3.9.14/rasa/cli/project_templates/tutorial/data/patterns.yml +6 -0
  34. rasa_pro-3.9.14/rasa/cli/project_templates/tutorial/domain.yml +21 -0
  35. rasa_pro-3.9.14/rasa/cli/project_templates/tutorial/endpoints.yml +45 -0
  36. rasa_pro-3.9.14/rasa/cli/run.py +135 -0
  37. rasa_pro-3.9.14/rasa/cli/scaffold.py +269 -0
  38. rasa_pro-3.9.14/rasa/cli/studio/download.py +62 -0
  39. rasa_pro-3.9.14/rasa/cli/studio/studio.py +266 -0
  40. rasa_pro-3.9.14/rasa/cli/studio/upload.py +77 -0
  41. rasa_pro-3.9.14/rasa/cli/telemetry.py +102 -0
  42. rasa_pro-3.9.14/rasa/cli/utils.py +464 -0
  43. rasa_pro-3.9.14/rasa/cli/x.py +206 -0
  44. rasa_pro-3.9.14/rasa/core/actions/action.py +1225 -0
  45. rasa_pro-3.9.14/rasa/core/actions/action_exceptions.py +24 -0
  46. rasa_pro-3.9.14/rasa/core/actions/constants.py +5 -0
  47. rasa_pro-3.9.14/rasa/core/actions/custom_action_executor.py +188 -0
  48. rasa_pro-3.9.14/rasa/core/actions/forms.py +741 -0
  49. rasa_pro-3.9.14/rasa/core/actions/grpc_custom_action_executor.py +251 -0
  50. rasa_pro-3.9.14/rasa/core/actions/http_custom_action_executor.py +140 -0
  51. rasa_pro-3.9.14/rasa/core/actions/loops.py +114 -0
  52. rasa_pro-3.9.14/rasa/core/actions/two_stage_fallback.py +186 -0
  53. rasa_pro-3.9.14/rasa/core/agent.py +555 -0
  54. rasa_pro-3.9.14/rasa/core/brokers/pika.py +386 -0
  55. rasa_pro-3.9.14/rasa/core/channels/audiocodes.py +463 -0
  56. rasa_pro-3.9.14/rasa/core/channels/botframework.py +338 -0
  57. rasa_pro-3.9.14/rasa/core/channels/callback.py +84 -0
  58. rasa_pro-3.9.14/rasa/core/channels/console.py +241 -0
  59. rasa_pro-3.9.14/rasa/core/channels/development_inspector.py +93 -0
  60. rasa_pro-3.9.14/rasa/core/channels/facebook.py +419 -0
  61. rasa_pro-3.9.14/rasa/core/channels/hangouts.py +329 -0
  62. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/arc-b6e548fe.js +1 -0
  63. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/c4Diagram-d0fbc5ce-fa03ac9e.js +10 -0
  64. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/classDiagram-936ed81e-ee67392a.js +2 -0
  65. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/classDiagram-v2-c3cb15f1-9b283fae.js +2 -0
  66. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/createText-62fc7601-8b6fcc2a.js +7 -0
  67. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/edges-f2ad444c-22e77f4f.js +4 -0
  68. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/erDiagram-9d236eb7-60ffc87f.js +51 -0
  69. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/flowDb-1972c806-9dd802e4.js +6 -0
  70. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/flowDiagram-7ea5b25a-5fa1912f.js +4 -0
  71. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/flowDiagram-v2-855bc5b3-1844e5a5.js +1 -0
  72. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/flowchart-elk-definition-abe16c3d-622a1fd2.js +139 -0
  73. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/ganttDiagram-9b5ea136-e285a63a.js +266 -0
  74. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/gitGraphDiagram-99d0ae7c-f237bdca.js +70 -0
  75. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/index-2c4b9a3b-4b03d70e.js +1 -0
  76. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/index-a5d3e69d.js +1040 -0
  77. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/infoDiagram-736b4530-72a0fa5f.js +7 -0
  78. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/journeyDiagram-df861f2b-82218c41.js +139 -0
  79. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/layout-78cff630.js +1 -0
  80. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/line-5038b469.js +1 -0
  81. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/linear-c4fc4098.js +1 -0
  82. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/mindmap-definition-beec6740-c33c8ea6.js +109 -0
  83. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/pieDiagram-dbbf0591-a8d03059.js +35 -0
  84. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/quadrantDiagram-4d7f4fd6-6a0e56b2.js +7 -0
  85. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/requirementDiagram-6fc4c22a-2dc7c7bd.js +52 -0
  86. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/sankeyDiagram-8f13d901-2360fe39.js +8 -0
  87. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/sequenceDiagram-b655622a-41b9f9ad.js +122 -0
  88. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/stateDiagram-59f0c015-0aad326f.js +1 -0
  89. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/stateDiagram-v2-2b26beab-9847d984.js +1 -0
  90. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/styles-080da4f6-564d890e.js +110 -0
  91. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/styles-3dcbcfbf-38957613.js +159 -0
  92. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/styles-9c745c82-f0fc6921.js +207 -0
  93. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/svgDrawCommon-4835440b-ef3c5a77.js +1 -0
  94. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/timeline-definition-5b62e21b-bf3e91c1.js +61 -0
  95. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/assets/xychartDiagram-2b33534f-4d4026c0.js +7 -0
  96. rasa_pro-3.9.14/rasa/core/channels/inspector/dist/index.html +39 -0
  97. rasa_pro-3.9.14/rasa/core/channels/inspector/src/components/DiagramFlow.tsx +107 -0
  98. rasa_pro-3.9.14/rasa/core/channels/inspector/src/helpers/formatters.test.ts +382 -0
  99. rasa_pro-3.9.14/rasa/core/channels/inspector/src/helpers/formatters.ts +240 -0
  100. rasa_pro-3.9.14/rasa/core/channels/rest.py +225 -0
  101. rasa_pro-3.9.14/rasa/core/channels/rocketchat.py +174 -0
  102. rasa_pro-3.9.14/rasa/core/channels/socketio.py +274 -0
  103. rasa_pro-3.9.14/rasa/core/channels/telegram.py +298 -0
  104. rasa_pro-3.9.14/rasa/core/channels/webexteams.py +134 -0
  105. rasa_pro-3.9.14/rasa/core/concurrent_lock_store.py +210 -0
  106. rasa_pro-3.9.14/rasa/core/evaluation/marker_base.py +923 -0
  107. rasa_pro-3.9.14/rasa/core/evaluation/marker_stats.py +293 -0
  108. rasa_pro-3.9.14/rasa/core/featurizers/single_state_featurizer.py +400 -0
  109. rasa_pro-3.9.14/rasa/core/featurizers/tracker_featurizers.py +1165 -0
  110. rasa_pro-3.9.14/rasa/core/information_retrieval/__init__.py +7 -0
  111. rasa_pro-3.9.14/rasa/core/information_retrieval/faiss.py +121 -0
  112. rasa_pro-3.9.14/rasa/core/information_retrieval/information_retrieval.py +129 -0
  113. rasa_pro-3.9.14/rasa/core/information_retrieval/milvus.py +52 -0
  114. rasa_pro-3.9.14/rasa/core/information_retrieval/qdrant.py +95 -0
  115. rasa_pro-3.9.14/rasa/core/lock_store.py +343 -0
  116. rasa_pro-3.9.14/rasa/core/migrate.py +403 -0
  117. rasa_pro-3.9.14/rasa/core/nlg/callback.py +146 -0
  118. rasa_pro-3.9.14/rasa/core/policies/enterprise_search_policy.py +781 -0
  119. rasa_pro-3.9.14/rasa/core/policies/enterprise_search_prompt_template.jinja2 +25 -0
  120. rasa_pro-3.9.14/rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2 +60 -0
  121. rasa_pro-3.9.14/rasa/core/policies/flows/flow_executor.py +684 -0
  122. rasa_pro-3.9.14/rasa/core/policies/intentless_policy.py +922 -0
  123. rasa_pro-3.9.14/rasa/core/policies/memoization.py +538 -0
  124. rasa_pro-3.9.14/rasa/core/policies/policy.py +725 -0
  125. rasa_pro-3.9.14/rasa/core/policies/rule_policy.py +1273 -0
  126. rasa_pro-3.9.14/rasa/core/policies/ted_policy.py +2144 -0
  127. rasa_pro-3.9.14/rasa/core/policies/unexpected_intent_policy.py +1014 -0
  128. rasa_pro-3.9.14/rasa/core/processor.py +1420 -0
  129. rasa_pro-3.9.14/rasa/core/run.py +331 -0
  130. rasa_pro-3.9.14/rasa/core/secrets_manager/endpoints.py +391 -0
  131. rasa_pro-3.9.14/rasa/core/secrets_manager/vault.py +574 -0
  132. rasa_pro-3.9.14/rasa/core/test.py +1335 -0
  133. rasa_pro-3.9.14/rasa/core/tracker_store.py +1699 -0
  134. rasa_pro-3.9.14/rasa/core/train.py +105 -0
  135. rasa_pro-3.9.14/rasa/core/training/interactive.py +1745 -0
  136. rasa_pro-3.9.14/rasa/core/utils.py +339 -0
  137. rasa_pro-3.9.14/rasa/dialogue_understanding/coexistence/intent_based_router.py +196 -0
  138. rasa_pro-3.9.14/rasa/dialogue_understanding/coexistence/llm_based_router.py +260 -0
  139. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/__init__.py +49 -0
  140. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/can_not_handle_command.py +70 -0
  141. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/cancel_flow_command.py +125 -0
  142. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/change_flow_command.py +38 -0
  143. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/chit_chat_answer_command.py +57 -0
  144. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/clarify_command.py +86 -0
  145. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/correct_slots_command.py +297 -0
  146. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/error_command.py +79 -0
  147. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/handle_code_change_command.py +73 -0
  148. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/human_handoff_command.py +66 -0
  149. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/knowledge_answer_command.py +57 -0
  150. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/noop_command.py +54 -0
  151. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/set_slot_command.py +156 -0
  152. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/skip_question_command.py +75 -0
  153. rasa_pro-3.9.14/rasa/dialogue_understanding/commands/start_flow_command.py +107 -0
  154. rasa_pro-3.9.14/rasa/dialogue_understanding/generator/__init__.py +21 -0
  155. rasa_pro-3.9.14/rasa/dialogue_understanding/generator/command_generator.py +343 -0
  156. rasa_pro-3.9.14/rasa/dialogue_understanding/generator/constants.py +18 -0
  157. rasa_pro-3.9.14/rasa/dialogue_understanding/generator/flow_retrieval.py +412 -0
  158. rasa_pro-3.9.14/rasa/dialogue_understanding/generator/llm_based_command_generator.py +467 -0
  159. rasa_pro-3.9.14/rasa/dialogue_understanding/generator/llm_command_generator.py +67 -0
  160. rasa_pro-3.9.14/rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2 +62 -0
  161. rasa_pro-3.9.14/rasa/dialogue_understanding/generator/multi_step/handle_flows_prompt.jinja2 +38 -0
  162. rasa_pro-3.9.14/rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py +827 -0
  163. rasa_pro-3.9.14/rasa/dialogue_understanding/generator/nlu_command_adapter.py +218 -0
  164. rasa_pro-3.9.14/rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py +345 -0
  165. rasa_pro-3.9.14/rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml +248 -0
  166. rasa_pro-3.9.14/rasa/dialogue_understanding/processor/command_processor.py +686 -0
  167. rasa_pro-3.9.14/rasa/e2e_test/constants.py +11 -0
  168. rasa_pro-3.9.14/rasa/e2e_test/e2e_test_case.py +366 -0
  169. rasa_pro-3.9.14/rasa/e2e_test/e2e_test_runner.py +762 -0
  170. rasa_pro-3.9.14/rasa/e2e_test/e2e_test_schema.yml +85 -0
  171. rasa_pro-3.9.14/rasa/engine/caching.py +463 -0
  172. rasa_pro-3.9.14/rasa/engine/graph.py +637 -0
  173. rasa_pro-3.9.14/rasa/engine/recipes/config_files/default_config.yml +44 -0
  174. rasa_pro-3.9.14/rasa/engine/recipes/default_components.py +99 -0
  175. rasa_pro-3.9.14/rasa/engine/recipes/default_recipe.py +1251 -0
  176. rasa_pro-3.9.14/rasa/engine/recipes/recipe.py +93 -0
  177. rasa_pro-3.9.14/rasa/engine/runner/dask.py +250 -0
  178. rasa_pro-3.9.14/rasa/engine/storage/local_model_storage.py +246 -0
  179. rasa_pro-3.9.14/rasa/engine/validation.py +873 -0
  180. rasa_pro-3.9.14/rasa/exceptions.py +69 -0
  181. rasa_pro-3.9.14/rasa/graph_components/validators/default_recipe_validator.py +550 -0
  182. rasa_pro-3.9.14/rasa/hooks.py +112 -0
  183. rasa_pro-3.9.14/rasa/model.py +118 -0
  184. rasa_pro-3.9.14/rasa/model_training.py +536 -0
  185. rasa_pro-3.9.14/rasa/nlu/classifiers/diet_classifier.py +1868 -0
  186. rasa_pro-3.9.14/rasa/nlu/extractors/crf_entity_extractor.py +672 -0
  187. rasa_pro-3.9.14/rasa/nlu/extractors/duckling_entity_extractor.py +206 -0
  188. rasa_pro-3.9.14/rasa/nlu/featurizers/dense_featurizer/convert_featurizer.py +445 -0
  189. rasa_pro-3.9.14/rasa/nlu/featurizers/dense_featurizer/lm_featurizer.py +768 -0
  190. rasa_pro-3.9.14/rasa/nlu/featurizers/featurizer.py +89 -0
  191. rasa_pro-3.9.14/rasa/nlu/featurizers/sparse_featurizer/count_vectors_featurizer.py +838 -0
  192. rasa_pro-3.9.14/rasa/nlu/featurizers/sparse_featurizer/lexical_syntactic_featurizer.py +536 -0
  193. rasa_pro-3.9.14/rasa/nlu/persistor.py +282 -0
  194. rasa_pro-3.9.14/rasa/nlu/selectors/response_selector.py +987 -0
  195. rasa_pro-3.9.14/rasa/nlu/test.py +1940 -0
  196. rasa_pro-3.9.14/rasa/nlu/utils/hugging_face/registry.py +108 -0
  197. rasa_pro-3.9.14/rasa/nlu/utils/spacy_utils.py +310 -0
  198. rasa_pro-3.9.14/rasa/server.py +1551 -0
  199. rasa_pro-3.9.14/rasa/shared/constants.py +192 -0
  200. rasa_pro-3.9.14/rasa/shared/core/command_payload_reader.py +109 -0
  201. rasa_pro-3.9.14/rasa/shared/core/constants.py +167 -0
  202. rasa_pro-3.9.14/rasa/shared/core/domain.py +2107 -0
  203. rasa_pro-3.9.14/rasa/shared/core/events.py +2504 -0
  204. rasa_pro-3.9.14/rasa/shared/core/flows/flow.py +362 -0
  205. rasa_pro-3.9.14/rasa/shared/core/flows/flows_list.py +223 -0
  206. rasa_pro-3.9.14/rasa/shared/core/flows/steps/action.py +56 -0
  207. rasa_pro-3.9.14/rasa/shared/core/generator.py +908 -0
  208. rasa_pro-3.9.14/rasa/shared/core/slot_mappings.py +526 -0
  209. rasa_pro-3.9.14/rasa/shared/core/slots.py +649 -0
  210. rasa_pro-3.9.14/rasa/shared/core/trackers.py +1177 -0
  211. rasa_pro-3.9.14/rasa/shared/core/training_data/loading.py +89 -0
  212. rasa_pro-3.9.14/rasa/shared/core/training_data/story_reader/story_reader.py +129 -0
  213. rasa_pro-3.9.14/rasa/shared/core/training_data/story_reader/yaml_story_reader.py +888 -0
  214. rasa_pro-3.9.14/rasa/shared/core/training_data/story_writer/yaml_story_writer.py +444 -0
  215. rasa_pro-3.9.14/rasa/shared/core/training_data/structures.py +838 -0
  216. rasa_pro-3.9.14/rasa/shared/core/training_data/visualization.py +603 -0
  217. rasa_pro-3.9.14/rasa/shared/data.py +249 -0
  218. rasa_pro-3.9.14/rasa/shared/exceptions.py +163 -0
  219. rasa_pro-3.9.14/rasa/shared/importers/importer.py +704 -0
  220. rasa_pro-3.9.14/rasa/shared/importers/rasa.py +99 -0
  221. rasa_pro-3.9.14/rasa/shared/nlu/constants.py +47 -0
  222. rasa_pro-3.9.14/rasa/shared/nlu/training_data/entities_parser.py +208 -0
  223. rasa_pro-3.9.14/rasa/shared/nlu/training_data/formats/dialogflow.py +163 -0
  224. rasa_pro-3.9.14/rasa/shared/nlu/training_data/formats/rasa_yaml.py +603 -0
  225. rasa_pro-3.9.14/rasa/shared/nlu/training_data/formats/readerwriter.py +244 -0
  226. rasa_pro-3.9.14/rasa/shared/nlu/training_data/message.py +490 -0
  227. rasa_pro-3.9.14/rasa/shared/nlu/training_data/training_data.py +730 -0
  228. rasa_pro-3.9.14/rasa/shared/providers/openai/session_handler.py +110 -0
  229. rasa_pro-3.9.14/rasa/shared/utils/constants.py +4 -0
  230. rasa_pro-3.9.14/rasa/shared/utils/io.py +414 -0
  231. rasa_pro-3.9.14/rasa/shared/utils/llm.py +404 -0
  232. rasa_pro-3.9.14/rasa/shared/utils/pykwalify_extensions.py +27 -0
  233. rasa_pro-3.9.14/rasa/shared/utils/schemas/domain.yml +145 -0
  234. rasa_pro-3.9.14/rasa/shared/utils/yaml.py +786 -0
  235. rasa_pro-3.9.14/rasa/studio/auth.py +268 -0
  236. rasa_pro-3.9.14/rasa/studio/constants.py +18 -0
  237. rasa_pro-3.9.14/rasa/studio/data_handler.py +359 -0
  238. rasa_pro-3.9.14/rasa/studio/download.py +483 -0
  239. rasa_pro-3.9.14/rasa/studio/results_logger.py +137 -0
  240. rasa_pro-3.9.14/rasa/studio/train.py +135 -0
  241. rasa_pro-3.9.14/rasa/studio/upload.py +433 -0
  242. rasa_pro-3.9.14/rasa/telemetry.py +1737 -0
  243. rasa_pro-3.9.14/rasa/tracing/config.py +353 -0
  244. rasa_pro-3.9.14/rasa/tracing/constants.py +62 -0
  245. rasa_pro-3.9.14/rasa/tracing/instrumentation/attribute_extractors.py +672 -0
  246. rasa_pro-3.9.14/rasa/tracing/instrumentation/instrumentation.py +1185 -0
  247. rasa_pro-3.9.14/rasa/tracing/instrumentation/intentless_policy_instrumentation.py +144 -0
  248. rasa_pro-3.9.14/rasa/tracing/instrumentation/metrics.py +294 -0
  249. rasa_pro-3.9.14/rasa/tracing/metric_instrument_provider.py +205 -0
  250. rasa_pro-3.9.14/rasa/utils/cli.py +28 -0
  251. rasa_pro-3.9.14/rasa/utils/common.py +635 -0
  252. rasa_pro-3.9.14/rasa/utils/endpoints.py +302 -0
  253. rasa_pro-3.9.14/rasa/utils/io.py +326 -0
  254. rasa_pro-3.9.14/rasa/utils/licensing.py +534 -0
  255. rasa_pro-3.9.14/rasa/utils/ml_utils.py +145 -0
  256. rasa_pro-3.9.14/rasa/utils/tensorflow/__init__.py +0 -0
  257. rasa_pro-3.9.14/rasa/utils/tensorflow/data_generator.py +440 -0
  258. rasa_pro-3.9.14/rasa/utils/tensorflow/environment.py +161 -0
  259. rasa_pro-3.9.14/rasa/utils/tensorflow/model_data.py +989 -0
  260. rasa_pro-3.9.14/rasa/utils/tensorflow/model_data_utils.py +499 -0
  261. rasa_pro-3.9.14/rasa/utils/tensorflow/models.py +935 -0
  262. rasa_pro-3.9.14/rasa/utils/tensorflow/rasa_layers.py +1094 -0
  263. rasa_pro-3.9.14/rasa/utils/train_utils.py +572 -0
  264. rasa_pro-3.9.14/rasa/utils/url_tools.py +53 -0
  265. rasa_pro-3.9.14/rasa/validator.py +1337 -0
  266. rasa_pro-3.9.14/rasa/version.py +3 -0
  267. rasa_pro-3.8.17/PKG-INFO +0 -528
  268. rasa_pro-3.8.17/README.md +0 -380
  269. rasa_pro-3.8.17/pyproject.toml +0 -353
  270. rasa_pro-3.8.17/rasa/__main__.py +0 -151
  271. rasa_pro-3.8.17/rasa/anonymization/anonymization_pipeline.py +0 -287
  272. rasa_pro-3.8.17/rasa/anonymization/anonymization_rule_executor.py +0 -260
  273. rasa_pro-3.8.17/rasa/anonymization/utils.py +0 -117
  274. rasa_pro-3.8.17/rasa/api.py +0 -146
  275. rasa_pro-3.8.17/rasa/cli/arguments/default_arguments.py +0 -165
  276. rasa_pro-3.8.17/rasa/cli/arguments/run.py +0 -204
  277. rasa_pro-3.8.17/rasa/cli/arguments/test.py +0 -211
  278. rasa_pro-3.8.17/rasa/cli/arguments/train.py +0 -263
  279. rasa_pro-3.8.17/rasa/cli/e2e_test.py +0 -566
  280. rasa_pro-3.8.17/rasa/cli/export.py +0 -251
  281. rasa_pro-3.8.17/rasa/cli/license.py +0 -65
  282. rasa_pro-3.8.17/rasa/cli/project_templates/calm/actions/action_template.py +0 -27
  283. rasa_pro-3.8.17/rasa/cli/project_templates/calm/config.yml +0 -12
  284. rasa_pro-3.8.17/rasa/cli/project_templates/calm/credentials.yml +0 -33
  285. rasa_pro-3.8.17/rasa/cli/project_templates/calm/data/flows/add_contact.yml +0 -31
  286. rasa_pro-3.8.17/rasa/cli/project_templates/calm/data/flows/remove_contact.yml +0 -29
  287. rasa_pro-3.8.17/rasa/cli/project_templates/calm/domain/add_contact.yml +0 -33
  288. rasa_pro-3.8.17/rasa/cli/project_templates/calm/domain/list_contacts.yml +0 -14
  289. rasa_pro-3.8.17/rasa/cli/project_templates/calm/domain/remove_contact.yml +0 -31
  290. rasa_pro-3.8.17/rasa/cli/project_templates/calm/domain/shared.yml +0 -5
  291. rasa_pro-3.8.17/rasa/cli/project_templates/calm/endpoints.yml +0 -45
  292. rasa_pro-3.8.17/rasa/cli/project_templates/default/actions/actions.py +0 -27
  293. rasa_pro-3.8.17/rasa/cli/project_templates/default/config.yml +0 -44
  294. rasa_pro-3.8.17/rasa/cli/project_templates/default/credentials.yml +0 -33
  295. rasa_pro-3.8.17/rasa/cli/project_templates/default/endpoints.yml +0 -42
  296. rasa_pro-3.8.17/rasa/cli/project_templates/default/tests/test_stories.yml +0 -91
  297. rasa_pro-3.8.17/rasa/cli/project_templates/tutorial/config.yml +0 -11
  298. rasa_pro-3.8.17/rasa/cli/project_templates/tutorial/credentials.yml +0 -33
  299. rasa_pro-3.8.17/rasa/cli/project_templates/tutorial/domain.yml +0 -17
  300. rasa_pro-3.8.17/rasa/cli/project_templates/tutorial/endpoints.yml +0 -45
  301. rasa_pro-3.8.17/rasa/cli/run.py +0 -136
  302. rasa_pro-3.8.17/rasa/cli/scaffold.py +0 -268
  303. rasa_pro-3.8.17/rasa/cli/studio/download.py +0 -51
  304. rasa_pro-3.8.17/rasa/cli/studio/studio.py +0 -110
  305. rasa_pro-3.8.17/rasa/cli/studio/upload.py +0 -85
  306. rasa_pro-3.8.17/rasa/cli/telemetry.py +0 -90
  307. rasa_pro-3.8.17/rasa/cli/utils.py +0 -453
  308. rasa_pro-3.8.17/rasa/cli/x.py +0 -205
  309. rasa_pro-3.8.17/rasa/core/actions/action.py +0 -1450
  310. rasa_pro-3.8.17/rasa/core/actions/constants.py +0 -2
  311. rasa_pro-3.8.17/rasa/core/actions/forms.py +0 -737
  312. rasa_pro-3.8.17/rasa/core/actions/loops.py +0 -111
  313. rasa_pro-3.8.17/rasa/core/actions/two_stage_fallback.py +0 -186
  314. rasa_pro-3.8.17/rasa/core/agent.py +0 -557
  315. rasa_pro-3.8.17/rasa/core/brokers/pika.py +0 -387
  316. rasa_pro-3.8.17/rasa/core/channels/audiocodes.py +0 -463
  317. rasa_pro-3.8.17/rasa/core/channels/botframework.py +0 -339
  318. rasa_pro-3.8.17/rasa/core/channels/callback.py +0 -85
  319. rasa_pro-3.8.17/rasa/core/channels/console.py +0 -243
  320. rasa_pro-3.8.17/rasa/core/channels/development_inspector.py +0 -93
  321. rasa_pro-3.8.17/rasa/core/channels/facebook.py +0 -422
  322. rasa_pro-3.8.17/rasa/core/channels/hangouts.py +0 -335
  323. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/arc-5623b6dc.js +0 -1
  324. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/c4Diagram-d0fbc5ce-685c106a.js +0 -10
  325. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/classDiagram-936ed81e-8cbed007.js +0 -2
  326. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/classDiagram-v2-c3cb15f1-5889cf12.js +0 -2
  327. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/createText-62fc7601-24c249d7.js +0 -7
  328. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/edges-f2ad444c-7dd06a75.js +0 -4
  329. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/erDiagram-9d236eb7-62c1e54c.js +0 -51
  330. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/flowDb-1972c806-ce49b86f.js +0 -6
  331. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/flowDiagram-7ea5b25a-4067e48f.js +0 -4
  332. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/flowDiagram-v2-855bc5b3-85583a23.js +0 -1
  333. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/flowchart-elk-definition-abe16c3d-59fe4051.js +0 -139
  334. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/ganttDiagram-9b5ea136-47e3a43b.js +0 -266
  335. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/gitGraphDiagram-99d0ae7c-5a2ac0d9.js +0 -70
  336. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/index-268a75c0.js +0 -1040
  337. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/index-2c4b9a3b-dfb8efc4.js +0 -1
  338. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/infoDiagram-736b4530-b0c470f2.js +0 -7
  339. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/journeyDiagram-df861f2b-2edb829a.js +0 -139
  340. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/layout-b6873d69.js +0 -1
  341. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/line-1efc5781.js +0 -1
  342. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/linear-661e9b94.js +0 -1
  343. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/mindmap-definition-beec6740-2d2e727f.js +0 -109
  344. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/pieDiagram-dbbf0591-9d3ea93d.js +0 -35
  345. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/quadrantDiagram-4d7f4fd6-06a178a2.js +0 -7
  346. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/requirementDiagram-6fc4c22a-0bfedffc.js +0 -52
  347. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/sankeyDiagram-8f13d901-d76d0a04.js +0 -8
  348. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/sequenceDiagram-b655622a-37bb4341.js +0 -122
  349. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/stateDiagram-59f0c015-f52f7f57.js +0 -1
  350. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/stateDiagram-v2-2b26beab-4a986a20.js +0 -1
  351. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/styles-080da4f6-7dd9ae12.js +0 -110
  352. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/styles-3dcbcfbf-46e1ca14.js +0 -159
  353. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/styles-9c745c82-4a97439a.js +0 -207
  354. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/svgDrawCommon-4835440b-823917a3.js +0 -1
  355. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/timeline-definition-5b62e21b-9ea72896.js +0 -61
  356. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/assets/xychartDiagram-2b33534f-b631a8b6.js +0 -7
  357. rasa_pro-3.8.17/rasa/core/channels/inspector/dist/index.html +0 -39
  358. rasa_pro-3.8.17/rasa/core/channels/inspector/src/components/DiagramFlow.tsx +0 -97
  359. rasa_pro-3.8.17/rasa/core/channels/inspector/src/helpers/formatters.test.ts +0 -385
  360. rasa_pro-3.8.17/rasa/core/channels/inspector/src/helpers/formatters.ts +0 -239
  361. rasa_pro-3.8.17/rasa/core/channels/rest.py +0 -210
  362. rasa_pro-3.8.17/rasa/core/channels/rocketchat.py +0 -175
  363. rasa_pro-3.8.17/rasa/core/channels/socketio.py +0 -274
  364. rasa_pro-3.8.17/rasa/core/channels/telegram.py +0 -298
  365. rasa_pro-3.8.17/rasa/core/channels/webexteams.py +0 -135
  366. rasa_pro-3.8.17/rasa/core/concurrent_lock_store.py +0 -210
  367. rasa_pro-3.8.17/rasa/core/evaluation/marker_base.py +0 -925
  368. rasa_pro-3.8.17/rasa/core/evaluation/marker_stats.py +0 -294
  369. rasa_pro-3.8.17/rasa/core/featurizers/single_state_featurizer.py +0 -402
  370. rasa_pro-3.8.17/rasa/core/featurizers/tracker_featurizers.py +0 -1172
  371. rasa_pro-3.8.17/rasa/core/information_retrieval/faiss.py +0 -116
  372. rasa_pro-3.8.17/rasa/core/information_retrieval/information_retrieval.py +0 -72
  373. rasa_pro-3.8.17/rasa/core/information_retrieval/milvus.py +0 -59
  374. rasa_pro-3.8.17/rasa/core/information_retrieval/qdrant.py +0 -102
  375. rasa_pro-3.8.17/rasa/core/lock_store.py +0 -344
  376. rasa_pro-3.8.17/rasa/core/migrate.py +0 -404
  377. rasa_pro-3.8.17/rasa/core/nlg/callback.py +0 -147
  378. rasa_pro-3.8.17/rasa/core/policies/enterprise_search_policy.py +0 -717
  379. rasa_pro-3.8.17/rasa/core/policies/enterprise_search_prompt_template.jinja2 +0 -62
  380. rasa_pro-3.8.17/rasa/core/policies/flows/flow_executor.py +0 -582
  381. rasa_pro-3.8.17/rasa/core/policies/intentless_policy.py +0 -924
  382. rasa_pro-3.8.17/rasa/core/policies/memoization.py +0 -538
  383. rasa_pro-3.8.17/rasa/core/policies/policy.py +0 -716
  384. rasa_pro-3.8.17/rasa/core/policies/rule_policy.py +0 -1276
  385. rasa_pro-3.8.17/rasa/core/policies/ted_policy.py +0 -2146
  386. rasa_pro-3.8.17/rasa/core/policies/unexpected_intent_policy.py +0 -1015
  387. rasa_pro-3.8.17/rasa/core/processor.py +0 -1331
  388. rasa_pro-3.8.17/rasa/core/run.py +0 -315
  389. rasa_pro-3.8.17/rasa/core/secrets_manager/endpoints.py +0 -391
  390. rasa_pro-3.8.17/rasa/core/secrets_manager/vault.py +0 -576
  391. rasa_pro-3.8.17/rasa/core/test.py +0 -1337
  392. rasa_pro-3.8.17/rasa/core/tracker_store.py +0 -1664
  393. rasa_pro-3.8.17/rasa/core/train.py +0 -107
  394. rasa_pro-3.8.17/rasa/core/training/interactive.py +0 -1742
  395. rasa_pro-3.8.17/rasa/core/utils.py +0 -344
  396. rasa_pro-3.8.17/rasa/dialogue_understanding/coexistence/intent_based_router.py +0 -189
  397. rasa_pro-3.8.17/rasa/dialogue_understanding/coexistence/llm_based_router.py +0 -261
  398. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/__init__.py +0 -45
  399. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/can_not_handle_command.py +0 -61
  400. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/cancel_flow_command.py +0 -116
  401. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/chit_chat_answer_command.py +0 -48
  402. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/clarify_command.py +0 -77
  403. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/correct_slots_command.py +0 -288
  404. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/error_command.py +0 -67
  405. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/handle_code_change_command.py +0 -64
  406. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/human_handoff_command.py +0 -57
  407. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/knowledge_answer_command.py +0 -48
  408. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/noop_command.py +0 -45
  409. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/set_slot_command.py +0 -125
  410. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/skip_question_command.py +0 -66
  411. rasa_pro-3.8.17/rasa/dialogue_understanding/commands/start_flow_command.py +0 -98
  412. rasa_pro-3.8.17/rasa/dialogue_understanding/generator/__init__.py +0 -6
  413. rasa_pro-3.8.17/rasa/dialogue_understanding/generator/command_generator.py +0 -257
  414. rasa_pro-3.8.17/rasa/dialogue_understanding/generator/flow_retrieval.py +0 -410
  415. rasa_pro-3.8.17/rasa/dialogue_understanding/generator/llm_command_generator.py +0 -637
  416. rasa_pro-3.8.17/rasa/dialogue_understanding/generator/nlu_command_adapter.py +0 -157
  417. rasa_pro-3.8.17/rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml +0 -243
  418. rasa_pro-3.8.17/rasa/dialogue_understanding/processor/command_processor.py +0 -578
  419. rasa_pro-3.8.17/rasa/e2e_test/constants.py +0 -10
  420. rasa_pro-3.8.17/rasa/e2e_test/e2e_test_case.py +0 -322
  421. rasa_pro-3.8.17/rasa/e2e_test/e2e_test_runner.py +0 -659
  422. rasa_pro-3.8.17/rasa/e2e_test/e2e_test_schema.yml +0 -67
  423. rasa_pro-3.8.17/rasa/engine/caching.py +0 -464
  424. rasa_pro-3.8.17/rasa/engine/graph.py +0 -625
  425. rasa_pro-3.8.17/rasa/engine/recipes/config_files/default_config.yml +0 -44
  426. rasa_pro-3.8.17/rasa/engine/recipes/default_components.py +0 -99
  427. rasa_pro-3.8.17/rasa/engine/recipes/default_recipe.py +0 -1252
  428. rasa_pro-3.8.17/rasa/engine/recipes/recipe.py +0 -93
  429. rasa_pro-3.8.17/rasa/engine/runner/dask.py +0 -256
  430. rasa_pro-3.8.17/rasa/engine/storage/local_model_storage.py +0 -248
  431. rasa_pro-3.8.17/rasa/engine/validation.py +0 -839
  432. rasa_pro-3.8.17/rasa/exceptions.py +0 -69
  433. rasa_pro-3.8.17/rasa/graph_components/validators/default_recipe_validator.py +0 -552
  434. rasa_pro-3.8.17/rasa/hooks.py +0 -113
  435. rasa_pro-3.8.17/rasa/model.py +0 -118
  436. rasa_pro-3.8.17/rasa/model_training.py +0 -535
  437. rasa_pro-3.8.17/rasa/nlu/classifiers/diet_classifier.py +0 -1874
  438. rasa_pro-3.8.17/rasa/nlu/extractors/crf_entity_extractor.py +0 -672
  439. rasa_pro-3.8.17/rasa/nlu/extractors/duckling_entity_extractor.py +0 -206
  440. rasa_pro-3.8.17/rasa/nlu/featurizers/dense_featurizer/convert_featurizer.py +0 -449
  441. rasa_pro-3.8.17/rasa/nlu/featurizers/dense_featurizer/lm_featurizer.py +0 -772
  442. rasa_pro-3.8.17/rasa/nlu/featurizers/featurizer.py +0 -89
  443. rasa_pro-3.8.17/rasa/nlu/featurizers/sparse_featurizer/count_vectors_featurizer.py +0 -840
  444. rasa_pro-3.8.17/rasa/nlu/featurizers/sparse_featurizer/lexical_syntactic_featurizer.py +0 -539
  445. rasa_pro-3.8.17/rasa/nlu/persistor.py +0 -240
  446. rasa_pro-3.8.17/rasa/nlu/selectors/response_selector.py +0 -990
  447. rasa_pro-3.8.17/rasa/nlu/test.py +0 -1943
  448. rasa_pro-3.8.17/rasa/nlu/utils/hugging_face/registry.py +0 -108
  449. rasa_pro-3.8.17/rasa/nlu/utils/spacy_utils.py +0 -312
  450. rasa_pro-3.8.17/rasa/server.py +0 -1536
  451. rasa_pro-3.8.17/rasa/shared/constants.py +0 -181
  452. rasa_pro-3.8.17/rasa/shared/core/constants.py +0 -168
  453. rasa_pro-3.8.17/rasa/shared/core/domain.py +0 -2106
  454. rasa_pro-3.8.17/rasa/shared/core/events.py +0 -2507
  455. rasa_pro-3.8.17/rasa/shared/core/flows/flow.py +0 -353
  456. rasa_pro-3.8.17/rasa/shared/core/flows/flows_list.py +0 -211
  457. rasa_pro-3.8.17/rasa/shared/core/flows/steps/action.py +0 -51
  458. rasa_pro-3.8.17/rasa/shared/core/generator.py +0 -907
  459. rasa_pro-3.8.17/rasa/shared/core/slot_mappings.py +0 -235
  460. rasa_pro-3.8.17/rasa/shared/core/slots.py +0 -647
  461. rasa_pro-3.8.17/rasa/shared/core/trackers.py +0 -1159
  462. rasa_pro-3.8.17/rasa/shared/core/training_data/loading.py +0 -90
  463. rasa_pro-3.8.17/rasa/shared/core/training_data/story_reader/story_reader.py +0 -129
  464. rasa_pro-3.8.17/rasa/shared/core/training_data/story_reader/yaml_story_reader.py +0 -888
  465. rasa_pro-3.8.17/rasa/shared/core/training_data/story_writer/yaml_story_writer.py +0 -442
  466. rasa_pro-3.8.17/rasa/shared/core/training_data/structures.py +0 -838
  467. rasa_pro-3.8.17/rasa/shared/core/training_data/visualization.py +0 -603
  468. rasa_pro-3.8.17/rasa/shared/data.py +0 -192
  469. rasa_pro-3.8.17/rasa/shared/exceptions.py +0 -129
  470. rasa_pro-3.8.17/rasa/shared/importers/importer.py +0 -705
  471. rasa_pro-3.8.17/rasa/shared/importers/rasa.py +0 -100
  472. rasa_pro-3.8.17/rasa/shared/nlu/constants.py +0 -45
  473. rasa_pro-3.8.17/rasa/shared/nlu/training_data/entities_parser.py +0 -209
  474. rasa_pro-3.8.17/rasa/shared/nlu/training_data/formats/dialogflow.py +0 -162
  475. rasa_pro-3.8.17/rasa/shared/nlu/training_data/formats/rasa_yaml.py +0 -605
  476. rasa_pro-3.8.17/rasa/shared/nlu/training_data/formats/readerwriter.py +0 -245
  477. rasa_pro-3.8.17/rasa/shared/nlu/training_data/message.py +0 -477
  478. rasa_pro-3.8.17/rasa/shared/nlu/training_data/training_data.py +0 -732
  479. rasa_pro-3.8.17/rasa/shared/providers/openai/session_handler.py +0 -110
  480. rasa_pro-3.8.17/rasa/shared/utils/constants.py +0 -1
  481. rasa_pro-3.8.17/rasa/shared/utils/io.py +0 -403
  482. rasa_pro-3.8.17/rasa/shared/utils/llm.py +0 -405
  483. rasa_pro-3.8.17/rasa/shared/utils/pykwalify_extensions.py +0 -26
  484. rasa_pro-3.8.17/rasa/shared/utils/schemas/domain.yml +0 -142
  485. rasa_pro-3.8.17/rasa/shared/utils/yaml.py +0 -777
  486. rasa_pro-3.8.17/rasa/studio/auth.py +0 -252
  487. rasa_pro-3.8.17/rasa/studio/constants.py +0 -16
  488. rasa_pro-3.8.17/rasa/studio/data_handler.py +0 -352
  489. rasa_pro-3.8.17/rasa/studio/download.py +0 -350
  490. rasa_pro-3.8.17/rasa/studio/train.py +0 -136
  491. rasa_pro-3.8.17/rasa/studio/upload.py +0 -408
  492. rasa_pro-3.8.17/rasa/telemetry.py +0 -1583
  493. rasa_pro-3.8.17/rasa/tracing/config.py +0 -338
  494. rasa_pro-3.8.17/rasa/tracing/constants.py +0 -38
  495. rasa_pro-3.8.17/rasa/tracing/instrumentation/attribute_extractors.py +0 -663
  496. rasa_pro-3.8.17/rasa/tracing/instrumentation/instrumentation.py +0 -939
  497. rasa_pro-3.8.17/rasa/tracing/instrumentation/intentless_policy_instrumentation.py +0 -142
  498. rasa_pro-3.8.17/rasa/tracing/instrumentation/metrics.py +0 -206
  499. rasa_pro-3.8.17/rasa/tracing/metric_instrument_provider.py +0 -125
  500. rasa_pro-3.8.17/rasa/utils/cli.py +0 -27
  501. rasa_pro-3.8.17/rasa/utils/common.py +0 -635
  502. rasa_pro-3.8.17/rasa/utils/endpoints.py +0 -303
  503. rasa_pro-3.8.17/rasa/utils/io.py +0 -326
  504. rasa_pro-3.8.17/rasa/utils/licensing.py +0 -319
  505. rasa_pro-3.8.17/rasa/utils/ml_utils.py +0 -145
  506. rasa_pro-3.8.17/rasa/utils/tensorflow/data_generator.py +0 -440
  507. rasa_pro-3.8.17/rasa/utils/tensorflow/environment.py +0 -161
  508. rasa_pro-3.8.17/rasa/utils/tensorflow/model_data.py +0 -991
  509. rasa_pro-3.8.17/rasa/utils/tensorflow/model_data_utils.py +0 -500
  510. rasa_pro-3.8.17/rasa/utils/tensorflow/models.py +0 -936
  511. rasa_pro-3.8.17/rasa/utils/tensorflow/rasa_layers.py +0 -1094
  512. rasa_pro-3.8.17/rasa/utils/train_utils.py +0 -572
  513. rasa_pro-3.8.17/rasa/validator.py +0 -1035
  514. rasa_pro-3.8.17/rasa/version.py +0 -3
  515. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/NOTICE +0 -0
  516. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/__init__.py +0 -0
  517. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/anonymization/__init__.py +0 -0
  518. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/anonymization/anonymisation_rule_yaml_reader.py +0 -0
  519. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/anonymization/anonymization_rule_orchestrator.py +0 -0
  520. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/anonymization/schemas/config.yml +0 -0
  521. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/__init__.py +0 -0
  522. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/arguments/__init__.py +0 -0
  523. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/arguments/data.py +0 -0
  524. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/arguments/evaluate.py +0 -0
  525. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/arguments/export.py +0 -0
  526. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/arguments/interactive.py +0 -0
  527. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/arguments/shell.py +0 -0
  528. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/arguments/visualize.py +0 -0
  529. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/arguments/x.py +0 -0
  530. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/data.py +0 -0
  531. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/evaluate.py +0 -0
  532. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/inspect.py +0 -0
  533. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/interactive.py +0 -0
  534. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/markers.py +0 -0
  535. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/__init__.py +0 -0
  536. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/actions/__init__.py +0 -0
  537. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/actions/add_contact.py +0 -0
  538. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/actions/db.py +0 -0
  539. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/actions/list_contacts.py +0 -0
  540. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/actions/remove_contact.py +0 -0
  541. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/data/flows/list_contacts.yml +0 -0
  542. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/db/contacts.json +0 -0
  543. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/e2e_tests/cancelations/user_cancels_during_a_correction.yml +0 -0
  544. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/e2e_tests/cancelations/user_changes_mind_on_a_whim.yml +0 -0
  545. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/e2e_tests/corrections/user_corrects_contact_handle.yml +0 -0
  546. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/e2e_tests/corrections/user_corrects_contact_name.yml +0 -0
  547. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_adds_contact_to_their_list.yml +0 -0
  548. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_lists_contacts.yml +0 -0
  549. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact.yml +0 -0
  550. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact_from_list.yml +0 -0
  551. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/default/actions/__init__.py +0 -0
  552. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/default/data/nlu.yml +0 -0
  553. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/default/data/rules.yml +0 -0
  554. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/default/data/stories.yml +0 -0
  555. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/default/domain.yml +0 -0
  556. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/tutorial/actions.py +0 -0
  557. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/project_templates/tutorial/data/flows.yml +0 -0
  558. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/shell.py +0 -0
  559. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/studio/__init__.py +0 -0
  560. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/studio/train.py +0 -0
  561. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/test.py +0 -0
  562. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/train.py +0 -0
  563. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/cli/visualize.py +0 -0
  564. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/constants.py +0 -0
  565. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/__init__.py +0 -0
  566. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/actions/__init__.py +0 -0
  567. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/actions/action_clean_stack.py +0 -0
  568. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/actions/action_run_slot_rejections.py +0 -0
  569. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/actions/action_trigger_chitchat.py +0 -0
  570. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/actions/action_trigger_flow.py +0 -0
  571. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/actions/action_trigger_search.py +0 -0
  572. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/auth_retry_tracker_store.py +0 -0
  573. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/brokers/__init__.py +0 -0
  574. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/brokers/broker.py +0 -0
  575. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/brokers/file.py +0 -0
  576. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/brokers/kafka.py +0 -0
  577. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/brokers/sql.py +0 -0
  578. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/__init__.py +0 -0
  579. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/channel.py +0 -0
  580. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/.eslintrc.cjs +0 -0
  581. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/.gitignore +0 -0
  582. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/README.md +0 -0
  583. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/assets/favicon.ico +0 -0
  584. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/assets/rasa-chat.js +0 -0
  585. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/custom.d.ts +0 -0
  586. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/array-9f3ba611.js +0 -0
  587. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-128cfa44.ttf +0 -0
  588. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-21dbcb97.woff +0 -0
  589. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-222b5e26.svg +0 -0
  590. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-9ad89b2a.woff2 +0 -0
  591. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/index-3ee28881.css +0 -0
  592. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/init-77b53fdd.js +0 -0
  593. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-60c05ee4.woff +0 -0
  594. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-8335d9b8.svg +0 -0
  595. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-9cc39c75.ttf +0 -0
  596. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-ead13ccf.woff2 +0 -0
  597. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-16705655.woff2 +0 -0
  598. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-5aeb07f9.woff +0 -0
  599. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9c459044.ttf +0 -0
  600. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9e2898a4.svg +0 -0
  601. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/ordinal-ba9b4969.js +0 -0
  602. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/dist/assets/path-53f90ab3.js +0 -0
  603. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/index.html +0 -0
  604. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/jest.config.ts +0 -0
  605. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/package.json +0 -0
  606. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/setupTests.ts +0 -0
  607. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/App.tsx +0 -0
  608. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/components/DialogueInformation.tsx +0 -0
  609. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/components/DialogueStack.tsx +0 -0
  610. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/components/ExpandIcon.tsx +0 -0
  611. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/components/FullscreenButton.tsx +0 -0
  612. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/components/LoadingSpinner.tsx +0 -0
  613. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/components/NoActiveFlow.tsx +0 -0
  614. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/components/RasaLogo.tsx +0 -0
  615. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/components/SaraDiagrams.tsx +0 -0
  616. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/components/Slots.tsx +0 -0
  617. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/components/Welcome.tsx +0 -0
  618. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/helpers/utils.ts +0 -0
  619. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/main.tsx +0 -0
  620. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/Button/Button.ts +0 -0
  621. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/Heading/Heading.ts +0 -0
  622. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/Input/Input.ts +0 -0
  623. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/Link/Link.ts +0 -0
  624. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/Modal/Modal.ts +0 -0
  625. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/Table/Table.tsx +0 -0
  626. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/Tooltip/Tooltip.ts +0 -0
  627. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/breakpoints.ts +0 -0
  628. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/colors.ts +0 -0
  629. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/fontFaces.css +0 -0
  630. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.eot +0 -0
  631. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.svg +0 -0
  632. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.ttf +0 -0
  633. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.woff +0 -0
  634. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.woff2 +0 -0
  635. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.eot +0 -0
  636. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.svg +0 -0
  637. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.ttf +0 -0
  638. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.woff +0 -0
  639. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.woff2 +0 -0
  640. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.eot +0 -0
  641. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.svg +0 -0
  642. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.ttf +0 -0
  643. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.woff +0 -0
  644. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.woff2 +0 -0
  645. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/radii.ts +0 -0
  646. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/shadows.ts +0 -0
  647. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/sizes.ts +0 -0
  648. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/space.ts +0 -0
  649. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/styles.ts +0 -0
  650. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/typography.ts +0 -0
  651. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/base/zIndices.ts +0 -0
  652. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/theme/index.ts +0 -0
  653. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/types.ts +0 -0
  654. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/src/vite-env.d.ts +0 -0
  655. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/tests/__mocks__/fileMock.ts +0 -0
  656. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/tests/__mocks__/matchMedia.ts +0 -0
  657. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/tests/__mocks__/styleMock.ts +0 -0
  658. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/tests/renderWithProviders.tsx +0 -0
  659. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/tsconfig.json +0 -0
  660. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/tsconfig.node.json +0 -0
  661. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/vite.config.ts +0 -0
  662. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/inspector/yarn.lock +0 -0
  663. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/mattermost.py +0 -0
  664. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/rasa_chat.py +0 -0
  665. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/slack.py +0 -0
  666. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/twilio.py +0 -0
  667. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/twilio_voice.py +0 -0
  668. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/channels/vier_cvg.py +0 -0
  669. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/constants.py +0 -0
  670. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/evaluation/__init__.py +0 -0
  671. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/evaluation/marker.py +0 -0
  672. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/evaluation/marker_tracker_loader.py +0 -0
  673. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/exceptions.py +0 -0
  674. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/exporter.py +0 -0
  675. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/featurizers/__init__.py +0 -0
  676. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/featurizers/precomputation.py +0 -0
  677. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/http_interpreter.py +0 -0
  678. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/jobs.py +0 -0
  679. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/lock.py +0 -0
  680. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/nlg/__init__.py +0 -0
  681. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/nlg/contextual_response_rephraser.py +0 -0
  682. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/nlg/generator.py +0 -0
  683. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/nlg/interpolator.py +0 -0
  684. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/nlg/response.py +0 -0
  685. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/nlg/summarize.py +0 -0
  686. {rasa_pro-3.8.17/rasa/core/information_retrieval → rasa_pro-3.9.14/rasa/core/policies}/__init__.py +0 -0
  687. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/policies/ensemble.py +0 -0
  688. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/policies/flow_policy.py +0 -0
  689. {rasa_pro-3.8.17/rasa/core/policies → rasa_pro-3.9.14/rasa/core/policies/flows}/__init__.py +0 -0
  690. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/policies/flows/flow_exceptions.py +0 -0
  691. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/policies/flows/flow_step_result.py +0 -0
  692. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/policies/intentless_prompt_template.jinja2 +0 -0
  693. {rasa_pro-3.8.17/rasa/core/policies/flows → rasa_pro-3.9.14/rasa/core/secrets_manager}/__init__.py +0 -0
  694. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/secrets_manager/constants.py +0 -0
  695. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/secrets_manager/factory.py +0 -0
  696. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/secrets_manager/secret_manager.py +0 -0
  697. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/training/__init__.py +0 -0
  698. {rasa_pro-3.8.17/rasa/core/secrets_manager → rasa_pro-3.9.14/rasa/core/training/converters}/__init__.py +0 -0
  699. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/training/converters/responses_prefix_converter.py +0 -0
  700. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/training/story_conflict.py +0 -0
  701. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/training/training.py +0 -0
  702. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/core/visualize.py +0 -0
  703. {rasa_pro-3.8.17/rasa/core/training/converters → rasa_pro-3.9.14/rasa/dialogue_understanding}/__init__.py +0 -0
  704. {rasa_pro-3.8.17/rasa/dialogue_understanding → rasa_pro-3.9.14/rasa/dialogue_understanding/coexistence}/__init__.py +0 -0
  705. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/coexistence/constants.py +0 -0
  706. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/coexistence/router_template.jinja2 +0 -0
  707. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/commands/command.py +0 -0
  708. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/commands/free_form_answer_command.py +0 -0
  709. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/generator/flow_document_template.jinja2 +0 -0
  710. {rasa_pro-3.8.17/rasa/dialogue_understanding/coexistence → rasa_pro-3.9.14/rasa/dialogue_understanding/generator/multi_step}/__init__.py +0 -0
  711. {rasa_pro-3.8.17/rasa/dialogue_understanding/patterns → rasa_pro-3.9.14/rasa/dialogue_understanding/generator/single_step}/__init__.py +0 -0
  712. {rasa_pro-3.8.17/rasa/dialogue_understanding/generator → rasa_pro-3.9.14/rasa/dialogue_understanding/generator/single_step}/command_prompt_template.jinja2 +0 -0
  713. {rasa_pro-3.8.17/rasa/dialogue_understanding/processor → rasa_pro-3.9.14/rasa/dialogue_understanding/patterns}/__init__.py +0 -0
  714. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/cancel.py +0 -0
  715. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/cannot_handle.py +0 -0
  716. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/chitchat.py +0 -0
  717. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/clarify.py +0 -0
  718. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/code_change.py +0 -0
  719. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/collect_information.py +0 -0
  720. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/completed.py +0 -0
  721. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/continue_interrupted.py +0 -0
  722. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/correction.py +0 -0
  723. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/human_handoff.py +0 -0
  724. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/internal_error.py +0 -0
  725. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/search.py +0 -0
  726. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/patterns/skip_question.py +0 -0
  727. {rasa_pro-3.8.17/rasa/dialogue_understanding/stack → rasa_pro-3.9.14/rasa/dialogue_understanding/processor}/__init__.py +0 -0
  728. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/processor/command_processor_component.py +0 -0
  729. {rasa_pro-3.8.17/rasa/e2e_test → rasa_pro-3.9.14/rasa/dialogue_understanding/stack}/__init__.py +0 -0
  730. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/stack/dialogue_stack.py +0 -0
  731. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/stack/frames/__init__.py +0 -0
  732. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/stack/frames/chit_chat_frame.py +0 -0
  733. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/stack/frames/dialogue_stack_frame.py +0 -0
  734. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/stack/frames/flow_stack_frame.py +0 -0
  735. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/stack/frames/pattern_frame.py +0 -0
  736. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/stack/frames/search_frame.py +0 -0
  737. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/dialogue_understanding/stack/utils.py +0 -0
  738. {rasa_pro-3.8.17/rasa/engine → rasa_pro-3.9.14/rasa/e2e_test}/__init__.py +0 -0
  739. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/e2e_test/e2e_test_result.py +0 -0
  740. {rasa_pro-3.8.17/rasa/engine/recipes → rasa_pro-3.9.14/rasa/engine}/__init__.py +0 -0
  741. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/engine/constants.py +0 -0
  742. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/engine/exceptions.py +0 -0
  743. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/engine/loader.py +0 -0
  744. {rasa_pro-3.8.17/rasa/engine/runner → rasa_pro-3.9.14/rasa/engine/recipes}/__init__.py +0 -0
  745. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/engine/recipes/graph_recipe.py +0 -0
  746. {rasa_pro-3.8.17/rasa/engine/storage → rasa_pro-3.9.14/rasa/engine/runner}/__init__.py +0 -0
  747. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/engine/runner/interface.py +0 -0
  748. {rasa_pro-3.8.17/rasa/engine/training → rasa_pro-3.9.14/rasa/engine/storage}/__init__.py +0 -0
  749. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/engine/storage/resource.py +0 -0
  750. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/engine/storage/storage.py +0 -0
  751. {rasa_pro-3.8.17/rasa/graph_components → rasa_pro-3.9.14/rasa/engine/training}/__init__.py +0 -0
  752. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/engine/training/components.py +0 -0
  753. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/engine/training/fingerprinting.py +0 -0
  754. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/engine/training/graph_trainer.py +0 -0
  755. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/engine/training/hooks.py +0 -0
  756. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/env.py +0 -0
  757. {rasa_pro-3.8.17/rasa/graph_components/converters → rasa_pro-3.9.14/rasa/graph_components}/__init__.py +0 -0
  758. {rasa_pro-3.8.17/rasa/graph_components/providers → rasa_pro-3.9.14/rasa/graph_components/converters}/__init__.py +0 -0
  759. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/graph_components/converters/nlu_message_converter.py +0 -0
  760. {rasa_pro-3.8.17/rasa/graph_components/validators → rasa_pro-3.9.14/rasa/graph_components/providers}/__init__.py +0 -0
  761. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/graph_components/providers/domain_for_core_training_provider.py +0 -0
  762. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/graph_components/providers/domain_provider.py +0 -0
  763. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/graph_components/providers/flows_provider.py +0 -0
  764. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/graph_components/providers/forms_provider.py +0 -0
  765. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/graph_components/providers/nlu_training_data_provider.py +0 -0
  766. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/graph_components/providers/responses_provider.py +0 -0
  767. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/graph_components/providers/rule_only_provider.py +0 -0
  768. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/graph_components/providers/story_graph_provider.py +0 -0
  769. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/graph_components/providers/training_tracker_provider.py +0 -0
  770. {rasa_pro-3.8.17/rasa/markers → rasa_pro-3.9.14/rasa/graph_components/validators}/__init__.py +0 -0
  771. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/graph_components/validators/finetuning_validator.py +0 -0
  772. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/jupyter.py +0 -0
  773. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/keys +0 -0
  774. {rasa_pro-3.8.17/rasa/nlu/emulators → rasa_pro-3.9.14/rasa/markers}/__init__.py +0 -0
  775. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/markers/marker.py +0 -0
  776. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/markers/marker_base.py +0 -0
  777. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/markers/upload.py +0 -0
  778. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/markers/validate.py +0 -0
  779. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/model_testing.py +0 -0
  780. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/__init__.py +0 -0
  781. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/classifiers/__init__.py +0 -0
  782. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/classifiers/classifier.py +0 -0
  783. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/classifiers/fallback_classifier.py +0 -0
  784. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/classifiers/keyword_intent_classifier.py +0 -0
  785. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/classifiers/llm_intent_classifier.py +0 -0
  786. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/classifiers/logistic_regression_classifier.py +0 -0
  787. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/classifiers/mitie_intent_classifier.py +0 -0
  788. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/classifiers/regex_message_handler.py +0 -0
  789. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/classifiers/sklearn_intent_classifier.py +0 -0
  790. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/constants.py +0 -0
  791. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/convert.py +0 -0
  792. {rasa_pro-3.8.17/rasa/nlu/extractors → rasa_pro-3.9.14/rasa/nlu/emulators}/__init__.py +0 -0
  793. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/emulators/dialogflow.py +0 -0
  794. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/emulators/emulator.py +0 -0
  795. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/emulators/luis.py +0 -0
  796. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/emulators/no_emulator.py +0 -0
  797. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/emulators/wit.py +0 -0
  798. {rasa_pro-3.8.17/rasa/nlu/featurizers → rasa_pro-3.9.14/rasa/nlu/extractors}/__init__.py +0 -0
  799. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/extractors/entity_synonyms.py +0 -0
  800. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/extractors/extractor.py +0 -0
  801. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/extractors/mitie_entity_extractor.py +0 -0
  802. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/extractors/regex_entity_extractor.py +0 -0
  803. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/extractors/spacy_entity_extractor.py +0 -0
  804. {rasa_pro-3.8.17/rasa/nlu/featurizers/dense_featurizer → rasa_pro-3.9.14/rasa/nlu/featurizers}/__init__.py +0 -0
  805. {rasa_pro-3.8.17/rasa/nlu/featurizers/sparse_featurizer → rasa_pro-3.9.14/rasa/nlu/featurizers/dense_featurizer}/__init__.py +0 -0
  806. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/featurizers/dense_featurizer/dense_featurizer.py +0 -0
  807. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/featurizers/dense_featurizer/mitie_featurizer.py +0 -0
  808. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/featurizers/dense_featurizer/spacy_featurizer.py +0 -0
  809. {rasa_pro-3.8.17/rasa/nlu/selectors → rasa_pro-3.9.14/rasa/nlu/featurizers/sparse_featurizer}/__init__.py +0 -0
  810. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/featurizers/sparse_featurizer/regex_featurizer.py +0 -0
  811. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/featurizers/sparse_featurizer/sparse_featurizer.py +0 -0
  812. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/model.py +0 -0
  813. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/run.py +0 -0
  814. {rasa_pro-3.8.17/rasa/nlu/tokenizers → rasa_pro-3.9.14/rasa/nlu/selectors}/__init__.py +0 -0
  815. {rasa_pro-3.8.17/rasa/nlu/utils/hugging_face → rasa_pro-3.9.14/rasa/nlu/tokenizers}/__init__.py +0 -0
  816. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/tokenizers/jieba_tokenizer.py +0 -0
  817. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/tokenizers/mitie_tokenizer.py +0 -0
  818. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/tokenizers/spacy_tokenizer.py +0 -0
  819. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/tokenizers/tokenizer.py +0 -0
  820. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/tokenizers/whitespace_tokenizer.py +0 -0
  821. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/utils/__init__.py +0 -0
  822. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/utils/bilou_utils.py +0 -0
  823. {rasa_pro-3.8.17/rasa/shared → rasa_pro-3.9.14/rasa/nlu/utils/hugging_face}/__init__.py +0 -0
  824. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/utils/hugging_face/transformers_pre_post_processors.py +0 -0
  825. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/utils/mitie_utils.py +0 -0
  826. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/nlu/utils/pattern_utils.py +0 -0
  827. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/plugin.py +0 -0
  828. {rasa_pro-3.8.17/rasa/shared/core → rasa_pro-3.9.14/rasa/shared}/__init__.py +0 -0
  829. {rasa_pro-3.8.17/rasa/shared/core/training_data → rasa_pro-3.9.14/rasa/shared/core}/__init__.py +0 -0
  830. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/conversation.py +0 -0
  831. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/__init__.py +0 -0
  832. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/flow_step.py +0 -0
  833. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/flow_step_links.py +0 -0
  834. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/flow_step_sequence.py +0 -0
  835. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/flows_yaml_schema.json +0 -0
  836. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/nlu_trigger.py +0 -0
  837. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/steps/__init__.py +0 -0
  838. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/steps/call.py +0 -0
  839. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/steps/collect.py +0 -0
  840. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/steps/constants.py +0 -0
  841. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/steps/continuation.py +0 -0
  842. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/steps/end.py +0 -0
  843. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/steps/internal.py +0 -0
  844. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/steps/link.py +0 -0
  845. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/steps/no_operation.py +0 -0
  846. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/steps/set_slots.py +0 -0
  847. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/steps/start.py +0 -0
  848. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/validation.py +0 -0
  849. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/flows/yaml_flows_io.py +0 -0
  850. {rasa_pro-3.8.17/rasa/shared/core/training_data/story_reader → rasa_pro-3.9.14/rasa/shared/core/training_data}/__init__.py +0 -0
  851. {rasa_pro-3.8.17/rasa/shared/core/training_data/story_writer → rasa_pro-3.9.14/rasa/shared/core/training_data/story_reader}/__init__.py +0 -0
  852. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/training_data/story_reader/story_step_builder.py +0 -0
  853. {rasa_pro-3.8.17/rasa/shared/engine → rasa_pro-3.9.14/rasa/shared/core/training_data/story_writer}/__init__.py +0 -0
  854. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/training_data/story_writer/story_writer.py +0 -0
  855. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/core/training_data/visualization.html +0 -0
  856. {rasa_pro-3.8.17/rasa/shared/importers → rasa_pro-3.9.14/rasa/shared/engine}/__init__.py +0 -0
  857. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/engine/caching.py +0 -0
  858. {rasa_pro-3.8.17/rasa/shared/nlu → rasa_pro-3.9.14/rasa/shared/importers}/__init__.py +0 -0
  859. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/importers/multi_project.py +0 -0
  860. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/importers/utils.py +0 -0
  861. {rasa_pro-3.8.17/rasa/shared/nlu/training_data → rasa_pro-3.9.14/rasa/shared/nlu}/__init__.py +0 -0
  862. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/interpreter.py +0 -0
  863. {rasa_pro-3.8.17/rasa/shared/nlu/training_data/schemas → rasa_pro-3.9.14/rasa/shared/nlu/training_data}/__init__.py +0 -0
  864. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/training_data/features.py +0 -0
  865. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/training_data/formats/__init__.py +0 -0
  866. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/training_data/formats/luis.py +0 -0
  867. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/training_data/formats/rasa.py +0 -0
  868. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/training_data/formats/wit.py +0 -0
  869. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/training_data/loading.py +0 -0
  870. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/training_data/lookup_tables_parser.py +0 -0
  871. {rasa_pro-3.8.17/rasa/shared/providers → rasa_pro-3.9.14/rasa/shared/nlu/training_data/schemas}/__init__.py +0 -0
  872. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/training_data/schemas/data_schema.py +0 -0
  873. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/training_data/schemas/nlu.yml +0 -0
  874. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/training_data/schemas/responses.yml +0 -0
  875. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/training_data/synonyms_parser.py +0 -0
  876. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/nlu/training_data/util.py +0 -0
  877. {rasa_pro-3.8.17/rasa/shared/providers/openai → rasa_pro-3.9.14/rasa/shared/providers}/__init__.py +0 -0
  878. {rasa_pro-3.8.17/rasa/shared/utils → rasa_pro-3.9.14/rasa/shared/providers/openai}/__init__.py +0 -0
  879. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/providers/openai/clients.py +0 -0
  880. {rasa_pro-3.8.17/rasa/shared/utils/schemas → rasa_pro-3.9.14/rasa/shared/utils}/__init__.py +0 -0
  881. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/utils/cli.py +0 -0
  882. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/utils/common.py +0 -0
  883. {rasa_pro-3.8.17/rasa/studio → rasa_pro-3.9.14/rasa/shared/utils/schemas}/__init__.py +0 -0
  884. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/utils/schemas/config.yml +0 -0
  885. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/utils/schemas/events.py +0 -0
  886. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/utils/schemas/model_config.yml +0 -0
  887. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/shared/utils/schemas/stories.yml +0 -0
  888. {rasa_pro-3.8.17/rasa/tracing → rasa_pro-3.9.14/rasa/studio}/__init__.py +0 -0
  889. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/studio/config.py +0 -0
  890. {rasa_pro-3.8.17/rasa/tracing/instrumentation → rasa_pro-3.9.14/rasa/tracing}/__init__.py +0 -0
  891. {rasa_pro-3.8.17/rasa/utils → rasa_pro-3.9.14/rasa/tracing/instrumentation}/__init__.py +0 -0
  892. {rasa_pro-3.8.17/rasa/utils/tensorflow → rasa_pro-3.9.14/rasa/utils}/__init__.py +0 -0
  893. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/beta.py +0 -0
  894. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/converter.py +0 -0
  895. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/log_utils.py +0 -0
  896. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/mapper.py +0 -0
  897. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/plotting.py +0 -0
  898. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/singleton.py +0 -0
  899. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/tensorflow/callback.py +0 -0
  900. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/tensorflow/constants.py +0 -0
  901. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/tensorflow/crf.py +0 -0
  902. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/tensorflow/exceptions.py +0 -0
  903. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/tensorflow/layers.py +0 -0
  904. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/tensorflow/layers_utils.py +0 -0
  905. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/tensorflow/metrics.py +0 -0
  906. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/tensorflow/transformer.py +0 -0
  907. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/tensorflow/types.py +0 -0
  908. {rasa_pro-3.8.17 → rasa_pro-3.9.14}/rasa/utils/yaml.py +0 -0
@@ -0,0 +1,528 @@
1
+ Metadata-Version: 2.1
2
+ Name: rasa-pro
3
+ Version: 3.9.14
4
+ Summary: State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development.
5
+ Home-page: https://rasa.com
6
+ Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
7
+ Author: Rasa Technologies GmbH
8
+ Author-email: hi@rasa.com
9
+ Maintainer: Tom Bocklisch
10
+ Maintainer-email: tom@rasa.com
11
+ Requires-Python: >=3.9,<3.11
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Topic :: Software Development :: Libraries
18
+ Provides-Extra: full
19
+ Provides-Extra: gh-release-notes
20
+ Provides-Extra: jieba
21
+ Provides-Extra: metal
22
+ Provides-Extra: spacy
23
+ Provides-Extra: transformers
24
+ Requires-Dist: CacheControl (>=0.12.14,<0.13.0)
25
+ Requires-Dist: PyJWT[crypto] (>=2.8.0,<3.0.0)
26
+ Requires-Dist: SQLAlchemy (>=2.0.22,<2.1.0)
27
+ Requires-Dist: absl-py (>=2.0,<2.1)
28
+ Requires-Dist: aio-pika (>=8.2.3,<8.2.4)
29
+ Requires-Dist: aiogram (>=2.15,<2.26)
30
+ Requires-Dist: aiohttp (>=3.9.4,<3.10)
31
+ Requires-Dist: apscheduler (>=3.10,<3.11)
32
+ Requires-Dist: attrs (>=23.1,<23.2)
33
+ Requires-Dist: azure-storage-blob (>=12.16.0,<12.17.0)
34
+ Requires-Dist: boto3 (>=1.27.1,<2.0.0)
35
+ Requires-Dist: certifi (>=2024.2.2)
36
+ Requires-Dist: cloudpickle (>=2.2.1,<3.1)
37
+ Requires-Dist: colorama (>=0.4.6,<0.5.0) ; sys_platform == "win32"
38
+ Requires-Dist: colorclass (>=2.2,<2.3)
39
+ Requires-Dist: coloredlogs (>=15,<16)
40
+ Requires-Dist: colorhash (>=2.0,<2.1.0)
41
+ Requires-Dist: confluent-kafka (>=2.3.0,<3.0.0)
42
+ Requires-Dist: cryptography (>=42.0.5)
43
+ Requires-Dist: cvg-python-sdk (>=0.5.1,<0.6.0)
44
+ Requires-Dist: dask (==2022.10.2) ; python_version >= "3.9" and python_version < "3.11"
45
+ Requires-Dist: dnspython (==2.6.1)
46
+ Requires-Dist: faiss-cpu (>=1.7.4,<2.0.0)
47
+ Requires-Dist: faker (>=19.13.0,<20.0.0)
48
+ Requires-Dist: fbmessenger (>=6.0.0,<6.1.0)
49
+ Requires-Dist: github3.py (>=3.2.0,<3.3.0) ; extra == "gh-release-notes"
50
+ Requires-Dist: google-auth (>=2.23.4,<3)
51
+ Requires-Dist: google-cloud-storage (>=2.14.0,<3.0.0)
52
+ Requires-Dist: hvac (>=1.2.1,<2.0.0)
53
+ Requires-Dist: importlib-metadata (>=6.8.0,<7.0.0)
54
+ Requires-Dist: importlib-resources (>=6.1.1,<7.0.0)
55
+ Requires-Dist: jieba (>=0.42.1,<0.43) ; extra == "jieba" or extra == "full"
56
+ Requires-Dist: jinja2 (>=3.1.4,<4.0.0)
57
+ Requires-Dist: joblib (>=1.2.0,<1.3.0)
58
+ Requires-Dist: jsonpatch (>=1.33,<2.0)
59
+ Requires-Dist: jsonpickle (>=3.0,<3.1)
60
+ Requires-Dist: jsonschema (>=4.20,<4.21)
61
+ Requires-Dist: keras (==2.14.0)
62
+ Requires-Dist: langchain (>=0.0.329,<0.0.330)
63
+ Requires-Dist: matplotlib (>=3.7,<3.8)
64
+ Requires-Dist: mattermostwrapper (>=2.2,<2.3)
65
+ Requires-Dist: networkx (>=3.1,<3.2)
66
+ Requires-Dist: numpy (>=1.23.5,<1.25.0) ; python_version >= "3.9" and python_version < "3.11"
67
+ Requires-Dist: openai (>=0.28.1,<0.29.0)
68
+ Requires-Dist: opentelemetry-api (>=1.16.0,<1.17.0)
69
+ Requires-Dist: opentelemetry-exporter-jaeger (>=1.16.0,<1.17.0)
70
+ Requires-Dist: opentelemetry-exporter-otlp (>=1.16.0,<1.17.0)
71
+ Requires-Dist: opentelemetry-sdk (>=1.16.0,<1.17.0)
72
+ Requires-Dist: packaging (>=21.3,<21.4)
73
+ Requires-Dist: pep440-version-utils (>=1.1.0,<1.2.0)
74
+ Requires-Dist: pluggy (>=1.2.0,<2.0.0)
75
+ Requires-Dist: portalocker (>=2.7.0,<3.0.0)
76
+ Requires-Dist: presidio-analyzer (>=2.2.33,<2.2.34)
77
+ Requires-Dist: presidio-anonymizer (>=2.2.33,<2.2.34)
78
+ Requires-Dist: prompt-toolkit (>=3.0.28,<3.0.29)
79
+ Requires-Dist: protobuf (>=4.23.3,<4.25.4)
80
+ Requires-Dist: psutil (>=5.9.5,<6.0.0)
81
+ Requires-Dist: psycopg2-binary (>=2.9.9,<2.10.0)
82
+ Requires-Dist: pycountry (>=22.3.5,<23.0.0)
83
+ Requires-Dist: pydantic (>=2.0,<3.0)
84
+ Requires-Dist: pydot (>=1.4,<1.5)
85
+ Requires-Dist: pykwalify (>=1.8,<1.9)
86
+ Requires-Dist: pymilvus (>=2.3.6,<3.0.0)
87
+ Requires-Dist: pymongo[srv,tls] (>=4.6.3,<4.7)
88
+ Requires-Dist: pypred (>=0.4.0,<0.5.0)
89
+ Requires-Dist: python-dateutil (>=2.8.2,<2.9.0)
90
+ Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
91
+ Requires-Dist: python-engineio (>=4.5.1,<6,!=5.0.0)
92
+ Requires-Dist: python-keycloak (>=3.7.0,<4.0.0)
93
+ Requires-Dist: python-socketio (>=5.8,<6)
94
+ Requires-Dist: pytz (>=2022.7.1,<2023.0)
95
+ Requires-Dist: pyyaml (>=6.0)
96
+ Requires-Dist: qdrant-client (>=1.9.0,<2.0.0)
97
+ Requires-Dist: questionary (>=1.10.0,<2.1.0)
98
+ Requires-Dist: randomname (>=0.2.1,<0.3.0)
99
+ Requires-Dist: rasa-sdk (==3.9.1)
100
+ Requires-Dist: redis (>=4.6.0,<6.0)
101
+ Requires-Dist: regex (>=2022.10.31,<2022.11)
102
+ Requires-Dist: requests (>=2.31.0,<2.32.0)
103
+ Requires-Dist: rich (>=13.4.2,<14.0.0)
104
+ Requires-Dist: rocketchat_API (>=1.30.0,<1.31.0)
105
+ Requires-Dist: ruamel.yaml (>=0.17.21,<0.17.22)
106
+ Requires-Dist: sanic (>=22.12,<22.13)
107
+ Requires-Dist: sanic-cors (>=2.2.0,<2.3.0)
108
+ Requires-Dist: sanic-jwt (>=1.8.0,<2.0.0)
109
+ Requires-Dist: sanic-routing (>=22.8.0,<23.0.0)
110
+ Requires-Dist: scikit-learn (>=1.1.3,<1.2) ; python_version >= "3.9" and python_version < "3.11"
111
+ Requires-Dist: scipy (>=1.10.1,<1.11.0) ; python_version >= "3.9" and python_version < "3.11"
112
+ Requires-Dist: sentencepiece[sentencepiece] (>=0.1.99,<0.2.0) ; extra == "transformers" or extra == "full"
113
+ Requires-Dist: sentry-sdk (>=1.14.0,<1.15.0)
114
+ Requires-Dist: setuptools (>=70.0.0,<70.1.0)
115
+ Requires-Dist: sklearn-crfsuite (>=0.3.6,<0.4.0)
116
+ Requires-Dist: slack-sdk (>=3.27.1,<4.0.0)
117
+ Requires-Dist: spacy (>=3.5.4,<4.0.0) ; extra == "spacy" or extra == "full"
118
+ Requires-Dist: structlog (>=23.1.0,<23.2.0)
119
+ Requires-Dist: structlog-sentry (>=2.0.3,<3.0.0)
120
+ Requires-Dist: tarsafe (>=0.0.5,<0.0.6)
121
+ Requires-Dist: tenacity (>=8.4.1,<8.5.0)
122
+ Requires-Dist: tensorflow (==2.14.1) ; sys_platform != "darwin" or platform_machine != "arm64"
123
+ Requires-Dist: tensorflow-cpu-aws (==2.14.1) ; sys_platform == "linux" and (platform_machine == "arm64" or platform_machine == "aarch64")
124
+ Requires-Dist: tensorflow-intel (==2.14.1) ; sys_platform == "win32"
125
+ Requires-Dist: tensorflow-io-gcs-filesystem (==0.31) ; sys_platform == "win32"
126
+ Requires-Dist: tensorflow-io-gcs-filesystem (==0.34) ; sys_platform == "darwin" and platform_machine != "arm64"
127
+ Requires-Dist: tensorflow-io-gcs-filesystem (==0.34) ; sys_platform == "linux"
128
+ Requires-Dist: tensorflow-macos (==2.14.1) ; sys_platform == "darwin" and platform_machine == "arm64"
129
+ Requires-Dist: tensorflow-metal (==1.1.0) ; (sys_platform == "darwin" and platform_machine == "arm64") and (extra == "metal")
130
+ Requires-Dist: tensorflow-text (==2.14.0) ; sys_platform != "win32" and (platform_machine != "arm64" and platform_machine != "aarch64")
131
+ Requires-Dist: tensorflow_hub (>=0.13.0,<0.14.0)
132
+ Requires-Dist: terminaltables (>=3.1.10,<3.2.0)
133
+ Requires-Dist: tiktoken (>=0.4.0,<0.5.0)
134
+ Requires-Dist: tqdm (>=4.66.2,<5.0.0)
135
+ Requires-Dist: transformers (>=4.36.2,<4.37.0) ; extra == "transformers" or extra == "full"
136
+ Requires-Dist: twilio (>=8.4,<8.5)
137
+ Requires-Dist: types-protobuf (==4.25.0.20240417)
138
+ Requires-Dist: typing-extensions (>=4.7.1,<5.0.0)
139
+ Requires-Dist: typing-utils (>=0.1.0,<0.2.0)
140
+ Requires-Dist: ujson (>=5.8,<6.0)
141
+ Requires-Dist: webexteamssdk (>=1.6.1,<1.7.0)
142
+ Requires-Dist: websockets (>=10.4,<11.0)
143
+ Requires-Dist: wheel (>=0.40.0)
144
+ Project-URL: Documentation, https://rasa.com/docs
145
+ Project-URL: Repository, https://github.com/rasahq/rasa
146
+ Description-Content-Type: text/markdown
147
+
148
+ <h1 align="center">Rasa Pro</h1>
149
+
150
+ <div align="center">
151
+
152
+ [![Build Status](https://github.com/RasaHQ/rasa-private/workflows/Continuous%20Integration/badge.svg)](https://github.com/RasaHQ/rasa-private/actions)
153
+ [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=RasaHQ_rasa&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=RasaHQ_rasa)
154
+ [![Documentation Status](https://img.shields.io/badge/docs-stable-brightgreen.svg)](https://rasa.com/docs/rasa-pro/)
155
+
156
+ </div>
157
+
158
+ <hr />
159
+
160
+ <img align="right" height="255" src="https://www.rasa.com/assets/img/sara/sara-open-source-2.0.png" alt="An image of Sara, the Rasa mascot bird, holding a flag that reads Open Source with one wing, and a wrench in the other" title="Rasa Pro">
161
+
162
+ Rasa Pro is an open core product that extends Rasa Open Source. With over 50 million downloads, Rasa Open Source is the most popular open source framework for building chat and voice-based AI assistants.
163
+
164
+ Rasa Pro introduces CALM, a generative AI-native approach to developing assistants, combined with enterprise-ready analytics, security, and observability capabilities. A paid license is required to run Rasa Pro, but all Rasa Pro code is visible to end users and can be customized as needed.
165
+
166
+ Rasa Pro is the pro-code component of our enterprise solution, Rasa Platform, for implementing resilient and trustworthy AI assistants at scale. Rasa Studio complements Rasa Pro with a low-code user interface, enabling anyone on your team to create and improve your assistant.
167
+
168
+ ---
169
+ - 🤓 [Read The Docs](https://rasa.com/docs/rasa-pro/)
170
+
171
+ - 😁 [Install Rasa Pro](https://rasa.com/docs/rasa-pro/installation/python/installation)
172
+
173
+ ---
174
+
175
+ ## README Contents:
176
+ - [Development Internals](#development-internals)
177
+ - [Releases](#releases)
178
+ - [Troubleshooting](#troubleshooting)
179
+
180
+ ## Development Internals
181
+
182
+ ### Installing Poetry
183
+
184
+ Rasa uses Poetry for packaging and dependency management. If you want to build it from source,
185
+ you have to install Poetry first. Please follow
186
+ [the official guide](https://python-poetry.org/docs/#installation) to see all possible options.
187
+
188
+ To update an existing poetry version to the [version](.github/poetry_version.txt), currently used in rasa, run:
189
+ ```shell
190
+ poetry self update <version>
191
+ ```
192
+
193
+ ### Managing environments
194
+
195
+ The official [Poetry guide](https://python-poetry.org/docs/managing-environments/) suggests to use
196
+ [pyenv](https://github.com/pyenv/pyenv) or any other similar tool to easily switch between Python versions.
197
+ This is how it can be done:
198
+
199
+ ```bash
200
+ pyenv install 3.10.10
201
+ pyenv local 3.10.10 # Activate Python 3.10.10 for the current project
202
+ ```
203
+ *Note*: If you have trouble installing a specific version of python on your system
204
+ it might be worth trying other supported versions.
205
+
206
+ By default, Poetry will try to use the currently activated Python version to create the virtual environment
207
+ for the current project automatically. You can also create and activate a virtual environment manually — in this
208
+ case, Poetry should pick it up and use it to install the dependencies. For example:
209
+
210
+ ```bash
211
+ python -m venv .venv
212
+ source .venv/bin/activate
213
+ ```
214
+
215
+ You can make sure that the environment is picked up by executing
216
+
217
+ ```bash
218
+ poetry env info
219
+ ```
220
+
221
+ ### Building from source
222
+
223
+ To install dependencies and `rasa` itself in editable mode execute
224
+
225
+ ```bash
226
+ make install
227
+ ```
228
+
229
+ *Note for macOS users*: under macOS Big Sur we've seen some compiler issues for
230
+ dependencies. Using `export SYSTEM_VERSION_COMPAT=1` before the installation helped.
231
+
232
+
233
+ #### Installing optional dependencies
234
+
235
+ In order to install rasa's optional dependencies, you need to run:
236
+
237
+ ```bash
238
+ make install-full
239
+ ```
240
+
241
+ *Note for macOS users*: The command `make install-full` could result in a failure while installing `tokenizers`
242
+ (issue described in depth [here](https://github.com/huggingface/tokenizers/issues/1050)).
243
+
244
+ In order to resolve it, you must follow these steps to install a Rust compiler:
245
+ ```bash
246
+ brew install rustup
247
+ rustup-init
248
+ ```
249
+
250
+ After initialising the Rust compiler, you should restart the console and check its installation:
251
+ ```bash
252
+ rustc --version
253
+ ```
254
+
255
+ In case the PATH variable had not been automatically setup, run:
256
+ ```bash
257
+ export PATH="$HOME/.cargo/bin:$PATH"
258
+ ```
259
+
260
+ #### Installing from published Python package
261
+
262
+ We have a private package registry running at **europe-west3-docker.pkg.dev/rasa-releases/** which hosts python packages as well
263
+ as docker containers. To use it, you need to be authenticated.
264
+ Follow the steps in the [google documentation](https://cloud.google.com/artifact-registry/docs/python/authentication#keyring)
265
+ to make sure `pip` has the necessary credentials to authenticate with the registry.
266
+ Afterwards, you should be able to run `pip install rasa`.
267
+
268
+ To be able to pull the docker image via `docker pull europe-west3-docker.pkg.dev/rasa-releases/rasa/rasa`,
269
+ you’ll need to authenticate using the `gcloud auth` command: `gcloud auth configure-docker europe-west3-docker.pkg.dev`.
270
+
271
+ More information is available in our [public documentation](https://rasa.com/docs/rasa-pro/installation/python/installation).
272
+
273
+ ### Running the Tests
274
+
275
+ In order to run the tests, make sure that you have set locally the environment variable `RASA_PRO_LICENSE` to a valid license available in 1Password.
276
+ You should ensure to install the development requirements:
277
+
278
+ ```bash
279
+ make prepare-tests-ubuntu # Only on Ubuntu and Debian based systems
280
+ make prepare-tests-macos # Only on macOS
281
+ ```
282
+
283
+ Then, run the tests:
284
+
285
+ ```bash
286
+ make test
287
+ ```
288
+
289
+ They can also be run at multiple jobs to save some time:
290
+
291
+ ```bash
292
+ JOBS=[n] make test
293
+ ```
294
+
295
+ Where `[n]` is the number of jobs desired. If omitted, `[n]` will be automatically chosen by pytest.
296
+
297
+
298
+ ### Running the Integration Tests
299
+
300
+ In order to run the integration tests, make sure that you have the development requirements installed:
301
+
302
+ ```bash
303
+ make prepare-tests-ubuntu # Only on Ubuntu and Debian based systems
304
+ make prepare-tests-macos # Only on macOS
305
+ ```
306
+
307
+ Then, you'll need to start services with the following command which uses
308
+ [Docker Compose](https://docs.docker.com/compose/install/):
309
+
310
+ ```bash
311
+ make run-integration-containers
312
+ ```
313
+
314
+ Finally, you can run the integration tests like this:
315
+
316
+ ```bash
317
+ make test-integration
318
+ ```
319
+
320
+ In order to run locally the integration tests for the tracing capability, you must first build the rasa image locally.
321
+ You can do so using the `docker buildx bake` command.
322
+ Note that the rasa image build requires a few base images, which must be built prior to building the rasa image.
323
+ The Dockerfiles for these base images are located in the `docker` subdirectory.
324
+
325
+ You must also set the following environment variables to build the rasa image locally:
326
+ - `TARGET_IMAGE_REGISTRY`, e.g. you can either use `rasa` or the private registry `europe-west3-docker.pkg.dev/rasa-releases/rasa-docker`.
327
+ - `IMAGE_TAG`, e.g. `localdev`, `latest` or PR ID.
328
+ - `BASE_IMAGE_HASH`, e.g. `localdev`
329
+ - `BASE_MITIE_IMAGE_HASH`, e.g. `localdev`
330
+ - `BASE_BUILDER_IMAGE_HASH`, e.g. `localdev`
331
+
332
+
333
+ ### Resolving merge conflicts
334
+
335
+ Poetry doesn't include any solution that can help to resolve merge conflicts in
336
+ the lock file `poetry.lock` by default.
337
+ However, there is a great tool called [poetry-merge-lock](https://poetry-merge-lock.readthedocs.io/en/latest/).
338
+ Here is how you can install it:
339
+
340
+ ```bash
341
+ pip install poetry-merge-lock
342
+ ```
343
+
344
+ Just execute this command to resolve merge conflicts in `poetry.lock` automatically:
345
+
346
+ ```bash
347
+ poetry-merge-lock
348
+ ```
349
+
350
+ ### Build a Docker image locally
351
+
352
+ In order to build a Docker image on your local machine execute the following command:
353
+
354
+ ```bash
355
+ make build-docker
356
+ ```
357
+
358
+ The Docker image is available on your local machine as `rasa-private-dev`.
359
+
360
+ ### Code Style
361
+
362
+ To ensure a standardized code style we use the [ruff](https://docs.astral.sh/ruff/formatter/) formatter.
363
+ To ensure our type annotations are correct we use the type checker [mypy](https://mypy.readthedocs.io/en/stable/).
364
+ If your code is not formatted properly or doesn't type check, GitHub will fail to build.
365
+
366
+ #### Formatting
367
+
368
+ If you want to automatically format your code on every commit, you can use [pre-commit](https://pre-commit.com/).
369
+ Just install it via `pip install pre-commit` and execute `pre-commit install` in the root folder.
370
+ This will add a hook to the repository, which reformats files on every commit.
371
+
372
+ If you want to set it up manually, install `ruff` via `poetry install`.
373
+ To reformat files execute
374
+ ```
375
+ make formatter
376
+ ```
377
+
378
+ #### Type Checking
379
+
380
+ If you want to check types on the codebase, install `mypy` using `poetry install`.
381
+ To check the types execute
382
+ ```
383
+ make types
384
+ ```
385
+
386
+ ## Releases
387
+ Rasa has implemented robust policies governing version naming, as well as release pace for major, minor, and patch releases.
388
+
389
+ The values for a given version number (MAJOR.MINOR.PATCH) are incremented as follows:
390
+ - MAJOR version for incompatible API changes or other breaking changes.
391
+ - MINOR version for functionality added in a backward compatible manner.
392
+ - PATCH version for backward compatible bug fixes.
393
+
394
+ The following table describes the version types and their expected *release cadence*:
395
+
396
+ | Version Type | Description | Target Cadence |
397
+ |--------------|-----------------------------------------------------------------------------------------------------------------------------------------------|-----------------|
398
+ | Major | For significant changes, or when any backward-incompatible changes are introduced to the API or data model. | Every 1 - 2 yrs |
399
+ | Minor | For when new backward-compatible functionality is introduced, a minor feature is introduced, or when a set of smaller features is rolled out. | +/- Quarterly |
400
+ | Patch | For backward-compatible bug fixes that fix incorrect behavior. | As needed |
401
+
402
+ While this table represents our target release frequency, we reserve the right to modify it based on changing market conditions and technical requirements.
403
+
404
+ ### Maintenance Policy
405
+ Our End of Life policy defines how long a given release is considered supported, as well as how long a release is
406
+ considered to be still in active development or maintenance.
407
+
408
+ The maintenance duration and end of life for every release are shown on our website as part of the [Product Release and Maintenance Policy](https://rasa.com/rasa-product-release-and-maintenance-policy/).
409
+
410
+ ### Cutting a Major / Minor release
411
+ #### A week before release day
412
+
413
+ **Post a message on the engineering Slack channel**, letting the team know you'll be the one cutting the upcoming
414
+ release, as well as:
415
+ 1. Reminding everyone to go over their issues and PRs and prioritise reviews and merges
416
+ 2. Reminding everyone of the scheduled date for the release
417
+
418
+ #### A day before release day
419
+
420
+ 1. **Evaluate the status of any PR merging that's happening. Follow up with people on their
421
+ bugs and fixes.** If the release introduces new bugs or regressions that can't be fixed in time, we should discuss on
422
+ Slack about this and take a decision on how to move forward. If the issue is not ready to be merged in time, we remove the issue / PR from the release and notify the PR owner and the product manager on Slack about it. The PR / issue owners are responsible for
423
+ communicating any issues which might be release relevant. Postponing the release should be considered as an edge case scenario.
424
+
425
+ #### Release day! 🚀
426
+
427
+ 1. **At the start of the day, post a small message on slack announcing release day!** Communicate you'll be handling
428
+ the release, and the time you're aiming to start releasing (again, no later than 4pm, as issues may arise and
429
+ cause delays). This message should be posted early in the morning and before moving forward with any of the steps of the release,
430
+ in order to give enough time to people to check their PRs and issues. That way they can plan any remaining work. A template of the slack message can be found [here](https://rasa-hq.slack.com/archives/C36SS4N8M/p1613032208137500?thread_ts=1612876410.068400&cid=C36SS4N8M).
431
+ The release time should be communicated transparently so that others can plan potentially necessary steps accordingly. If there are bigger changes this should be communicated.
432
+ 2. Once everything in the release is taken care of, post a small message on Slack communicating you are about to
433
+ start the release process (in case anything is missing).
434
+ 3. **You may now do the release by following the instructions outlined in the
435
+ [Rasa Pro README](#steps-to-release-a-new-version) !**
436
+
437
+ ### Steps to release a new version
438
+ Releasing a new version is quite simple, as the packages are build and distributed by GitHub Actions.
439
+
440
+ *Release steps*:
441
+ 1. Make sure all dependencies are up to date (**especially Rasa SDK**)
442
+ - For Rasa SDK, except in the case of a patch release, that means first creating a [new Rasa SDK release](https://github.com/RasaHQ/rasa-sdk#steps-to-release-a-new-version) (make sure the version numbers between the new Rasa and Rasa SDK releases match)
443
+ - Once the tag with the new Rasa SDK release is pushed and the package appears on [pypi](https://pypi.org/project/rasa-sdk/), the dependency in the rasa repository can be resolved (see below).
444
+ 2. If this is a minor / major release: Make sure all fixes from currently supported minor versions have been merged from their respective release branches (e.g. 3.8.x) back into main.
445
+ 3. In case of a minor release, create a new branch that corresponds to the new release, e.g.
446
+ ```bash
447
+ git checkout -b 3.8.x
448
+ git push origin 3.8.x
449
+ ```
450
+ 4. Switch to the branch you want to cut the release from (`main` in case of a major, the `<major>.<minor>.x` branch for minors and patches)
451
+ - Update the `rasa-sdk` entry in `pyproject.toml` with the new release version and run `poetry update`. This creates a new `poetry.lock` file with all dependencies resolved.
452
+ - Commit the changes with `git commit -am "bump rasa-sdk dependency"` but do not push them. They will be automatically picked up by the following step.
453
+ 5. Run `make release`
454
+ 6. Create a PR against the release branch (e.g. `3.8.x`)
455
+ 7. Once your PR is merged, [this](https://github.com/RasaHQ/rasa-private/actions/workflows/tag-release.yml) workflow runs and an automatic tag is created and pushed to remote.
456
+ (If this fails for some reason, then run the following manually on the release branch) :
457
+ ```bash
458
+ git checkout 3.8.x
459
+ git pull origin 3.8.x
460
+ git tag 3.8.0 -m "next release"
461
+ git push origin 3.8.0 --tags
462
+ ```
463
+ GitHub will build this tag and publish the build artifacts.
464
+ 8. After all the steps are completed and if everything goes well then we should see a message automatically posted in the company's Slack (`release` channel) like this [one](https://rasa-hq.slack.com/archives/C7B08Q5FX/p1614354499046600)
465
+ 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)
466
+ (In this case do the following checks):
467
+ - 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))
468
+ - If the workflow is not completed, then try to re run the workflow in case that solves the problem
469
+ - If the problem persists, check also the log files and try to find the root cause of the issue
470
+ - If you still cannot resolve the error, contact the infrastructure team by providing any helpful information from your investigation
471
+
472
+ ### Cutting a Patch release
473
+
474
+ Patch releases are simpler to cut, since they are meant to contain only bugfixes.
475
+
476
+ **The only things you need to do to cut a patch release are:**
477
+
478
+ 1. Notify the engineering team on Slack that you are planning to cut a patch, in case someone has an important fix
479
+ to add.
480
+ 2. Make sure the bugfix(es) are in the release branch you will use (p.e if you are cutting a `3.8.2` patch, you will
481
+ need your fixes to be on the `3.8.x` release branch). All patch releases must come from a `.x` branch!
482
+ 3. Once you're ready to release the Rasa Pro patch, checkout the branch, run `make release` and follow the
483
+ steps + get the PR merged.
484
+ 4. Once the PR is in, wait for the [tag release workflow](https://github.com/RasaHQ/rasa-private/actions/workflows/tag-release.yml) to create the tag.
485
+ (If this fails for some reason, then run the following manually on the release branch) :
486
+ ```bash
487
+ git checkout 3.8.x
488
+ git pull origin 3.8.x
489
+ git tag 3.8.0 -m "next release"
490
+ git push origin 3.8.0 --tags
491
+ ```
492
+ 5. After this you should see the CI workflow "Continuous Integration" in the Actions tab with the relevant tag name. Keep an eye on it to make sure it is successful as sometimes retries might be required.
493
+ 6. After all the steps are completed and if everything goes well then we should see a message automatically posted in the company's Slack (`release` channel) like this [one](https://rasa-hq.slack.com/archives/C7B08Q5FX/p1614354499046600)
494
+ 7. 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)
495
+
496
+ Make sure to merge the branch `3.7.x` after your PR with `main`. This needs to be done manually until Roberto is added (see [ATO-2091](https://rasahq.atlassian.net/browse/ATO-2091))
497
+
498
+ ### Cutting a Pre release version
499
+
500
+ A Pre release version is an alpha, beta, dev or rc version. For more details on which version you require refer to the [Rasa Software Release Lifecycle](https://www.notion.so/rasa/Rasa-Software-Release-Lifecycle-eb704d75f87646a9a9aca1f3fbe71fb3#6e26ac9a15b64f91bb94d6bfea9306a0)
501
+
502
+ 1. Make sure you are using the right branch for the release, for instance pre releases are always made from either the main or a feature branch (especially for a dev release)
503
+ 2. Once you're ready to release, checkout the branch, run `make release` and follow the
504
+ steps.
505
+ 3. Only in case of a pre release, the release branch created will be prefixed with 'prepare-release-pre-'
506
+ 4. Note that when releasing from a feature branch the 'prepare-release-pre' branch will not be created automatically and has to be done manually. This is done to ensure all major/minor/patch releases only happens from the correct branches.
507
+ (In this case the version updates will be added to the same branch as a commit, and you will have to manually create a `prepare-release-pre-' branch and push to remote)
508
+ 5. Only in case of a pre release, we currently skip all test runs and docker image builds on a 'prepare-release-pre-' PR. This was done to speed up the pre release process.
509
+ 6. Once your PR gets merged, the [tag release workflow](https://github.com/RasaHQ/rasa-private/actions/workflows/tag-release.yml) will create the tag.
510
+ 7. After this you should see the CI workflow "Continuous Integration" in the Actions tab with the relevant tag name. Keep an eye on it to make sure it is successful as sometimes retries might be required.
511
+ 8. After all the steps are completed and if everything goes well then we should see a message automatically posted in the company's Slack (`release` channel) like this [one](https://rasa-hq.slack.com/archives/C7B08Q5FX/p1614354499046600)
512
+ 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)
513
+
514
+
515
+ ### Actively maintained versions
516
+
517
+ Please refer to the [Rasa Product Release and Maintenance Policy](https://rasa.com/rasa-product-release-and-maintenance-policy/) page.
518
+
519
+ ## Troubleshooting
520
+
521
+ - When running docker commands, if you encounter this error: `OSError No space left on device`, consider running:
522
+
523
+ ```shell
524
+ docker system prune --all
525
+ ```
526
+
527
+ For more information on this command, please see the [Official Docker Documentation](https://docs.docker.com/engine/reference/commandline/system_prune/).
528
+