rasa-pro 0.0.1__tar.gz → 3.8.16__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 (650) hide show
  1. rasa_pro-3.8.16/NOTICE +5 -0
  2. rasa_pro-3.8.16/PKG-INFO +528 -0
  3. rasa_pro-3.8.16/README.md +380 -0
  4. rasa_pro-3.8.16/pyproject.toml +353 -0
  5. rasa_pro-3.8.16/rasa/__init__.py +10 -0
  6. rasa_pro-3.8.16/rasa/__main__.py +151 -0
  7. rasa_pro-3.8.16/rasa/anonymization/__init__.py +2 -0
  8. rasa_pro-3.8.16/rasa/anonymization/anonymisation_rule_yaml_reader.py +91 -0
  9. rasa_pro-3.8.16/rasa/anonymization/anonymization_pipeline.py +287 -0
  10. rasa_pro-3.8.16/rasa/anonymization/anonymization_rule_executor.py +260 -0
  11. rasa_pro-3.8.16/rasa/anonymization/anonymization_rule_orchestrator.py +120 -0
  12. rasa_pro-3.8.16/rasa/anonymization/schemas/config.yml +47 -0
  13. rasa_pro-3.8.16/rasa/anonymization/utils.py +117 -0
  14. rasa_pro-3.8.16/rasa/api.py +146 -0
  15. rasa_pro-3.8.16/rasa/cli/__init__.py +5 -0
  16. rasa_pro-3.8.16/rasa/cli/arguments/__init__.py +0 -0
  17. rasa_pro-3.8.16/rasa/cli/arguments/data.py +81 -0
  18. rasa_pro-3.8.16/rasa/cli/arguments/default_arguments.py +165 -0
  19. rasa_pro-3.8.16/rasa/cli/arguments/evaluate.py +65 -0
  20. rasa_pro-3.8.16/rasa/cli/arguments/export.py +51 -0
  21. rasa_pro-3.8.16/rasa/cli/arguments/interactive.py +74 -0
  22. rasa_pro-3.8.16/rasa/cli/arguments/run.py +204 -0
  23. rasa_pro-3.8.16/rasa/cli/arguments/shell.py +13 -0
  24. rasa_pro-3.8.16/rasa/cli/arguments/test.py +211 -0
  25. rasa_pro-3.8.16/rasa/cli/arguments/train.py +263 -0
  26. rasa_pro-3.8.16/rasa/cli/arguments/visualize.py +34 -0
  27. rasa_pro-3.8.16/rasa/cli/arguments/x.py +30 -0
  28. rasa_pro-3.8.16/rasa/cli/data.py +292 -0
  29. rasa_pro-3.8.16/rasa/cli/e2e_test.py +566 -0
  30. rasa_pro-3.8.16/rasa/cli/evaluate.py +222 -0
  31. rasa_pro-3.8.16/rasa/cli/export.py +251 -0
  32. rasa_pro-3.8.16/rasa/cli/inspect.py +63 -0
  33. rasa_pro-3.8.16/rasa/cli/interactive.py +164 -0
  34. rasa_pro-3.8.16/rasa/cli/license.py +65 -0
  35. rasa_pro-3.8.16/rasa/cli/markers.py +78 -0
  36. rasa_pro-3.8.16/rasa/cli/project_templates/__init__.py +0 -0
  37. rasa_pro-3.8.16/rasa/cli/project_templates/calm/actions/__init__.py +0 -0
  38. rasa_pro-3.8.16/rasa/cli/project_templates/calm/actions/action_template.py +27 -0
  39. rasa_pro-3.8.16/rasa/cli/project_templates/calm/actions/add_contact.py +30 -0
  40. rasa_pro-3.8.16/rasa/cli/project_templates/calm/actions/db.py +57 -0
  41. rasa_pro-3.8.16/rasa/cli/project_templates/calm/actions/list_contacts.py +22 -0
  42. rasa_pro-3.8.16/rasa/cli/project_templates/calm/actions/remove_contact.py +35 -0
  43. rasa_pro-3.8.16/rasa/cli/project_templates/calm/config.yml +12 -0
  44. rasa_pro-3.8.16/rasa/cli/project_templates/calm/credentials.yml +33 -0
  45. rasa_pro-3.8.16/rasa/cli/project_templates/calm/data/flows/add_contact.yml +31 -0
  46. rasa_pro-3.8.16/rasa/cli/project_templates/calm/data/flows/list_contacts.yml +14 -0
  47. rasa_pro-3.8.16/rasa/cli/project_templates/calm/data/flows/remove_contact.yml +29 -0
  48. rasa_pro-3.8.16/rasa/cli/project_templates/calm/db/contacts.json +10 -0
  49. rasa_pro-3.8.16/rasa/cli/project_templates/calm/domain/add_contact.yml +33 -0
  50. rasa_pro-3.8.16/rasa/cli/project_templates/calm/domain/list_contacts.yml +14 -0
  51. rasa_pro-3.8.16/rasa/cli/project_templates/calm/domain/remove_contact.yml +31 -0
  52. rasa_pro-3.8.16/rasa/cli/project_templates/calm/domain/shared.yml +5 -0
  53. rasa_pro-3.8.16/rasa/cli/project_templates/calm/e2e_tests/cancelations/user_cancels_during_a_correction.yml +16 -0
  54. rasa_pro-3.8.16/rasa/cli/project_templates/calm/e2e_tests/cancelations/user_changes_mind_on_a_whim.yml +7 -0
  55. rasa_pro-3.8.16/rasa/cli/project_templates/calm/e2e_tests/corrections/user_corrects_contact_handle.yml +20 -0
  56. rasa_pro-3.8.16/rasa/cli/project_templates/calm/e2e_tests/corrections/user_corrects_contact_name.yml +19 -0
  57. rasa_pro-3.8.16/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_adds_contact_to_their_list.yml +15 -0
  58. rasa_pro-3.8.16/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_lists_contacts.yml +5 -0
  59. rasa_pro-3.8.16/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact.yml +11 -0
  60. rasa_pro-3.8.16/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact_from_list.yml +12 -0
  61. rasa_pro-3.8.16/rasa/cli/project_templates/calm/endpoints.yml +45 -0
  62. rasa_pro-3.8.16/rasa/cli/project_templates/default/actions/__init__.py +0 -0
  63. rasa_pro-3.8.16/rasa/cli/project_templates/default/actions/actions.py +27 -0
  64. rasa_pro-3.8.16/rasa/cli/project_templates/default/config.yml +44 -0
  65. rasa_pro-3.8.16/rasa/cli/project_templates/default/credentials.yml +33 -0
  66. rasa_pro-3.8.16/rasa/cli/project_templates/default/data/nlu.yml +91 -0
  67. rasa_pro-3.8.16/rasa/cli/project_templates/default/data/rules.yml +13 -0
  68. rasa_pro-3.8.16/rasa/cli/project_templates/default/data/stories.yml +30 -0
  69. rasa_pro-3.8.16/rasa/cli/project_templates/default/domain.yml +34 -0
  70. rasa_pro-3.8.16/rasa/cli/project_templates/default/endpoints.yml +42 -0
  71. rasa_pro-3.8.16/rasa/cli/project_templates/default/tests/test_stories.yml +91 -0
  72. rasa_pro-3.8.16/rasa/cli/project_templates/tutorial/actions.py +22 -0
  73. rasa_pro-3.8.16/rasa/cli/project_templates/tutorial/config.yml +11 -0
  74. rasa_pro-3.8.16/rasa/cli/project_templates/tutorial/credentials.yml +33 -0
  75. rasa_pro-3.8.16/rasa/cli/project_templates/tutorial/data/flows.yml +8 -0
  76. rasa_pro-3.8.16/rasa/cli/project_templates/tutorial/domain.yml +17 -0
  77. rasa_pro-3.8.16/rasa/cli/project_templates/tutorial/endpoints.yml +45 -0
  78. rasa_pro-3.8.16/rasa/cli/run.py +136 -0
  79. rasa_pro-3.8.16/rasa/cli/scaffold.py +268 -0
  80. rasa_pro-3.8.16/rasa/cli/shell.py +141 -0
  81. rasa_pro-3.8.16/rasa/cli/studio/__init__.py +0 -0
  82. rasa_pro-3.8.16/rasa/cli/studio/download.py +51 -0
  83. rasa_pro-3.8.16/rasa/cli/studio/studio.py +110 -0
  84. rasa_pro-3.8.16/rasa/cli/studio/train.py +59 -0
  85. rasa_pro-3.8.16/rasa/cli/studio/upload.py +85 -0
  86. rasa_pro-3.8.16/rasa/cli/telemetry.py +90 -0
  87. rasa_pro-3.8.16/rasa/cli/test.py +280 -0
  88. rasa_pro-3.8.16/rasa/cli/train.py +260 -0
  89. rasa_pro-3.8.16/rasa/cli/utils.py +453 -0
  90. rasa_pro-3.8.16/rasa/cli/visualize.py +40 -0
  91. rasa_pro-3.8.16/rasa/cli/x.py +205 -0
  92. rasa_pro-3.8.16/rasa/constants.py +37 -0
  93. rasa_pro-3.8.16/rasa/core/__init__.py +17 -0
  94. rasa_pro-3.8.16/rasa/core/actions/__init__.py +0 -0
  95. rasa_pro-3.8.16/rasa/core/actions/action.py +1450 -0
  96. rasa_pro-3.8.16/rasa/core/actions/action_clean_stack.py +59 -0
  97. rasa_pro-3.8.16/rasa/core/actions/action_run_slot_rejections.py +207 -0
  98. rasa_pro-3.8.16/rasa/core/actions/action_trigger_chitchat.py +31 -0
  99. rasa_pro-3.8.16/rasa/core/actions/action_trigger_flow.py +109 -0
  100. rasa_pro-3.8.16/rasa/core/actions/action_trigger_search.py +31 -0
  101. rasa_pro-3.8.16/rasa/core/actions/constants.py +2 -0
  102. rasa_pro-3.8.16/rasa/core/actions/forms.py +737 -0
  103. rasa_pro-3.8.16/rasa/core/actions/loops.py +111 -0
  104. rasa_pro-3.8.16/rasa/core/actions/two_stage_fallback.py +186 -0
  105. rasa_pro-3.8.16/rasa/core/agent.py +557 -0
  106. rasa_pro-3.8.16/rasa/core/auth_retry_tracker_store.py +122 -0
  107. rasa_pro-3.8.16/rasa/core/brokers/__init__.py +0 -0
  108. rasa_pro-3.8.16/rasa/core/brokers/broker.py +126 -0
  109. rasa_pro-3.8.16/rasa/core/brokers/file.py +58 -0
  110. rasa_pro-3.8.16/rasa/core/brokers/kafka.py +322 -0
  111. rasa_pro-3.8.16/rasa/core/brokers/pika.py +387 -0
  112. rasa_pro-3.8.16/rasa/core/brokers/sql.py +86 -0
  113. rasa_pro-3.8.16/rasa/core/channels/__init__.py +55 -0
  114. rasa_pro-3.8.16/rasa/core/channels/audiocodes.py +463 -0
  115. rasa_pro-3.8.16/rasa/core/channels/botframework.py +339 -0
  116. rasa_pro-3.8.16/rasa/core/channels/callback.py +85 -0
  117. rasa_pro-3.8.16/rasa/core/channels/channel.py +419 -0
  118. rasa_pro-3.8.16/rasa/core/channels/console.py +243 -0
  119. rasa_pro-3.8.16/rasa/core/channels/development_inspector.py +93 -0
  120. rasa_pro-3.8.16/rasa/core/channels/facebook.py +422 -0
  121. rasa_pro-3.8.16/rasa/core/channels/hangouts.py +335 -0
  122. rasa_pro-3.8.16/rasa/core/channels/inspector/.eslintrc.cjs +25 -0
  123. rasa_pro-3.8.16/rasa/core/channels/inspector/.gitignore +23 -0
  124. rasa_pro-3.8.16/rasa/core/channels/inspector/README.md +54 -0
  125. rasa_pro-3.8.16/rasa/core/channels/inspector/assets/favicon.ico +0 -0
  126. rasa_pro-3.8.16/rasa/core/channels/inspector/assets/rasa-chat.js +2 -0
  127. rasa_pro-3.8.16/rasa/core/channels/inspector/custom.d.ts +3 -0
  128. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/arc-5623b6dc.js +1 -0
  129. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/array-9f3ba611.js +1 -0
  130. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/c4Diagram-d0fbc5ce-685c106a.js +10 -0
  131. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/classDiagram-936ed81e-8cbed007.js +2 -0
  132. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/classDiagram-v2-c3cb15f1-5889cf12.js +2 -0
  133. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/createText-62fc7601-24c249d7.js +7 -0
  134. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/edges-f2ad444c-7dd06a75.js +4 -0
  135. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/erDiagram-9d236eb7-62c1e54c.js +51 -0
  136. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/flowDb-1972c806-ce49b86f.js +6 -0
  137. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/flowDiagram-7ea5b25a-4067e48f.js +4 -0
  138. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/flowDiagram-v2-855bc5b3-85583a23.js +1 -0
  139. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/flowchart-elk-definition-abe16c3d-59fe4051.js +139 -0
  140. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/ganttDiagram-9b5ea136-47e3a43b.js +266 -0
  141. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/gitGraphDiagram-99d0ae7c-5a2ac0d9.js +70 -0
  142. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-128cfa44.ttf +0 -0
  143. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-21dbcb97.woff +0 -0
  144. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-222b5e26.svg +329 -0
  145. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-9ad89b2a.woff2 +0 -0
  146. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/index-268a75c0.js +1040 -0
  147. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/index-2c4b9a3b-dfb8efc4.js +1 -0
  148. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/index-3ee28881.css +1 -0
  149. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/infoDiagram-736b4530-b0c470f2.js +7 -0
  150. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/init-77b53fdd.js +1 -0
  151. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/journeyDiagram-df861f2b-2edb829a.js +139 -0
  152. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-60c05ee4.woff +0 -0
  153. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-8335d9b8.svg +438 -0
  154. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-9cc39c75.ttf +0 -0
  155. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-ead13ccf.woff2 +0 -0
  156. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-16705655.woff2 +0 -0
  157. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-5aeb07f9.woff +0 -0
  158. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9c459044.ttf +0 -0
  159. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9e2898a4.svg +435 -0
  160. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/layout-b6873d69.js +1 -0
  161. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/line-1efc5781.js +1 -0
  162. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/linear-661e9b94.js +1 -0
  163. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/mindmap-definition-beec6740-2d2e727f.js +109 -0
  164. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/ordinal-ba9b4969.js +1 -0
  165. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/path-53f90ab3.js +1 -0
  166. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/pieDiagram-dbbf0591-9d3ea93d.js +35 -0
  167. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/quadrantDiagram-4d7f4fd6-06a178a2.js +7 -0
  168. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/requirementDiagram-6fc4c22a-0bfedffc.js +52 -0
  169. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/sankeyDiagram-8f13d901-d76d0a04.js +8 -0
  170. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/sequenceDiagram-b655622a-37bb4341.js +122 -0
  171. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/stateDiagram-59f0c015-f52f7f57.js +1 -0
  172. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/stateDiagram-v2-2b26beab-4a986a20.js +1 -0
  173. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/styles-080da4f6-7dd9ae12.js +110 -0
  174. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/styles-3dcbcfbf-46e1ca14.js +159 -0
  175. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/styles-9c745c82-4a97439a.js +207 -0
  176. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/svgDrawCommon-4835440b-823917a3.js +1 -0
  177. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/timeline-definition-5b62e21b-9ea72896.js +61 -0
  178. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/assets/xychartDiagram-2b33534f-b631a8b6.js +7 -0
  179. rasa_pro-3.8.16/rasa/core/channels/inspector/dist/index.html +39 -0
  180. rasa_pro-3.8.16/rasa/core/channels/inspector/index.html +37 -0
  181. rasa_pro-3.8.16/rasa/core/channels/inspector/jest.config.ts +13 -0
  182. rasa_pro-3.8.16/rasa/core/channels/inspector/package.json +48 -0
  183. rasa_pro-3.8.16/rasa/core/channels/inspector/setupTests.ts +2 -0
  184. rasa_pro-3.8.16/rasa/core/channels/inspector/src/App.tsx +170 -0
  185. rasa_pro-3.8.16/rasa/core/channels/inspector/src/components/DiagramFlow.tsx +97 -0
  186. rasa_pro-3.8.16/rasa/core/channels/inspector/src/components/DialogueInformation.tsx +187 -0
  187. rasa_pro-3.8.16/rasa/core/channels/inspector/src/components/DialogueStack.tsx +151 -0
  188. rasa_pro-3.8.16/rasa/core/channels/inspector/src/components/ExpandIcon.tsx +16 -0
  189. rasa_pro-3.8.16/rasa/core/channels/inspector/src/components/FullscreenButton.tsx +45 -0
  190. rasa_pro-3.8.16/rasa/core/channels/inspector/src/components/LoadingSpinner.tsx +19 -0
  191. rasa_pro-3.8.16/rasa/core/channels/inspector/src/components/NoActiveFlow.tsx +21 -0
  192. rasa_pro-3.8.16/rasa/core/channels/inspector/src/components/RasaLogo.tsx +32 -0
  193. rasa_pro-3.8.16/rasa/core/channels/inspector/src/components/SaraDiagrams.tsx +39 -0
  194. rasa_pro-3.8.16/rasa/core/channels/inspector/src/components/Slots.tsx +91 -0
  195. rasa_pro-3.8.16/rasa/core/channels/inspector/src/components/Welcome.tsx +54 -0
  196. rasa_pro-3.8.16/rasa/core/channels/inspector/src/helpers/formatters.test.ts +385 -0
  197. rasa_pro-3.8.16/rasa/core/channels/inspector/src/helpers/formatters.ts +239 -0
  198. rasa_pro-3.8.16/rasa/core/channels/inspector/src/helpers/utils.ts +42 -0
  199. rasa_pro-3.8.16/rasa/core/channels/inspector/src/main.tsx +13 -0
  200. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/Button/Button.ts +29 -0
  201. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/Heading/Heading.ts +31 -0
  202. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/Input/Input.ts +27 -0
  203. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/Link/Link.ts +10 -0
  204. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/Modal/Modal.ts +47 -0
  205. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/Table/Table.tsx +38 -0
  206. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/Tooltip/Tooltip.ts +12 -0
  207. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/breakpoints.ts +8 -0
  208. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/colors.ts +88 -0
  209. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/fontFaces.css +29 -0
  210. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.eot +0 -0
  211. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.svg +329 -0
  212. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.ttf +0 -0
  213. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.woff +0 -0
  214. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.woff2 +0 -0
  215. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.eot +0 -0
  216. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.svg +438 -0
  217. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.ttf +0 -0
  218. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.woff +0 -0
  219. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.woff2 +0 -0
  220. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.eot +0 -0
  221. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.svg +435 -0
  222. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.ttf +0 -0
  223. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.woff +0 -0
  224. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.woff2 +0 -0
  225. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/radii.ts +9 -0
  226. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/shadows.ts +7 -0
  227. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/sizes.ts +7 -0
  228. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/space.ts +15 -0
  229. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/styles.ts +13 -0
  230. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/typography.ts +24 -0
  231. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/base/zIndices.ts +19 -0
  232. rasa_pro-3.8.16/rasa/core/channels/inspector/src/theme/index.ts +101 -0
  233. rasa_pro-3.8.16/rasa/core/channels/inspector/src/types.ts +64 -0
  234. rasa_pro-3.8.16/rasa/core/channels/inspector/src/vite-env.d.ts +1 -0
  235. rasa_pro-3.8.16/rasa/core/channels/inspector/tests/__mocks__/fileMock.ts +1 -0
  236. rasa_pro-3.8.16/rasa/core/channels/inspector/tests/__mocks__/matchMedia.ts +16 -0
  237. rasa_pro-3.8.16/rasa/core/channels/inspector/tests/__mocks__/styleMock.ts +1 -0
  238. rasa_pro-3.8.16/rasa/core/channels/inspector/tests/renderWithProviders.tsx +14 -0
  239. rasa_pro-3.8.16/rasa/core/channels/inspector/tsconfig.json +26 -0
  240. rasa_pro-3.8.16/rasa/core/channels/inspector/tsconfig.node.json +10 -0
  241. rasa_pro-3.8.16/rasa/core/channels/inspector/vite.config.ts +8 -0
  242. rasa_pro-3.8.16/rasa/core/channels/inspector/yarn.lock +6156 -0
  243. rasa_pro-3.8.16/rasa/core/channels/mattermost.py +229 -0
  244. rasa_pro-3.8.16/rasa/core/channels/rasa_chat.py +126 -0
  245. rasa_pro-3.8.16/rasa/core/channels/rest.py +210 -0
  246. rasa_pro-3.8.16/rasa/core/channels/rocketchat.py +175 -0
  247. rasa_pro-3.8.16/rasa/core/channels/slack.py +620 -0
  248. rasa_pro-3.8.16/rasa/core/channels/socketio.py +274 -0
  249. rasa_pro-3.8.16/rasa/core/channels/telegram.py +298 -0
  250. rasa_pro-3.8.16/rasa/core/channels/twilio.py +169 -0
  251. rasa_pro-3.8.16/rasa/core/channels/twilio_voice.py +367 -0
  252. rasa_pro-3.8.16/rasa/core/channels/vier_cvg.py +374 -0
  253. rasa_pro-3.8.16/rasa/core/channels/webexteams.py +135 -0
  254. rasa_pro-3.8.16/rasa/core/concurrent_lock_store.py +210 -0
  255. rasa_pro-3.8.16/rasa/core/constants.py +107 -0
  256. rasa_pro-3.8.16/rasa/core/evaluation/__init__.py +0 -0
  257. rasa_pro-3.8.16/rasa/core/evaluation/marker.py +267 -0
  258. rasa_pro-3.8.16/rasa/core/evaluation/marker_base.py +925 -0
  259. rasa_pro-3.8.16/rasa/core/evaluation/marker_stats.py +294 -0
  260. rasa_pro-3.8.16/rasa/core/evaluation/marker_tracker_loader.py +103 -0
  261. rasa_pro-3.8.16/rasa/core/exceptions.py +29 -0
  262. rasa_pro-3.8.16/rasa/core/exporter.py +284 -0
  263. rasa_pro-3.8.16/rasa/core/featurizers/__init__.py +0 -0
  264. rasa_pro-3.8.16/rasa/core/featurizers/precomputation.py +410 -0
  265. rasa_pro-3.8.16/rasa/core/featurizers/single_state_featurizer.py +402 -0
  266. rasa_pro-3.8.16/rasa/core/featurizers/tracker_featurizers.py +1172 -0
  267. rasa_pro-3.8.16/rasa/core/http_interpreter.py +89 -0
  268. rasa_pro-3.8.16/rasa/core/information_retrieval/__init__.py +0 -0
  269. rasa_pro-3.8.16/rasa/core/information_retrieval/faiss.py +116 -0
  270. rasa_pro-3.8.16/rasa/core/information_retrieval/information_retrieval.py +72 -0
  271. rasa_pro-3.8.16/rasa/core/information_retrieval/milvus.py +59 -0
  272. rasa_pro-3.8.16/rasa/core/information_retrieval/qdrant.py +102 -0
  273. rasa_pro-3.8.16/rasa/core/jobs.py +63 -0
  274. rasa_pro-3.8.16/rasa/core/lock.py +139 -0
  275. rasa_pro-3.8.16/rasa/core/lock_store.py +344 -0
  276. rasa_pro-3.8.16/rasa/core/migrate.py +404 -0
  277. rasa_pro-3.8.16/rasa/core/nlg/__init__.py +3 -0
  278. rasa_pro-3.8.16/rasa/core/nlg/callback.py +147 -0
  279. rasa_pro-3.8.16/rasa/core/nlg/contextual_response_rephraser.py +270 -0
  280. rasa_pro-3.8.16/rasa/core/nlg/generator.py +230 -0
  281. rasa_pro-3.8.16/rasa/core/nlg/interpolator.py +143 -0
  282. rasa_pro-3.8.16/rasa/core/nlg/response.py +155 -0
  283. rasa_pro-3.8.16/rasa/core/nlg/summarize.py +69 -0
  284. rasa_pro-3.8.16/rasa/core/policies/__init__.py +0 -0
  285. rasa_pro-3.8.16/rasa/core/policies/ensemble.py +329 -0
  286. rasa_pro-3.8.16/rasa/core/policies/enterprise_search_policy.py +717 -0
  287. rasa_pro-3.8.16/rasa/core/policies/enterprise_search_prompt_template.jinja2 +62 -0
  288. rasa_pro-3.8.16/rasa/core/policies/flow_policy.py +205 -0
  289. rasa_pro-3.8.16/rasa/core/policies/flows/__init__.py +0 -0
  290. rasa_pro-3.8.16/rasa/core/policies/flows/flow_exceptions.py +44 -0
  291. rasa_pro-3.8.16/rasa/core/policies/flows/flow_executor.py +582 -0
  292. rasa_pro-3.8.16/rasa/core/policies/flows/flow_step_result.py +43 -0
  293. rasa_pro-3.8.16/rasa/core/policies/intentless_policy.py +924 -0
  294. rasa_pro-3.8.16/rasa/core/policies/intentless_prompt_template.jinja2 +22 -0
  295. rasa_pro-3.8.16/rasa/core/policies/memoization.py +538 -0
  296. rasa_pro-3.8.16/rasa/core/policies/policy.py +716 -0
  297. rasa_pro-3.8.16/rasa/core/policies/rule_policy.py +1276 -0
  298. rasa_pro-3.8.16/rasa/core/policies/ted_policy.py +2146 -0
  299. rasa_pro-3.8.16/rasa/core/policies/unexpected_intent_policy.py +1015 -0
  300. rasa_pro-3.8.16/rasa/core/processor.py +1331 -0
  301. rasa_pro-3.8.16/rasa/core/run.py +315 -0
  302. rasa_pro-3.8.16/rasa/core/secrets_manager/__init__.py +0 -0
  303. rasa_pro-3.8.16/rasa/core/secrets_manager/constants.py +32 -0
  304. rasa_pro-3.8.16/rasa/core/secrets_manager/endpoints.py +391 -0
  305. rasa_pro-3.8.16/rasa/core/secrets_manager/factory.py +233 -0
  306. rasa_pro-3.8.16/rasa/core/secrets_manager/secret_manager.py +262 -0
  307. rasa_pro-3.8.16/rasa/core/secrets_manager/vault.py +576 -0
  308. rasa_pro-3.8.16/rasa/core/test.py +1337 -0
  309. rasa_pro-3.8.16/rasa/core/tracker_store.py +1664 -0
  310. rasa_pro-3.8.16/rasa/core/train.py +107 -0
  311. rasa_pro-3.8.16/rasa/core/training/__init__.py +89 -0
  312. rasa_pro-3.8.16/rasa/core/training/converters/__init__.py +0 -0
  313. rasa_pro-3.8.16/rasa/core/training/converters/responses_prefix_converter.py +119 -0
  314. rasa_pro-3.8.16/rasa/core/training/interactive.py +1742 -0
  315. rasa_pro-3.8.16/rasa/core/training/story_conflict.py +381 -0
  316. rasa_pro-3.8.16/rasa/core/training/training.py +93 -0
  317. rasa_pro-3.8.16/rasa/core/utils.py +344 -0
  318. rasa_pro-3.8.16/rasa/core/visualize.py +70 -0
  319. rasa_pro-3.8.16/rasa/dialogue_understanding/__init__.py +0 -0
  320. rasa_pro-3.8.16/rasa/dialogue_understanding/coexistence/__init__.py +0 -0
  321. rasa_pro-3.8.16/rasa/dialogue_understanding/coexistence/constants.py +4 -0
  322. rasa_pro-3.8.16/rasa/dialogue_understanding/coexistence/intent_based_router.py +189 -0
  323. rasa_pro-3.8.16/rasa/dialogue_understanding/coexistence/llm_based_router.py +261 -0
  324. rasa_pro-3.8.16/rasa/dialogue_understanding/coexistence/router_template.jinja2 +12 -0
  325. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/__init__.py +45 -0
  326. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/can_not_handle_command.py +61 -0
  327. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/cancel_flow_command.py +116 -0
  328. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/chit_chat_answer_command.py +48 -0
  329. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/clarify_command.py +77 -0
  330. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/command.py +85 -0
  331. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/correct_slots_command.py +288 -0
  332. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/error_command.py +67 -0
  333. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/free_form_answer_command.py +9 -0
  334. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/handle_code_change_command.py +64 -0
  335. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/human_handoff_command.py +57 -0
  336. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/knowledge_answer_command.py +48 -0
  337. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/noop_command.py +45 -0
  338. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/set_slot_command.py +125 -0
  339. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/skip_question_command.py +66 -0
  340. rasa_pro-3.8.16/rasa/dialogue_understanding/commands/start_flow_command.py +98 -0
  341. rasa_pro-3.8.16/rasa/dialogue_understanding/generator/__init__.py +6 -0
  342. rasa_pro-3.8.16/rasa/dialogue_understanding/generator/command_generator.py +257 -0
  343. rasa_pro-3.8.16/rasa/dialogue_understanding/generator/command_prompt_template.jinja2 +57 -0
  344. rasa_pro-3.8.16/rasa/dialogue_understanding/generator/flow_document_template.jinja2 +4 -0
  345. rasa_pro-3.8.16/rasa/dialogue_understanding/generator/flow_retrieval.py +410 -0
  346. rasa_pro-3.8.16/rasa/dialogue_understanding/generator/llm_command_generator.py +637 -0
  347. rasa_pro-3.8.16/rasa/dialogue_understanding/generator/nlu_command_adapter.py +157 -0
  348. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/__init__.py +0 -0
  349. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/cancel.py +111 -0
  350. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/cannot_handle.py +43 -0
  351. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/chitchat.py +37 -0
  352. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/clarify.py +97 -0
  353. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/code_change.py +41 -0
  354. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/collect_information.py +90 -0
  355. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/completed.py +40 -0
  356. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/continue_interrupted.py +42 -0
  357. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/correction.py +278 -0
  358. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml +243 -0
  359. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/human_handoff.py +37 -0
  360. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/internal_error.py +47 -0
  361. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/search.py +37 -0
  362. rasa_pro-3.8.16/rasa/dialogue_understanding/patterns/skip_question.py +38 -0
  363. rasa_pro-3.8.16/rasa/dialogue_understanding/processor/__init__.py +0 -0
  364. rasa_pro-3.8.16/rasa/dialogue_understanding/processor/command_processor.py +578 -0
  365. rasa_pro-3.8.16/rasa/dialogue_understanding/processor/command_processor_component.py +39 -0
  366. rasa_pro-3.8.16/rasa/dialogue_understanding/stack/__init__.py +0 -0
  367. rasa_pro-3.8.16/rasa/dialogue_understanding/stack/dialogue_stack.py +178 -0
  368. rasa_pro-3.8.16/rasa/dialogue_understanding/stack/frames/__init__.py +19 -0
  369. rasa_pro-3.8.16/rasa/dialogue_understanding/stack/frames/chit_chat_frame.py +27 -0
  370. rasa_pro-3.8.16/rasa/dialogue_understanding/stack/frames/dialogue_stack_frame.py +137 -0
  371. rasa_pro-3.8.16/rasa/dialogue_understanding/stack/frames/flow_stack_frame.py +157 -0
  372. rasa_pro-3.8.16/rasa/dialogue_understanding/stack/frames/pattern_frame.py +10 -0
  373. rasa_pro-3.8.16/rasa/dialogue_understanding/stack/frames/search_frame.py +27 -0
  374. rasa_pro-3.8.16/rasa/dialogue_understanding/stack/utils.py +211 -0
  375. rasa_pro-3.8.16/rasa/e2e_test/__init__.py +0 -0
  376. rasa_pro-3.8.16/rasa/e2e_test/constants.py +10 -0
  377. rasa_pro-3.8.16/rasa/e2e_test/e2e_test_case.py +322 -0
  378. rasa_pro-3.8.16/rasa/e2e_test/e2e_test_result.py +34 -0
  379. rasa_pro-3.8.16/rasa/e2e_test/e2e_test_runner.py +659 -0
  380. rasa_pro-3.8.16/rasa/e2e_test/e2e_test_schema.yml +67 -0
  381. rasa_pro-3.8.16/rasa/engine/__init__.py +0 -0
  382. rasa_pro-3.8.16/rasa/engine/caching.py +464 -0
  383. rasa_pro-3.8.16/rasa/engine/constants.py +17 -0
  384. rasa_pro-3.8.16/rasa/engine/exceptions.py +14 -0
  385. rasa_pro-3.8.16/rasa/engine/graph.py +625 -0
  386. rasa_pro-3.8.16/rasa/engine/loader.py +36 -0
  387. rasa_pro-3.8.16/rasa/engine/recipes/__init__.py +0 -0
  388. rasa_pro-3.8.16/rasa/engine/recipes/config_files/default_config.yml +44 -0
  389. rasa_pro-3.8.16/rasa/engine/recipes/default_components.py +99 -0
  390. rasa_pro-3.8.16/rasa/engine/recipes/default_recipe.py +1252 -0
  391. rasa_pro-3.8.16/rasa/engine/recipes/graph_recipe.py +79 -0
  392. rasa_pro-3.8.16/rasa/engine/recipes/recipe.py +93 -0
  393. rasa_pro-3.8.16/rasa/engine/runner/__init__.py +0 -0
  394. rasa_pro-3.8.16/rasa/engine/runner/dask.py +256 -0
  395. rasa_pro-3.8.16/rasa/engine/runner/interface.py +49 -0
  396. rasa_pro-3.8.16/rasa/engine/storage/__init__.py +0 -0
  397. rasa_pro-3.8.16/rasa/engine/storage/local_model_storage.py +248 -0
  398. rasa_pro-3.8.16/rasa/engine/storage/resource.py +110 -0
  399. rasa_pro-3.8.16/rasa/engine/storage/storage.py +203 -0
  400. rasa_pro-3.8.16/rasa/engine/training/__init__.py +0 -0
  401. rasa_pro-3.8.16/rasa/engine/training/components.py +176 -0
  402. rasa_pro-3.8.16/rasa/engine/training/fingerprinting.py +64 -0
  403. rasa_pro-3.8.16/rasa/engine/training/graph_trainer.py +256 -0
  404. rasa_pro-3.8.16/rasa/engine/training/hooks.py +164 -0
  405. rasa_pro-3.8.16/rasa/engine/validation.py +839 -0
  406. rasa_pro-3.8.16/rasa/env.py +5 -0
  407. rasa_pro-3.8.16/rasa/exceptions.py +69 -0
  408. rasa_pro-3.8.16/rasa/graph_components/__init__.py +0 -0
  409. rasa_pro-3.8.16/rasa/graph_components/converters/__init__.py +0 -0
  410. rasa_pro-3.8.16/rasa/graph_components/converters/nlu_message_converter.py +48 -0
  411. rasa_pro-3.8.16/rasa/graph_components/providers/__init__.py +0 -0
  412. rasa_pro-3.8.16/rasa/graph_components/providers/domain_for_core_training_provider.py +87 -0
  413. rasa_pro-3.8.16/rasa/graph_components/providers/domain_provider.py +71 -0
  414. rasa_pro-3.8.16/rasa/graph_components/providers/flows_provider.py +74 -0
  415. rasa_pro-3.8.16/rasa/graph_components/providers/forms_provider.py +44 -0
  416. rasa_pro-3.8.16/rasa/graph_components/providers/nlu_training_data_provider.py +56 -0
  417. rasa_pro-3.8.16/rasa/graph_components/providers/responses_provider.py +44 -0
  418. rasa_pro-3.8.16/rasa/graph_components/providers/rule_only_provider.py +49 -0
  419. rasa_pro-3.8.16/rasa/graph_components/providers/story_graph_provider.py +43 -0
  420. rasa_pro-3.8.16/rasa/graph_components/providers/training_tracker_provider.py +55 -0
  421. rasa_pro-3.8.16/rasa/graph_components/validators/__init__.py +0 -0
  422. rasa_pro-3.8.16/rasa/graph_components/validators/default_recipe_validator.py +552 -0
  423. rasa_pro-3.8.16/rasa/graph_components/validators/finetuning_validator.py +302 -0
  424. rasa_pro-3.8.16/rasa/hooks.py +113 -0
  425. rasa_pro-3.8.16/rasa/jupyter.py +63 -0
  426. rasa_pro-3.8.16/rasa/keys +1 -0
  427. rasa_pro-3.8.16/rasa/markers/__init__.py +0 -0
  428. rasa_pro-3.8.16/rasa/markers/marker.py +269 -0
  429. rasa_pro-3.8.16/rasa/markers/marker_base.py +828 -0
  430. rasa_pro-3.8.16/rasa/markers/upload.py +74 -0
  431. rasa_pro-3.8.16/rasa/markers/validate.py +21 -0
  432. rasa_pro-3.8.16/rasa/model.py +118 -0
  433. rasa_pro-3.8.16/rasa/model_testing.py +457 -0
  434. rasa_pro-3.8.16/rasa/model_training.py +535 -0
  435. rasa_pro-3.8.16/rasa/nlu/__init__.py +7 -0
  436. rasa_pro-3.8.16/rasa/nlu/classifiers/__init__.py +3 -0
  437. rasa_pro-3.8.16/rasa/nlu/classifiers/classifier.py +5 -0
  438. rasa_pro-3.8.16/rasa/nlu/classifiers/diet_classifier.py +1874 -0
  439. rasa_pro-3.8.16/rasa/nlu/classifiers/fallback_classifier.py +192 -0
  440. rasa_pro-3.8.16/rasa/nlu/classifiers/keyword_intent_classifier.py +188 -0
  441. rasa_pro-3.8.16/rasa/nlu/classifiers/llm_intent_classifier.py +519 -0
  442. rasa_pro-3.8.16/rasa/nlu/classifiers/logistic_regression_classifier.py +240 -0
  443. rasa_pro-3.8.16/rasa/nlu/classifiers/mitie_intent_classifier.py +156 -0
  444. rasa_pro-3.8.16/rasa/nlu/classifiers/regex_message_handler.py +56 -0
  445. rasa_pro-3.8.16/rasa/nlu/classifiers/sklearn_intent_classifier.py +309 -0
  446. rasa_pro-3.8.16/rasa/nlu/constants.py +77 -0
  447. rasa_pro-3.8.16/rasa/nlu/convert.py +40 -0
  448. rasa_pro-3.8.16/rasa/nlu/emulators/__init__.py +0 -0
  449. rasa_pro-3.8.16/rasa/nlu/emulators/dialogflow.py +55 -0
  450. rasa_pro-3.8.16/rasa/nlu/emulators/emulator.py +49 -0
  451. rasa_pro-3.8.16/rasa/nlu/emulators/luis.py +86 -0
  452. rasa_pro-3.8.16/rasa/nlu/emulators/no_emulator.py +10 -0
  453. rasa_pro-3.8.16/rasa/nlu/emulators/wit.py +56 -0
  454. rasa_pro-3.8.16/rasa/nlu/extractors/__init__.py +0 -0
  455. rasa_pro-3.8.16/rasa/nlu/extractors/crf_entity_extractor.py +672 -0
  456. rasa_pro-3.8.16/rasa/nlu/extractors/duckling_entity_extractor.py +206 -0
  457. rasa_pro-3.8.16/rasa/nlu/extractors/entity_synonyms.py +178 -0
  458. rasa_pro-3.8.16/rasa/nlu/extractors/extractor.py +470 -0
  459. rasa_pro-3.8.16/rasa/nlu/extractors/mitie_entity_extractor.py +293 -0
  460. rasa_pro-3.8.16/rasa/nlu/extractors/regex_entity_extractor.py +220 -0
  461. rasa_pro-3.8.16/rasa/nlu/extractors/spacy_entity_extractor.py +95 -0
  462. rasa_pro-3.8.16/rasa/nlu/featurizers/__init__.py +0 -0
  463. rasa_pro-3.8.16/rasa/nlu/featurizers/dense_featurizer/__init__.py +0 -0
  464. rasa_pro-3.8.16/rasa/nlu/featurizers/dense_featurizer/convert_featurizer.py +449 -0
  465. rasa_pro-3.8.16/rasa/nlu/featurizers/dense_featurizer/dense_featurizer.py +57 -0
  466. rasa_pro-3.8.16/rasa/nlu/featurizers/dense_featurizer/lm_featurizer.py +772 -0
  467. rasa_pro-3.8.16/rasa/nlu/featurizers/dense_featurizer/mitie_featurizer.py +170 -0
  468. rasa_pro-3.8.16/rasa/nlu/featurizers/dense_featurizer/spacy_featurizer.py +132 -0
  469. rasa_pro-3.8.16/rasa/nlu/featurizers/featurizer.py +89 -0
  470. rasa_pro-3.8.16/rasa/nlu/featurizers/sparse_featurizer/__init__.py +0 -0
  471. rasa_pro-3.8.16/rasa/nlu/featurizers/sparse_featurizer/count_vectors_featurizer.py +840 -0
  472. rasa_pro-3.8.16/rasa/nlu/featurizers/sparse_featurizer/lexical_syntactic_featurizer.py +539 -0
  473. rasa_pro-3.8.16/rasa/nlu/featurizers/sparse_featurizer/regex_featurizer.py +269 -0
  474. rasa_pro-3.8.16/rasa/nlu/featurizers/sparse_featurizer/sparse_featurizer.py +9 -0
  475. rasa_pro-3.8.16/rasa/nlu/model.py +24 -0
  476. rasa_pro-3.8.16/rasa/nlu/persistor.py +240 -0
  477. rasa_pro-3.8.16/rasa/nlu/run.py +27 -0
  478. rasa_pro-3.8.16/rasa/nlu/selectors/__init__.py +0 -0
  479. rasa_pro-3.8.16/rasa/nlu/selectors/response_selector.py +990 -0
  480. rasa_pro-3.8.16/rasa/nlu/test.py +1943 -0
  481. rasa_pro-3.8.16/rasa/nlu/tokenizers/__init__.py +0 -0
  482. rasa_pro-3.8.16/rasa/nlu/tokenizers/jieba_tokenizer.py +148 -0
  483. rasa_pro-3.8.16/rasa/nlu/tokenizers/mitie_tokenizer.py +75 -0
  484. rasa_pro-3.8.16/rasa/nlu/tokenizers/spacy_tokenizer.py +72 -0
  485. rasa_pro-3.8.16/rasa/nlu/tokenizers/tokenizer.py +239 -0
  486. rasa_pro-3.8.16/rasa/nlu/tokenizers/whitespace_tokenizer.py +106 -0
  487. rasa_pro-3.8.16/rasa/nlu/utils/__init__.py +35 -0
  488. rasa_pro-3.8.16/rasa/nlu/utils/bilou_utils.py +462 -0
  489. rasa_pro-3.8.16/rasa/nlu/utils/hugging_face/__init__.py +0 -0
  490. rasa_pro-3.8.16/rasa/nlu/utils/hugging_face/registry.py +108 -0
  491. rasa_pro-3.8.16/rasa/nlu/utils/hugging_face/transformers_pre_post_processors.py +311 -0
  492. rasa_pro-3.8.16/rasa/nlu/utils/mitie_utils.py +113 -0
  493. rasa_pro-3.8.16/rasa/nlu/utils/pattern_utils.py +168 -0
  494. rasa_pro-3.8.16/rasa/nlu/utils/spacy_utils.py +312 -0
  495. rasa_pro-3.8.16/rasa/plugin.py +90 -0
  496. rasa_pro-3.8.16/rasa/server.py +1536 -0
  497. rasa_pro-3.8.16/rasa/shared/__init__.py +0 -0
  498. rasa_pro-3.8.16/rasa/shared/constants.py +181 -0
  499. rasa_pro-3.8.16/rasa/shared/core/__init__.py +0 -0
  500. rasa_pro-3.8.16/rasa/shared/core/constants.py +168 -0
  501. rasa_pro-3.8.16/rasa/shared/core/conversation.py +46 -0
  502. rasa_pro-3.8.16/rasa/shared/core/domain.py +2106 -0
  503. rasa_pro-3.8.16/rasa/shared/core/events.py +2507 -0
  504. rasa_pro-3.8.16/rasa/shared/core/flows/__init__.py +7 -0
  505. rasa_pro-3.8.16/rasa/shared/core/flows/flow.py +353 -0
  506. rasa_pro-3.8.16/rasa/shared/core/flows/flow_step.py +146 -0
  507. rasa_pro-3.8.16/rasa/shared/core/flows/flow_step_links.py +319 -0
  508. rasa_pro-3.8.16/rasa/shared/core/flows/flow_step_sequence.py +70 -0
  509. rasa_pro-3.8.16/rasa/shared/core/flows/flows_list.py +211 -0
  510. rasa_pro-3.8.16/rasa/shared/core/flows/flows_yaml_schema.json +217 -0
  511. rasa_pro-3.8.16/rasa/shared/core/flows/nlu_trigger.py +117 -0
  512. rasa_pro-3.8.16/rasa/shared/core/flows/steps/__init__.py +24 -0
  513. rasa_pro-3.8.16/rasa/shared/core/flows/steps/action.py +51 -0
  514. rasa_pro-3.8.16/rasa/shared/core/flows/steps/call.py +64 -0
  515. rasa_pro-3.8.16/rasa/shared/core/flows/steps/collect.py +112 -0
  516. rasa_pro-3.8.16/rasa/shared/core/flows/steps/constants.py +5 -0
  517. rasa_pro-3.8.16/rasa/shared/core/flows/steps/continuation.py +36 -0
  518. rasa_pro-3.8.16/rasa/shared/core/flows/steps/end.py +22 -0
  519. rasa_pro-3.8.16/rasa/shared/core/flows/steps/internal.py +44 -0
  520. rasa_pro-3.8.16/rasa/shared/core/flows/steps/link.py +51 -0
  521. rasa_pro-3.8.16/rasa/shared/core/flows/steps/no_operation.py +48 -0
  522. rasa_pro-3.8.16/rasa/shared/core/flows/steps/set_slots.py +50 -0
  523. rasa_pro-3.8.16/rasa/shared/core/flows/steps/start.py +30 -0
  524. rasa_pro-3.8.16/rasa/shared/core/flows/validation.py +527 -0
  525. rasa_pro-3.8.16/rasa/shared/core/flows/yaml_flows_io.py +278 -0
  526. rasa_pro-3.8.16/rasa/shared/core/generator.py +907 -0
  527. rasa_pro-3.8.16/rasa/shared/core/slot_mappings.py +235 -0
  528. rasa_pro-3.8.16/rasa/shared/core/slots.py +647 -0
  529. rasa_pro-3.8.16/rasa/shared/core/trackers.py +1159 -0
  530. rasa_pro-3.8.16/rasa/shared/core/training_data/__init__.py +0 -0
  531. rasa_pro-3.8.16/rasa/shared/core/training_data/loading.py +90 -0
  532. rasa_pro-3.8.16/rasa/shared/core/training_data/story_reader/__init__.py +0 -0
  533. rasa_pro-3.8.16/rasa/shared/core/training_data/story_reader/story_reader.py +129 -0
  534. rasa_pro-3.8.16/rasa/shared/core/training_data/story_reader/story_step_builder.py +168 -0
  535. rasa_pro-3.8.16/rasa/shared/core/training_data/story_reader/yaml_story_reader.py +888 -0
  536. rasa_pro-3.8.16/rasa/shared/core/training_data/story_writer/__init__.py +0 -0
  537. rasa_pro-3.8.16/rasa/shared/core/training_data/story_writer/story_writer.py +76 -0
  538. rasa_pro-3.8.16/rasa/shared/core/training_data/story_writer/yaml_story_writer.py +442 -0
  539. rasa_pro-3.8.16/rasa/shared/core/training_data/structures.py +838 -0
  540. rasa_pro-3.8.16/rasa/shared/core/training_data/visualization.html +146 -0
  541. rasa_pro-3.8.16/rasa/shared/core/training_data/visualization.py +603 -0
  542. rasa_pro-3.8.16/rasa/shared/data.py +192 -0
  543. rasa_pro-3.8.16/rasa/shared/engine/__init__.py +0 -0
  544. rasa_pro-3.8.16/rasa/shared/engine/caching.py +26 -0
  545. rasa_pro-3.8.16/rasa/shared/exceptions.py +129 -0
  546. rasa_pro-3.8.16/rasa/shared/importers/__init__.py +0 -0
  547. rasa_pro-3.8.16/rasa/shared/importers/importer.py +705 -0
  548. rasa_pro-3.8.16/rasa/shared/importers/multi_project.py +203 -0
  549. rasa_pro-3.8.16/rasa/shared/importers/rasa.py +100 -0
  550. rasa_pro-3.8.16/rasa/shared/importers/utils.py +34 -0
  551. rasa_pro-3.8.16/rasa/shared/nlu/__init__.py +0 -0
  552. rasa_pro-3.8.16/rasa/shared/nlu/constants.py +45 -0
  553. rasa_pro-3.8.16/rasa/shared/nlu/interpreter.py +10 -0
  554. rasa_pro-3.8.16/rasa/shared/nlu/training_data/__init__.py +0 -0
  555. rasa_pro-3.8.16/rasa/shared/nlu/training_data/entities_parser.py +209 -0
  556. rasa_pro-3.8.16/rasa/shared/nlu/training_data/features.py +374 -0
  557. rasa_pro-3.8.16/rasa/shared/nlu/training_data/formats/__init__.py +10 -0
  558. rasa_pro-3.8.16/rasa/shared/nlu/training_data/formats/dialogflow.py +162 -0
  559. rasa_pro-3.8.16/rasa/shared/nlu/training_data/formats/luis.py +87 -0
  560. rasa_pro-3.8.16/rasa/shared/nlu/training_data/formats/rasa.py +135 -0
  561. rasa_pro-3.8.16/rasa/shared/nlu/training_data/formats/rasa_yaml.py +605 -0
  562. rasa_pro-3.8.16/rasa/shared/nlu/training_data/formats/readerwriter.py +245 -0
  563. rasa_pro-3.8.16/rasa/shared/nlu/training_data/formats/wit.py +52 -0
  564. rasa_pro-3.8.16/rasa/shared/nlu/training_data/loading.py +137 -0
  565. rasa_pro-3.8.16/rasa/shared/nlu/training_data/lookup_tables_parser.py +30 -0
  566. rasa_pro-3.8.16/rasa/shared/nlu/training_data/message.py +477 -0
  567. rasa_pro-3.8.16/rasa/shared/nlu/training_data/schemas/__init__.py +0 -0
  568. rasa_pro-3.8.16/rasa/shared/nlu/training_data/schemas/data_schema.py +85 -0
  569. rasa_pro-3.8.16/rasa/shared/nlu/training_data/schemas/nlu.yml +53 -0
  570. rasa_pro-3.8.16/rasa/shared/nlu/training_data/schemas/responses.yml +70 -0
  571. rasa_pro-3.8.16/rasa/shared/nlu/training_data/synonyms_parser.py +42 -0
  572. rasa_pro-3.8.16/rasa/shared/nlu/training_data/training_data.py +732 -0
  573. rasa_pro-3.8.16/rasa/shared/nlu/training_data/util.py +223 -0
  574. rasa_pro-3.8.16/rasa/shared/providers/__init__.py +0 -0
  575. rasa_pro-3.8.16/rasa/shared/providers/openai/__init__.py +0 -0
  576. rasa_pro-3.8.16/rasa/shared/providers/openai/clients.py +43 -0
  577. rasa_pro-3.8.16/rasa/shared/providers/openai/session_handler.py +110 -0
  578. rasa_pro-3.8.16/rasa/shared/utils/__init__.py +0 -0
  579. rasa_pro-3.8.16/rasa/shared/utils/cli.py +72 -0
  580. rasa_pro-3.8.16/rasa/shared/utils/common.py +308 -0
  581. rasa_pro-3.8.16/rasa/shared/utils/constants.py +1 -0
  582. rasa_pro-3.8.16/rasa/shared/utils/io.py +403 -0
  583. rasa_pro-3.8.16/rasa/shared/utils/llm.py +405 -0
  584. rasa_pro-3.8.16/rasa/shared/utils/pykwalify_extensions.py +26 -0
  585. rasa_pro-3.8.16/rasa/shared/utils/schemas/__init__.py +0 -0
  586. rasa_pro-3.8.16/rasa/shared/utils/schemas/config.yml +2 -0
  587. rasa_pro-3.8.16/rasa/shared/utils/schemas/domain.yml +142 -0
  588. rasa_pro-3.8.16/rasa/shared/utils/schemas/events.py +212 -0
  589. rasa_pro-3.8.16/rasa/shared/utils/schemas/model_config.yml +46 -0
  590. rasa_pro-3.8.16/rasa/shared/utils/schemas/stories.yml +173 -0
  591. rasa_pro-3.8.16/rasa/shared/utils/yaml.py +777 -0
  592. rasa_pro-3.8.16/rasa/studio/__init__.py +0 -0
  593. rasa_pro-3.8.16/rasa/studio/auth.py +252 -0
  594. rasa_pro-3.8.16/rasa/studio/config.py +127 -0
  595. rasa_pro-3.8.16/rasa/studio/constants.py +16 -0
  596. rasa_pro-3.8.16/rasa/studio/data_handler.py +352 -0
  597. rasa_pro-3.8.16/rasa/studio/download.py +350 -0
  598. rasa_pro-3.8.16/rasa/studio/train.py +136 -0
  599. rasa_pro-3.8.16/rasa/studio/upload.py +408 -0
  600. rasa_pro-3.8.16/rasa/telemetry.py +1583 -0
  601. rasa_pro-3.8.16/rasa/tracing/__init__.py +0 -0
  602. rasa_pro-3.8.16/rasa/tracing/config.py +338 -0
  603. rasa_pro-3.8.16/rasa/tracing/constants.py +38 -0
  604. rasa_pro-3.8.16/rasa/tracing/instrumentation/__init__.py +0 -0
  605. rasa_pro-3.8.16/rasa/tracing/instrumentation/attribute_extractors.py +663 -0
  606. rasa_pro-3.8.16/rasa/tracing/instrumentation/instrumentation.py +939 -0
  607. rasa_pro-3.8.16/rasa/tracing/instrumentation/intentless_policy_instrumentation.py +142 -0
  608. rasa_pro-3.8.16/rasa/tracing/instrumentation/metrics.py +206 -0
  609. rasa_pro-3.8.16/rasa/tracing/metric_instrument_provider.py +125 -0
  610. rasa_pro-3.8.16/rasa/utils/__init__.py +0 -0
  611. rasa_pro-3.8.16/rasa/utils/beta.py +83 -0
  612. rasa_pro-3.8.16/rasa/utils/cli.py +27 -0
  613. rasa_pro-3.8.16/rasa/utils/common.py +635 -0
  614. rasa_pro-3.8.16/rasa/utils/converter.py +53 -0
  615. rasa_pro-3.8.16/rasa/utils/endpoints.py +303 -0
  616. rasa_pro-3.8.16/rasa/utils/io.py +326 -0
  617. rasa_pro-3.8.16/rasa/utils/licensing.py +319 -0
  618. rasa_pro-3.8.16/rasa/utils/log_utils.py +174 -0
  619. rasa_pro-3.8.16/rasa/utils/mapper.py +210 -0
  620. rasa_pro-3.8.16/rasa/utils/ml_utils.py +145 -0
  621. rasa_pro-3.8.16/rasa/utils/plotting.py +362 -0
  622. rasa_pro-3.8.16/rasa/utils/singleton.py +23 -0
  623. rasa_pro-3.8.16/rasa/utils/tensorflow/__init__.py +0 -0
  624. rasa_pro-3.8.16/rasa/utils/tensorflow/callback.py +112 -0
  625. rasa_pro-3.8.16/rasa/utils/tensorflow/constants.py +116 -0
  626. rasa_pro-3.8.16/rasa/utils/tensorflow/crf.py +492 -0
  627. rasa_pro-3.8.16/rasa/utils/tensorflow/data_generator.py +440 -0
  628. rasa_pro-3.8.16/rasa/utils/tensorflow/environment.py +161 -0
  629. rasa_pro-3.8.16/rasa/utils/tensorflow/exceptions.py +5 -0
  630. rasa_pro-3.8.16/rasa/utils/tensorflow/layers.py +1565 -0
  631. rasa_pro-3.8.16/rasa/utils/tensorflow/layers_utils.py +113 -0
  632. rasa_pro-3.8.16/rasa/utils/tensorflow/metrics.py +281 -0
  633. rasa_pro-3.8.16/rasa/utils/tensorflow/model_data.py +991 -0
  634. rasa_pro-3.8.16/rasa/utils/tensorflow/model_data_utils.py +500 -0
  635. rasa_pro-3.8.16/rasa/utils/tensorflow/models.py +936 -0
  636. rasa_pro-3.8.16/rasa/utils/tensorflow/rasa_layers.py +1094 -0
  637. rasa_pro-3.8.16/rasa/utils/tensorflow/transformer.py +640 -0
  638. rasa_pro-3.8.16/rasa/utils/tensorflow/types.py +6 -0
  639. rasa_pro-3.8.16/rasa/utils/train_utils.py +572 -0
  640. rasa_pro-3.8.16/rasa/utils/yaml.py +54 -0
  641. rasa_pro-3.8.16/rasa/validator.py +1035 -0
  642. rasa_pro-3.8.16/rasa/version.py +3 -0
  643. rasa-pro-0.0.1/PKG-INFO +0 -38
  644. rasa-pro-0.0.1/README.md +0 -13
  645. rasa-pro-0.0.1/rasa_pro.egg-info/PKG-INFO +0 -38
  646. rasa-pro-0.0.1/rasa_pro.egg-info/SOURCES.txt +0 -6
  647. rasa-pro-0.0.1/rasa_pro.egg-info/dependency_links.txt +0 -1
  648. rasa-pro-0.0.1/rasa_pro.egg-info/top_level.txt +0 -1
  649. rasa-pro-0.0.1/setup.cfg +0 -4
  650. rasa-pro-0.0.1/setup.py +0 -42
rasa_pro-3.8.16/NOTICE ADDED
@@ -0,0 +1,5 @@
1
+ Rasa Technologies GmbH
2
+ Copyright 2016-2022 Rasa Technologies GmbH
3
+
4
+ This product includes software from spaCy (https://github.com/explosion/spaCy),
5
+ under the MIT License (see: rasa.nlu.extractors.crf_entity_extractor).
@@ -0,0 +1,528 @@
1
+ Metadata-Version: 2.1
2
+ Name: rasa-pro
3
+ Version: 3.8.16
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 (>=2023.7.22)
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.13.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.15.0,<1.16.0)
69
+ Requires-Dist: opentelemetry-exporter-jaeger (>=1.15.0,<1.16.0)
70
+ Requires-Dist: opentelemetry-exporter-otlp (>=1.15.0,<1.16.0)
71
+ Requires-Dist: opentelemetry-sdk (>=1.15.0,<1.16.0)
72
+ Requires-Dist: packaging (>=20.9,<21.0)
73
+ Requires-Dist: pep440-version-utils (>=0.3.0,<0.4.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.23.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,<1.11.0)
98
+ Requires-Dist: randomname (>=0.2.1,<0.3.0)
99
+ Requires-Dist: rasa-sdk (>=3.8.0,<3.9.0)
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 (>=21.12.2,<21.13.0)
107
+ Requires-Dist: sanic-cors (>=2.0.1,<2.1.0)
108
+ Requires-Dist: sanic-jwt (>=1.8.0,<2.0.0)
109
+ Requires-Dist: sanic-routing (>=0.7.2,<0.8.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.21.3,<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,<5.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 Open Source">
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 extends Rasa Open Source with 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 formatter [black](https://github.com/ambv/black).
363
+ To ensure our type annotations are correct we use the type checker [pytype](https://github.com/google/pytype).
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 black 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
+