rasa-pro 3.9.17__tar.gz → 3.9.19__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.
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/PKG-INFO +22 -23
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/README.md +20 -21
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/pyproject.toml +2 -2
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/index.html +2 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/index.html +2 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/flows/flow_executor.py +48 -27
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/processor.py +7 -5
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/continue_interrupted.py +9 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/stack/utils.py +1 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/e2e_test/e2e_test_runner.py +11 -5
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/classifiers/fallback_classifier.py +0 -3
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/flow.py +4 -4
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/flow_step.py +15 -10
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/flow_step_links.py +20 -12
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/flow_step_sequence.py +5 -3
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/steps/action.py +3 -2
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/steps/call.py +3 -3
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/steps/collect.py +6 -3
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/steps/continuation.py +3 -1
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/steps/end.py +3 -1
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/steps/internal.py +2 -1
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/steps/link.py +5 -3
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/steps/no_operation.py +5 -3
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/steps/set_slots.py +3 -2
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/steps/start.py +3 -1
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/llm.py +1 -1
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/version.py +1 -1
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/NOTICE +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/__main__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/anonymization/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/anonymization/anonymisation_rule_yaml_reader.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/anonymization/anonymization_pipeline.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/anonymization/anonymization_rule_executor.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/anonymization/anonymization_rule_orchestrator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/anonymization/schemas/config.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/anonymization/utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/api.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/arguments/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/arguments/data.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/arguments/default_arguments.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/arguments/evaluate.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/arguments/export.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/arguments/interactive.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/arguments/run.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/arguments/shell.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/arguments/test.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/arguments/train.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/arguments/visualize.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/arguments/x.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/data.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/e2e_test.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/evaluate.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/export.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/inspect.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/interactive.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/license.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/markers.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/actions/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/actions/action_template.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/actions/add_contact.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/actions/db.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/actions/list_contacts.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/actions/remove_contact.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/config.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/credentials.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/data/flows/add_contact.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/data/flows/list_contacts.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/data/flows/remove_contact.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/db/contacts.json +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/domain/add_contact.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/domain/list_contacts.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/domain/remove_contact.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/domain/shared.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/e2e_tests/cancelations/user_cancels_during_a_correction.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/e2e_tests/cancelations/user_changes_mind_on_a_whim.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/e2e_tests/corrections/user_corrects_contact_handle.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/e2e_tests/corrections/user_corrects_contact_name.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_adds_contact_to_their_list.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_lists_contacts.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact_from_list.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/calm/endpoints.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/default/actions/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/default/actions/actions.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/default/config.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/default/credentials.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/default/data/nlu.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/default/data/rules.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/default/data/stories.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/default/domain.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/default/endpoints.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/default/tests/test_stories.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/tutorial/actions.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/tutorial/config.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/tutorial/credentials.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/tutorial/data/flows.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/tutorial/data/patterns.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/tutorial/domain.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/project_templates/tutorial/endpoints.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/run.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/scaffold.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/shell.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/studio/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/studio/download.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/studio/studio.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/studio/train.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/studio/upload.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/telemetry.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/test.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/train.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/visualize.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/cli/x.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/action.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/action_clean_stack.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/action_exceptions.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/action_run_slot_rejections.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/action_trigger_chitchat.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/action_trigger_flow.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/action_trigger_search.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/custom_action_executor.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/forms.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/grpc_custom_action_executor.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/http_custom_action_executor.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/loops.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/actions/two_stage_fallback.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/agent.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/auth_retry_tracker_store.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/brokers/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/brokers/broker.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/brokers/file.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/brokers/kafka.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/brokers/pika.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/brokers/sql.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/audiocodes.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/botframework.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/callback.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/channel.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/console.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/development_inspector.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/facebook.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/hangouts.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/.eslintrc.cjs +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/.gitignore +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/README.md +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/assets/favicon.ico +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/assets/rasa-chat.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/custom.d.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/arc-b6e548fe.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/array-9f3ba611.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/c4Diagram-d0fbc5ce-fa03ac9e.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/classDiagram-936ed81e-ee67392a.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/classDiagram-v2-c3cb15f1-9b283fae.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/createText-62fc7601-8b6fcc2a.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/edges-f2ad444c-22e77f4f.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/erDiagram-9d236eb7-60ffc87f.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/flowDb-1972c806-9dd802e4.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/flowDiagram-7ea5b25a-5fa1912f.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/flowDiagram-v2-855bc5b3-1844e5a5.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/flowchart-elk-definition-abe16c3d-622a1fd2.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/ganttDiagram-9b5ea136-e285a63a.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/gitGraphDiagram-99d0ae7c-f237bdca.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-128cfa44.ttf +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-21dbcb97.woff +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-222b5e26.svg +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-9ad89b2a.woff2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/index-2c4b9a3b-4b03d70e.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/index-3ee28881.css +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/index-a5d3e69d.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/infoDiagram-736b4530-72a0fa5f.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/init-77b53fdd.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/journeyDiagram-df861f2b-82218c41.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-60c05ee4.woff +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-8335d9b8.svg +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-9cc39c75.ttf +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-ead13ccf.woff2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-16705655.woff2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-5aeb07f9.woff +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9c459044.ttf +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9e2898a4.svg +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/layout-78cff630.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/line-5038b469.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/linear-c4fc4098.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/mindmap-definition-beec6740-c33c8ea6.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/ordinal-ba9b4969.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/path-53f90ab3.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/pieDiagram-dbbf0591-a8d03059.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/quadrantDiagram-4d7f4fd6-6a0e56b2.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/requirementDiagram-6fc4c22a-2dc7c7bd.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/sankeyDiagram-8f13d901-2360fe39.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/sequenceDiagram-b655622a-41b9f9ad.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/stateDiagram-59f0c015-0aad326f.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/stateDiagram-v2-2b26beab-9847d984.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/styles-080da4f6-564d890e.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/styles-3dcbcfbf-38957613.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/styles-9c745c82-f0fc6921.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/svgDrawCommon-4835440b-ef3c5a77.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/timeline-definition-5b62e21b-bf3e91c1.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/dist/assets/xychartDiagram-2b33534f-4d4026c0.js +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/jest.config.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/package.json +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/setupTests.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/App.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/components/DiagramFlow.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/components/DialogueInformation.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/components/DialogueStack.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/components/ExpandIcon.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/components/FullscreenButton.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/components/LoadingSpinner.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/components/NoActiveFlow.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/components/RasaLogo.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/components/SaraDiagrams.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/components/Slots.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/components/Welcome.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/helpers/formatters.test.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/helpers/formatters.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/helpers/utils.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/main.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/Button/Button.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/Heading/Heading.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/Input/Input.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/Link/Link.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/Modal/Modal.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/Table/Table.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/Tooltip/Tooltip.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/breakpoints.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/colors.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/fontFaces.css +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.eot +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.svg +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.ttf +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.woff +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.woff2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.eot +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.svg +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.ttf +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.woff +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.woff2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.eot +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.svg +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.ttf +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.woff +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.woff2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/radii.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/shadows.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/sizes.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/space.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/styles.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/typography.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/base/zIndices.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/theme/index.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/types.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/src/vite-env.d.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/tests/__mocks__/fileMock.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/tests/__mocks__/matchMedia.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/tests/__mocks__/styleMock.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/tests/renderWithProviders.tsx +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/tsconfig.json +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/tsconfig.node.json +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/vite.config.ts +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/inspector/yarn.lock +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/mattermost.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/rasa_chat.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/rest.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/rocketchat.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/slack.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/socketio.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/telegram.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/twilio.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/twilio_voice.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/vier_cvg.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/channels/webexteams.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/concurrent_lock_store.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/evaluation/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/evaluation/marker.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/evaluation/marker_base.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/evaluation/marker_stats.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/evaluation/marker_tracker_loader.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/exceptions.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/exporter.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/featurizers/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/featurizers/precomputation.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/featurizers/single_state_featurizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/featurizers/tracker_featurizers.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/http_interpreter.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/information_retrieval/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/information_retrieval/faiss.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/information_retrieval/information_retrieval.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/information_retrieval/milvus.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/information_retrieval/qdrant.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/jobs.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/lock.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/lock_store.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/migrate.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/nlg/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/nlg/callback.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/nlg/contextual_response_rephraser.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/nlg/generator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/nlg/interpolator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/nlg/response.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/nlg/summarize.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/ensemble.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/enterprise_search_policy.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/enterprise_search_prompt_template.jinja2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/flow_policy.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/flows/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/flows/flow_exceptions.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/flows/flow_step_result.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/intentless_policy.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/intentless_prompt_template.jinja2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/memoization.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/policy.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/rule_policy.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/ted_policy.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/policies/unexpected_intent_policy.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/run.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/secrets_manager/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/secrets_manager/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/secrets_manager/endpoints.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/secrets_manager/factory.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/secrets_manager/secret_manager.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/secrets_manager/vault.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/test.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/tracker_store.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/train.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/training/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/training/converters/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/training/converters/responses_prefix_converter.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/training/interactive.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/training/story_conflict.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/training/training.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/core/visualize.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/coexistence/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/coexistence/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/coexistence/intent_based_router.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/coexistence/llm_based_router.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/coexistence/router_template.jinja2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/can_not_handle_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/cancel_flow_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/change_flow_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/chit_chat_answer_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/clarify_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/correct_slots_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/error_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/free_form_answer_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/handle_code_change_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/human_handoff_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/knowledge_answer_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/noop_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/set_slot_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/skip_question_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/commands/start_flow_command.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/command_generator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/flow_document_template.jinja2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/flow_retrieval.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/llm_based_command_generator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/llm_command_generator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/multi_step/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/multi_step/handle_flows_prompt.jinja2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/nlu_command_adapter.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/single_step/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2 +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/cancel.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/cannot_handle.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/chitchat.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/clarify.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/code_change.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/collect_information.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/completed.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/correction.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/human_handoff.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/internal_error.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/search.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/skip_question.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/processor/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/processor/command_processor.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/processor/command_processor_component.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/stack/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/stack/dialogue_stack.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/stack/frames/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/stack/frames/chit_chat_frame.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/stack/frames/dialogue_stack_frame.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/stack/frames/flow_stack_frame.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/stack/frames/pattern_frame.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/stack/frames/search_frame.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/e2e_test/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/e2e_test/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/e2e_test/e2e_test_case.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/e2e_test/e2e_test_result.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/e2e_test/e2e_test_schema.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/caching.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/exceptions.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/graph.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/loader.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/recipes/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/recipes/config_files/default_config.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/recipes/default_components.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/recipes/default_recipe.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/recipes/graph_recipe.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/recipes/recipe.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/runner/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/runner/dask.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/runner/interface.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/storage/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/storage/local_model_storage.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/storage/resource.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/storage/storage.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/training/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/training/components.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/training/fingerprinting.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/training/graph_trainer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/training/hooks.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/engine/validation.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/env.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/exceptions.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/converters/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/converters/nlu_message_converter.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/providers/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/providers/domain_for_core_training_provider.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/providers/domain_provider.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/providers/flows_provider.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/providers/forms_provider.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/providers/nlu_training_data_provider.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/providers/responses_provider.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/providers/rule_only_provider.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/providers/story_graph_provider.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/providers/training_tracker_provider.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/validators/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/validators/default_recipe_validator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/graph_components/validators/finetuning_validator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/hooks.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/jupyter.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/markers/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/markers/marker.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/markers/marker_base.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/markers/upload.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/markers/validate.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/model.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/model_testing.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/model_training.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/classifiers/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/classifiers/classifier.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/classifiers/diet_classifier.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/classifiers/keyword_intent_classifier.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/classifiers/llm_intent_classifier.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/classifiers/logistic_regression_classifier.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/classifiers/mitie_intent_classifier.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/classifiers/regex_message_handler.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/classifiers/sklearn_intent_classifier.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/convert.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/emulators/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/emulators/dialogflow.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/emulators/emulator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/emulators/luis.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/emulators/no_emulator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/emulators/wit.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/extractors/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/extractors/crf_entity_extractor.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/extractors/duckling_entity_extractor.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/extractors/entity_synonyms.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/extractors/extractor.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/extractors/mitie_entity_extractor.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/extractors/regex_entity_extractor.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/extractors/spacy_entity_extractor.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/dense_featurizer/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/dense_featurizer/convert_featurizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/dense_featurizer/dense_featurizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/dense_featurizer/lm_featurizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/dense_featurizer/mitie_featurizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/dense_featurizer/spacy_featurizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/featurizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/sparse_featurizer/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/sparse_featurizer/count_vectors_featurizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/sparse_featurizer/lexical_syntactic_featurizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/sparse_featurizer/regex_featurizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/featurizers/sparse_featurizer/sparse_featurizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/model.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/persistor.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/run.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/selectors/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/selectors/response_selector.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/test.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/tokenizers/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/tokenizers/jieba_tokenizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/tokenizers/mitie_tokenizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/tokenizers/spacy_tokenizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/tokenizers/tokenizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/tokenizers/whitespace_tokenizer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/utils/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/utils/bilou_utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/utils/hugging_face/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/utils/hugging_face/registry.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/utils/hugging_face/transformers_pre_post_processors.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/utils/mitie_utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/utils/pattern_utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/nlu/utils/spacy_utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/plugin.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/server.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/command_payload_reader.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/conversation.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/domain.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/events.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/flows_list.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/flows_yaml_schema.json +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/nlu_trigger.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/steps/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/steps/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/validation.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/flows/yaml_flows_io.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/generator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/slot_mappings.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/slots.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/trackers.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/training_data/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/training_data/loading.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/training_data/story_reader/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/training_data/story_reader/story_reader.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/training_data/story_reader/story_step_builder.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/training_data/story_reader/yaml_story_reader.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/training_data/story_writer/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/training_data/story_writer/story_writer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/training_data/story_writer/yaml_story_writer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/training_data/structures.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/training_data/visualization.html +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/core/training_data/visualization.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/data.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/engine/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/engine/caching.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/exceptions.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/importers/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/importers/importer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/importers/multi_project.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/importers/rasa.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/importers/utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/interpreter.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/entities_parser.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/features.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/formats/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/formats/dialogflow.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/formats/luis.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/formats/rasa.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/formats/rasa_yaml.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/formats/readerwriter.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/formats/wit.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/loading.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/lookup_tables_parser.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/message.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/schemas/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/schemas/data_schema.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/schemas/nlu.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/schemas/responses.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/synonyms_parser.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/training_data.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/nlu/training_data/util.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/providers/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/providers/openai/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/providers/openai/clients.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/providers/openai/session_handler.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/cli.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/common.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/io.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/pykwalify_extensions.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/schemas/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/schemas/config.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/schemas/domain.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/schemas/events.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/schemas/model_config.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/schemas/stories.yml +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/shared/utils/yaml.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/studio/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/studio/auth.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/studio/config.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/studio/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/studio/data_handler.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/studio/download.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/studio/results_logger.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/studio/train.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/studio/upload.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/telemetry.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/tracing/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/tracing/config.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/tracing/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/tracing/instrumentation/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/tracing/instrumentation/attribute_extractors.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/tracing/instrumentation/instrumentation.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/tracing/instrumentation/intentless_policy_instrumentation.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/tracing/instrumentation/metrics.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/tracing/metric_instrument_provider.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/beta.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/cli.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/common.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/converter.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/endpoints.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/io.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/licensing.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/log_utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/mapper.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/ml_utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/plotting.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/singleton.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/__init__.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/callback.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/constants.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/crf.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/data_generator.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/environment.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/exceptions.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/feature_array.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/layers.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/layers_utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/metrics.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/model_data.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/model_data_utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/models.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/rasa_layers.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/transformer.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/tensorflow/types.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/train_utils.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/url_tools.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/utils/yaml.py +0 -0
- {rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/validator.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: rasa-pro
|
|
3
|
-
Version: 3.9.
|
|
3
|
+
Version: 3.9.19
|
|
4
4
|
Summary: State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development.
|
|
5
5
|
Home-page: https://rasa.com
|
|
6
6
|
Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
|
|
@@ -54,7 +54,7 @@ Requires-Dist: importlib-resources (>=6.1.1,<7.0.0)
|
|
|
54
54
|
Requires-Dist: jieba (>=0.42.1,<0.43) ; extra == "jieba" or extra == "full"
|
|
55
55
|
Requires-Dist: jinja2 (>=3.1.4,<4.0.0)
|
|
56
56
|
Requires-Dist: jsonpatch (>=1.33,<2.0)
|
|
57
|
-
Requires-Dist: jsonpickle (>=3.0,<3.
|
|
57
|
+
Requires-Dist: jsonpickle (>=3.3.0,<3.4)
|
|
58
58
|
Requires-Dist: jsonschema (>=4.20,<4.21)
|
|
59
59
|
Requires-Dist: keras (==2.14.0)
|
|
60
60
|
Requires-Dist: langchain (>=0.0.329,<0.0.330)
|
|
@@ -157,39 +157,35 @@ Description-Content-Type: text/markdown
|
|
|
157
157
|
|
|
158
158
|
<hr />
|
|
159
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
160
|
|
|
162
|
-
Rasa Pro is
|
|
161
|
+
Rasa Pro is a framework for building scalable, dynamic conversational AI assistants that integrate large language models (LLMs) to enable more contextually aware and agentic interactions. Whether you’re new to conversational AI or an experienced developer, Rasa Pro offers enhanced flexibility, control, and performance for mission-critical applications.
|
|
163
162
|
|
|
164
|
-
Rasa
|
|
163
|
+
Building on the foundation of Rasa Open Source, Rasa Pro adds advanced features like CALM (Conversational AI with Language Models) and Dialogue Understanding (DU), which enable developers to shift from traditional intent-driven systems to LLM-based agents. This allows for more robust, responsive interactions that adhere strictly to business logic, while reducing risks like prompt injection and minimizing hallucinations.
|
|
165
164
|
|
|
166
|
-
|
|
165
|
+
**Key Features:**
|
|
167
166
|
|
|
168
|
-
|
|
169
|
-
-
|
|
167
|
+
- **Flows for Business Logic:** Easily define business logic through Flows, a simplified way to describe how your AI assistant should handle conversations. Flows help streamline the development process, focusing on key tasks and reducing the complexity involved in managing conversations.
|
|
168
|
+
- **Automatic Conversation Repair:** Ensure seamless interactions by automatically handling interruptions or unexpected inputs. Developers have full control to customize these repairs based on specific use cases.
|
|
169
|
+
- **Customizable and Open:** Fully customizable code that allows developers to modify Rasa Pro to meet specific requirements, ensuring flexibility and adaptability to various conversational AI needs.
|
|
170
|
+
- **Robustness and Control:** Maintain strict adherence to business logic, preventing unwanted behaviors like prompt injection and hallucinations, leading to more reliable responses and secure interactions.
|
|
171
|
+
- **Built-in Security:** Safeguard sensitive data, control access, and ensure secure deployment, essential for production environments that demand high levels of security and compliance.
|
|
170
172
|
|
|
171
|
-
- 😁 [Install Rasa Pro](https://rasa.com/docs/rasa-pro/installation/python/installation)
|
|
172
173
|
|
|
173
|
-
---
|
|
174
174
|
|
|
175
|
-
|
|
176
|
-
- [Development Internals](#development-internals)
|
|
177
|
-
- [Releases](#releases)
|
|
178
|
-
- [Troubleshooting](#troubleshooting)
|
|
175
|
+
A [free developer license](https://rasa.com/docs/rasa-pro/developer-edition/) is available so you can explore and get to know Rasa Pro. For small production deployments, the Extended Developer License allows you to take your assistant live in a limited capacity. A paid license is required for larger-scale production use, but all code is visible and can be customized as needed.
|
|
179
176
|
|
|
180
|
-
|
|
177
|
+
To get started right now, you can
|
|
181
178
|
|
|
182
|
-
|
|
179
|
+
`pip install rasa-pro`
|
|
183
180
|
|
|
184
|
-
|
|
185
|
-
you have to install Poetry first. Please follow
|
|
186
|
-
[the official guide](https://python-poetry.org/docs/#installation) to see all possible options.
|
|
181
|
+
Check out our
|
|
187
182
|
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
183
|
+
- [Rasa-pro Quickstart](https://rasa.com/docs/rasa-pro/installation/quickstart/),
|
|
184
|
+
- [Conversational AI with Language Models (CALM) conceptual rundown](https://rasa.com/docs/rasa-pro/calm/),
|
|
185
|
+
- [Rasa Pro / CALM tutorial](https://rasa.com/docs/rasa-pro/tutorial), and
|
|
186
|
+
- [Rasa pro changelog](https://rasa.com/docs/rasa/rasa-pro-changelog/)
|
|
192
187
|
|
|
188
|
+
<<<<<<< HEAD
|
|
193
189
|
### Managing environments
|
|
194
190
|
|
|
195
191
|
The official [Poetry guide](https://python-poetry.org/docs/managing-environments/) suggests to use
|
|
@@ -561,4 +557,7 @@ Please refer to the [Rasa Product Release and Maintenance Policy](https://rasa.c
|
|
|
561
557
|
```
|
|
562
558
|
|
|
563
559
|
For more information on this command, please see the [Official Docker Documentation](https://docs.docker.com/engine/reference/commandline/system_prune/).
|
|
560
|
+
=======
|
|
561
|
+
for more. Also feel free to reach out to us on the [Rasa forum](https://forum.rasa.com/).
|
|
562
|
+
>>>>>>> 2c5cd7bc639 (update readme.md from main branch on 3.10.x (#1597))
|
|
564
563
|
|
|
@@ -10,39 +10,35 @@
|
|
|
10
10
|
|
|
11
11
|
<hr />
|
|
12
12
|
|
|
13
|
-
<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">
|
|
14
13
|
|
|
15
|
-
Rasa Pro is
|
|
14
|
+
Rasa Pro is a framework for building scalable, dynamic conversational AI assistants that integrate large language models (LLMs) to enable more contextually aware and agentic interactions. Whether you’re new to conversational AI or an experienced developer, Rasa Pro offers enhanced flexibility, control, and performance for mission-critical applications.
|
|
16
15
|
|
|
17
|
-
Rasa
|
|
16
|
+
Building on the foundation of Rasa Open Source, Rasa Pro adds advanced features like CALM (Conversational AI with Language Models) and Dialogue Understanding (DU), which enable developers to shift from traditional intent-driven systems to LLM-based agents. This allows for more robust, responsive interactions that adhere strictly to business logic, while reducing risks like prompt injection and minimizing hallucinations.
|
|
18
17
|
|
|
19
|
-
|
|
18
|
+
**Key Features:**
|
|
20
19
|
|
|
21
|
-
|
|
22
|
-
-
|
|
20
|
+
- **Flows for Business Logic:** Easily define business logic through Flows, a simplified way to describe how your AI assistant should handle conversations. Flows help streamline the development process, focusing on key tasks and reducing the complexity involved in managing conversations.
|
|
21
|
+
- **Automatic Conversation Repair:** Ensure seamless interactions by automatically handling interruptions or unexpected inputs. Developers have full control to customize these repairs based on specific use cases.
|
|
22
|
+
- **Customizable and Open:** Fully customizable code that allows developers to modify Rasa Pro to meet specific requirements, ensuring flexibility and adaptability to various conversational AI needs.
|
|
23
|
+
- **Robustness and Control:** Maintain strict adherence to business logic, preventing unwanted behaviors like prompt injection and hallucinations, leading to more reliable responses and secure interactions.
|
|
24
|
+
- **Built-in Security:** Safeguard sensitive data, control access, and ensure secure deployment, essential for production environments that demand high levels of security and compliance.
|
|
23
25
|
|
|
24
|
-
- 😁 [Install Rasa Pro](https://rasa.com/docs/rasa-pro/installation/python/installation)
|
|
25
26
|
|
|
26
|
-
---
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
- [Development Internals](#development-internals)
|
|
30
|
-
- [Releases](#releases)
|
|
31
|
-
- [Troubleshooting](#troubleshooting)
|
|
28
|
+
A [free developer license](https://rasa.com/docs/rasa-pro/developer-edition/) is available so you can explore and get to know Rasa Pro. For small production deployments, the Extended Developer License allows you to take your assistant live in a limited capacity. A paid license is required for larger-scale production use, but all code is visible and can be customized as needed.
|
|
32
29
|
|
|
33
|
-
|
|
30
|
+
To get started right now, you can
|
|
34
31
|
|
|
35
|
-
|
|
32
|
+
`pip install rasa-pro`
|
|
36
33
|
|
|
37
|
-
|
|
38
|
-
you have to install Poetry first. Please follow
|
|
39
|
-
[the official guide](https://python-poetry.org/docs/#installation) to see all possible options.
|
|
34
|
+
Check out our
|
|
40
35
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
36
|
+
- [Rasa-pro Quickstart](https://rasa.com/docs/rasa-pro/installation/quickstart/),
|
|
37
|
+
- [Conversational AI with Language Models (CALM) conceptual rundown](https://rasa.com/docs/rasa-pro/calm/),
|
|
38
|
+
- [Rasa Pro / CALM tutorial](https://rasa.com/docs/rasa-pro/tutorial), and
|
|
39
|
+
- [Rasa pro changelog](https://rasa.com/docs/rasa/rasa-pro-changelog/)
|
|
45
40
|
|
|
41
|
+
<<<<<<< HEAD
|
|
46
42
|
### Managing environments
|
|
47
43
|
|
|
48
44
|
The official [Poetry guide](https://python-poetry.org/docs/managing-environments/) suggests to use
|
|
@@ -414,3 +410,6 @@ Please refer to the [Rasa Product Release and Maintenance Policy](https://rasa.c
|
|
|
414
410
|
```
|
|
415
411
|
|
|
416
412
|
For more information on this command, please see the [Official Docker Documentation](https://docs.docker.com/engine/reference/commandline/system_prune/).
|
|
413
|
+
=======
|
|
414
|
+
for more. Also feel free to reach out to us on the [Rasa forum](https://forum.rasa.com/).
|
|
415
|
+
>>>>>>> 2c5cd7bc639 (update readme.md from main branch on 3.10.x (#1597))
|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "rasa-pro"
|
|
7
|
-
version = "3.9.
|
|
7
|
+
version = "3.9.19"
|
|
8
8
|
description = "State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development."
|
|
9
9
|
authors = [ "Rasa Technologies GmbH <hi@rasa.com>",]
|
|
10
10
|
maintainers = [ "Tom Bocklisch <tom@rasa.com>",]
|
|
@@ -94,7 +94,7 @@ azure-storage-blob = ">=12.16.0, <12.17.0"
|
|
|
94
94
|
requests = "~2.31.0"
|
|
95
95
|
matplotlib = ">=3.7,<3.8"
|
|
96
96
|
attrs = ">=23.1,<23.2"
|
|
97
|
-
jsonpickle = ">=3.0,<3.
|
|
97
|
+
jsonpickle = ">=3.3.0,<3.4"
|
|
98
98
|
redis = ">=4.6.0, <6.0"
|
|
99
99
|
absl-py = ">=2.0,<2.1"
|
|
100
100
|
apscheduler = ">=3.10,<3.11"
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
<script>
|
|
18
18
|
const chatDiv = document.getElementById("rasa-chat-widget");
|
|
19
19
|
const websocketUrl = window.location.origin.replace("http", "ws");
|
|
20
|
+
const initialPayload = "/session_start";
|
|
20
21
|
const maxHeight = document.documentElement.scrollHeight - 130;
|
|
21
22
|
// 21 and 25 are the rem number we're using for the columns. We add 0.75rem for the padding
|
|
22
23
|
// A potential improvement would be to add a onresize event for both width and height
|
|
@@ -28,6 +29,7 @@
|
|
|
28
29
|
const columnWidth = remReference * parseFloat(getComputedStyle(document.documentElement).fontSize);
|
|
29
30
|
|
|
30
31
|
chatDiv.setAttribute("data-websocket-url", websocketUrl);
|
|
32
|
+
chatDiv.setAttribute("data-initial-payload", initialPayload);
|
|
31
33
|
chatDiv.setAttribute("data-close-on-outside-click", false);
|
|
32
34
|
chatDiv.setAttribute("data-height", maxHeight);
|
|
33
35
|
chatDiv.setAttribute("data-width", columnWidth);
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
<script>
|
|
16
16
|
const chatDiv = document.getElementById("rasa-chat-widget");
|
|
17
17
|
const websocketUrl = window.location.origin.replace("http", "ws");
|
|
18
|
+
const initialPayload = "/session_start";
|
|
18
19
|
const maxHeight = document.documentElement.scrollHeight - 130;
|
|
19
20
|
// 21 and 25 are the rem number we're using for the columns. We add 0.75rem for the padding
|
|
20
21
|
// A potential improvement would be to add a onresize event for both width and height
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
const columnWidth = remReference * parseFloat(getComputedStyle(document.documentElement).fontSize);
|
|
27
28
|
|
|
28
29
|
chatDiv.setAttribute("data-websocket-url", websocketUrl);
|
|
30
|
+
chatDiv.setAttribute("data-initial-payload", initialPayload);
|
|
29
31
|
chatDiv.setAttribute("data-close-on-outside-click", false);
|
|
30
32
|
chatDiv.setAttribute("data-height", maxHeight);
|
|
31
33
|
chatDiv.setAttribute("data-width", columnWidth);
|
|
@@ -476,7 +476,8 @@ def validate_collect_step(
|
|
|
476
476
|
step: CollectInformationFlowStep,
|
|
477
477
|
stack: DialogueStack,
|
|
478
478
|
available_actions: List[str],
|
|
479
|
-
slots: Dict[
|
|
479
|
+
slots: Dict[str, Slot],
|
|
480
|
+
flow_name: str,
|
|
480
481
|
) -> bool:
|
|
481
482
|
"""Validate that a collect step can be executed.
|
|
482
483
|
|
|
@@ -498,12 +499,12 @@ def validate_collect_step(
|
|
|
498
499
|
slot_name=step.collect,
|
|
499
500
|
)
|
|
500
501
|
|
|
501
|
-
cancel_flow_and_push_internal_error(stack)
|
|
502
|
+
cancel_flow_and_push_internal_error(stack, flow_name)
|
|
502
503
|
|
|
503
504
|
return False
|
|
504
505
|
|
|
505
506
|
|
|
506
|
-
def cancel_flow_and_push_internal_error(stack: DialogueStack) -> None:
|
|
507
|
+
def cancel_flow_and_push_internal_error(stack: DialogueStack, flow_name: str) -> None:
|
|
507
508
|
"""Cancel the top user flow and push the internal error pattern."""
|
|
508
509
|
top_frame = stack.top()
|
|
509
510
|
|
|
@@ -515,7 +516,7 @@ def cancel_flow_and_push_internal_error(stack: DialogueStack) -> None:
|
|
|
515
516
|
canceled_frames = CancelFlowCommand.select_canceled_frames(stack)
|
|
516
517
|
stack.push(
|
|
517
518
|
CancelPatternFlowStackFrame(
|
|
518
|
-
canceled_name=
|
|
519
|
+
canceled_name=flow_name,
|
|
519
520
|
canceled_frames=canceled_frames,
|
|
520
521
|
)
|
|
521
522
|
)
|
|
@@ -527,6 +528,7 @@ def validate_custom_slot_mappings(
|
|
|
527
528
|
stack: DialogueStack,
|
|
528
529
|
tracker: DialogueStateTracker,
|
|
529
530
|
available_actions: List[str],
|
|
531
|
+
flow_name: str,
|
|
530
532
|
) -> bool:
|
|
531
533
|
"""Validate a slot with custom mappings.
|
|
532
534
|
|
|
@@ -547,7 +549,7 @@ def validate_custom_slot_mappings(
|
|
|
547
549
|
action=step.collect_action,
|
|
548
550
|
collect=step.collect,
|
|
549
551
|
)
|
|
550
|
-
cancel_flow_and_push_internal_error(stack)
|
|
552
|
+
cancel_flow_and_push_internal_error(stack, flow_name)
|
|
551
553
|
return False
|
|
552
554
|
|
|
553
555
|
return True
|
|
@@ -586,30 +588,15 @@ def run_step(
|
|
|
586
588
|
initial_events.append(FlowStarted(flow.id))
|
|
587
589
|
|
|
588
590
|
if isinstance(step, CollectInformationFlowStep):
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
is_mapping_valid = validate_custom_slot_mappings(
|
|
598
|
-
step, stack, tracker, available_actions
|
|
599
|
-
)
|
|
600
|
-
if not is_mapping_valid:
|
|
601
|
-
# if we return any other FlowStepResult, the assistant will stay silent
|
|
602
|
-
# instead of triggering the internal error pattern
|
|
603
|
-
return ContinueFlowWithNextStep(events=initial_events)
|
|
604
|
-
|
|
605
|
-
structlogger.debug("flow.step.run.collect")
|
|
606
|
-
trigger_pattern_ask_collect_information(
|
|
607
|
-
step.collect, stack, step.rejections, step.utter, step.collect_action
|
|
591
|
+
return _run_collect_information_step(
|
|
592
|
+
available_actions,
|
|
593
|
+
initial_events,
|
|
594
|
+
stack,
|
|
595
|
+
step,
|
|
596
|
+
tracker,
|
|
597
|
+
flow.readable_name(),
|
|
608
598
|
)
|
|
609
599
|
|
|
610
|
-
events: List[Event] = events_for_collect_step_execution(step, tracker)
|
|
611
|
-
return ContinueFlowWithNextStep(events=initial_events + events)
|
|
612
|
-
|
|
613
600
|
elif isinstance(step, ActionFlowStep):
|
|
614
601
|
if not step.action:
|
|
615
602
|
raise FlowException(f"Action not specified for step {step}")
|
|
@@ -682,3 +669,37 @@ def run_step(
|
|
|
682
669
|
|
|
683
670
|
else:
|
|
684
671
|
raise FlowException(f"Unknown flow step type {type(step)}")
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
def _run_collect_information_step(
|
|
675
|
+
available_actions: List[str],
|
|
676
|
+
initial_events: List[Event],
|
|
677
|
+
stack: DialogueStack,
|
|
678
|
+
step: CollectInformationFlowStep,
|
|
679
|
+
tracker: DialogueStateTracker,
|
|
680
|
+
flow_name: str,
|
|
681
|
+
) -> FlowStepResult:
|
|
682
|
+
is_step_valid = validate_collect_step(
|
|
683
|
+
step, stack, available_actions, tracker.slots, flow_name
|
|
684
|
+
)
|
|
685
|
+
|
|
686
|
+
if not is_step_valid:
|
|
687
|
+
# if we return any other FlowStepResult, the assistant will stay silent
|
|
688
|
+
# instead of triggering the internal error pattern
|
|
689
|
+
return ContinueFlowWithNextStep(events=initial_events)
|
|
690
|
+
is_mapping_valid = validate_custom_slot_mappings(
|
|
691
|
+
step, stack, tracker, available_actions, flow_name
|
|
692
|
+
)
|
|
693
|
+
|
|
694
|
+
if not is_mapping_valid:
|
|
695
|
+
# if we return any other FlowStepResult, the assistant will stay silent
|
|
696
|
+
# instead of triggering the internal error pattern
|
|
697
|
+
return ContinueFlowWithNextStep(events=initial_events)
|
|
698
|
+
|
|
699
|
+
structlogger.debug("flow.step.run.collect")
|
|
700
|
+
trigger_pattern_ask_collect_information(
|
|
701
|
+
step.collect, stack, step.rejections, step.utter, step.collect_action
|
|
702
|
+
)
|
|
703
|
+
|
|
704
|
+
events: List[Event] = events_for_collect_step_execution(step, tracker)
|
|
705
|
+
return ContinueFlowWithNextStep(events=initial_events + events)
|
|
@@ -1260,11 +1260,13 @@ class MessageProcessor:
|
|
|
1260
1260
|
tracker.update(events[0])
|
|
1261
1261
|
return self.should_predict_another_action(action.name())
|
|
1262
1262
|
except Exception:
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
"
|
|
1266
|
-
"
|
|
1267
|
-
"
|
|
1263
|
+
structlogger.exception(
|
|
1264
|
+
"rasa.core.processor.run_action.exception",
|
|
1265
|
+
event_info=f"Encountered an exception while "
|
|
1266
|
+
f"running action '{action.name()}'."
|
|
1267
|
+
f"Bot will continue, but the actions events are lost. "
|
|
1268
|
+
f"Please check the logs of your action server for "
|
|
1269
|
+
f"more information.",
|
|
1268
1270
|
)
|
|
1269
1271
|
events = []
|
|
1270
1272
|
|
{rasa_pro-3.9.17 → rasa_pro-3.9.19}/rasa/dialogue_understanding/patterns/continue_interrupted.py
RENAMED
|
@@ -40,3 +40,12 @@ class ContinueInterruptedPatternFlowStackFrame(PatternFlowStackFrame):
|
|
|
40
40
|
step_id=data["step_id"],
|
|
41
41
|
previous_flow_name=data["previous_flow_name"],
|
|
42
42
|
)
|
|
43
|
+
|
|
44
|
+
def __eq__(self, other: Any) -> bool:
|
|
45
|
+
if not isinstance(other, ContinueInterruptedPatternFlowStackFrame):
|
|
46
|
+
return False
|
|
47
|
+
return (
|
|
48
|
+
self.flow_id == other.flow_id
|
|
49
|
+
and self.step_id == other.step_id
|
|
50
|
+
and self.previous_flow_name == other.previous_flow_name
|
|
51
|
+
)
|
|
@@ -77,6 +77,7 @@ def top_user_flow_frame(dialogue_stack: DialogueStack) -> Optional[UserFlowStack
|
|
|
77
77
|
if (
|
|
78
78
|
isinstance(frame, UserFlowStackFrame)
|
|
79
79
|
and frame.frame_type != FlowStackFrameType.CALL
|
|
80
|
+
and frame.frame_type != FlowStackFrameType.LINK
|
|
80
81
|
):
|
|
81
82
|
return frame
|
|
82
83
|
return None
|
|
@@ -103,8 +103,11 @@ class E2ETestRunner:
|
|
|
103
103
|
turns: TEST_TURNS_TYPE = {}
|
|
104
104
|
event_cursor = 0
|
|
105
105
|
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
if not self.agent.processor:
|
|
107
|
+
return turns
|
|
108
|
+
|
|
109
|
+
tracker = await self.agent.processor.fetch_tracker_with_initial_session(
|
|
110
|
+
sender_id, output_channel=collector
|
|
108
111
|
)
|
|
109
112
|
# turn -1 i used to contain events that happen during
|
|
110
113
|
# the start of the session and before the first user message
|
|
@@ -157,7 +160,7 @@ class E2ETestRunner:
|
|
|
157
160
|
f"An exception occurred while handling "
|
|
158
161
|
f"user message '{step.text}'."
|
|
159
162
|
)
|
|
160
|
-
tracker = await self.agent.tracker_store.retrieve(sender_id)
|
|
163
|
+
tracker = await self.agent.tracker_store.retrieve(sender_id) # type: ignore[assignment]
|
|
161
164
|
turns[position], event_cursor = self.get_actual_step_output(
|
|
162
165
|
tracker, step, event_cursor
|
|
163
166
|
)
|
|
@@ -592,8 +595,11 @@ class E2ETestRunner:
|
|
|
592
595
|
"""
|
|
593
596
|
if not fixtures:
|
|
594
597
|
return
|
|
595
|
-
|
|
596
|
-
|
|
598
|
+
if not self.agent.processor:
|
|
599
|
+
return
|
|
600
|
+
|
|
601
|
+
tracker = await self.agent.processor.fetch_tracker_with_initial_session(
|
|
602
|
+
sender_id, output_channel=CollectingOutputChannel()
|
|
597
603
|
)
|
|
598
604
|
|
|
599
605
|
for fixture in fixtures:
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
-
import copy
|
|
3
2
|
import logging
|
|
4
3
|
from typing import Any, List, Text, Dict, Type, Union, Tuple, Optional
|
|
5
4
|
|
|
@@ -185,8 +184,6 @@ def undo_fallback_prediction(prediction: Dict[Text, Any]) -> Dict[Text, Any]:
|
|
|
185
184
|
if len(intent_ranking) < 2:
|
|
186
185
|
return prediction
|
|
187
186
|
|
|
188
|
-
prediction = copy.deepcopy(prediction)
|
|
189
187
|
prediction[INTENT] = intent_ranking[1]
|
|
190
188
|
prediction[INTENT_RANKING_KEY] = prediction[INTENT_RANKING_KEY][1:]
|
|
191
|
-
|
|
192
189
|
return prediction
|
|
@@ -63,7 +63,7 @@ class Flow:
|
|
|
63
63
|
Returns:
|
|
64
64
|
A Flow object.
|
|
65
65
|
"""
|
|
66
|
-
step_sequence = FlowStepSequence.from_json(data.get("steps"))
|
|
66
|
+
step_sequence = FlowStepSequence.from_json(flow_id, data.get("steps"))
|
|
67
67
|
nlu_triggers = NLUTriggers.from_json(data.get("nlu_trigger"))
|
|
68
68
|
|
|
69
69
|
return Flow(
|
|
@@ -153,13 +153,13 @@ class Flow:
|
|
|
153
153
|
return None
|
|
154
154
|
|
|
155
155
|
if step_id == START_STEP:
|
|
156
|
-
return StartFlowStep(self.first_step_in_flow().id)
|
|
156
|
+
return StartFlowStep(self.id, self.first_step_in_flow().id)
|
|
157
157
|
|
|
158
158
|
if step_id == END_STEP:
|
|
159
|
-
return EndFlowStep()
|
|
159
|
+
return EndFlowStep(self.id)
|
|
160
160
|
|
|
161
161
|
if step_id.startswith(CONTINUE_STEP_PREFIX):
|
|
162
|
-
return ContinueFlowStep(step_id[len(CONTINUE_STEP_PREFIX) :])
|
|
162
|
+
return ContinueFlowStep(self.id, step_id[len(CONTINUE_STEP_PREFIX) :])
|
|
163
163
|
|
|
164
164
|
for step in self.steps_with_calls_resolved:
|
|
165
165
|
if step.id == step_id:
|
|
@@ -20,10 +20,11 @@ if TYPE_CHECKING:
|
|
|
20
20
|
structlogger = structlog.get_logger()
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
def step_from_json(data: Dict[Text, Any]) -> FlowStep:
|
|
23
|
+
def step_from_json(flow_id: Text, data: Dict[Text, Any]) -> FlowStep:
|
|
24
24
|
"""Create a specific FlowStep from serialized data.
|
|
25
25
|
|
|
26
26
|
Args:
|
|
27
|
+
flow_id: The id of the flow that contains the step.
|
|
27
28
|
data: data for a specific FlowStep object in a serialized data format.
|
|
28
29
|
|
|
29
30
|
Returns:
|
|
@@ -39,17 +40,17 @@ def step_from_json(data: Dict[Text, Any]) -> FlowStep:
|
|
|
39
40
|
)
|
|
40
41
|
|
|
41
42
|
if "action" in data:
|
|
42
|
-
return ActionFlowStep.from_json(data)
|
|
43
|
+
return ActionFlowStep.from_json(flow_id, data)
|
|
43
44
|
if "collect" in data:
|
|
44
|
-
return CollectInformationFlowStep.from_json(data)
|
|
45
|
+
return CollectInformationFlowStep.from_json(flow_id, data)
|
|
45
46
|
if "link" in data:
|
|
46
|
-
return LinkFlowStep.from_json(data)
|
|
47
|
+
return LinkFlowStep.from_json(flow_id, data)
|
|
47
48
|
if "call" in data:
|
|
48
|
-
return CallFlowStep.from_json(data)
|
|
49
|
+
return CallFlowStep.from_json(flow_id, data)
|
|
49
50
|
if "set_slots" in data:
|
|
50
|
-
return SetSlotsFlowStep.from_json(data)
|
|
51
|
+
return SetSlotsFlowStep.from_json(flow_id, data)
|
|
51
52
|
if "noop" in data:
|
|
52
|
-
return NoOperationFlowStep.from_json(data)
|
|
53
|
+
return NoOperationFlowStep.from_json(flow_id, data)
|
|
53
54
|
raise RasaException(f"Failed to parse step from json. Unknown type for {data}.")
|
|
54
55
|
|
|
55
56
|
|
|
@@ -67,12 +68,15 @@ class FlowStep:
|
|
|
67
68
|
"""Additional, unstructured information about this flow step."""
|
|
68
69
|
next: FlowStepLinks
|
|
69
70
|
"""The next steps of the flow step."""
|
|
71
|
+
flow_id: Text
|
|
72
|
+
"""The id of the flow that contains the step."""
|
|
70
73
|
|
|
71
74
|
@classmethod
|
|
72
|
-
def from_json(cls, data: Dict[Text, Any]) -> FlowStep:
|
|
75
|
+
def from_json(cls, flow_id: Text, data: Dict[Text, Any]) -> FlowStep:
|
|
73
76
|
"""Create a FlowStep object from data in a serialized format.
|
|
74
77
|
|
|
75
78
|
Args:
|
|
79
|
+
flow_id: The id of the flow that contains the step.
|
|
76
80
|
data: The data for a FlowStep object in a serialized format.
|
|
77
81
|
|
|
78
82
|
Returns:
|
|
@@ -87,7 +91,8 @@ class FlowStep:
|
|
|
87
91
|
custom_id=data.get("id"),
|
|
88
92
|
description=data.get("description"),
|
|
89
93
|
metadata=data.get("metadata", {}),
|
|
90
|
-
next=FlowStepLinks.from_json(data.get("next", [])),
|
|
94
|
+
next=FlowStepLinks.from_json(flow_id, data.get("next", [])),
|
|
95
|
+
flow_id=flow_id,
|
|
91
96
|
)
|
|
92
97
|
|
|
93
98
|
def does_allow_for_next_step(self) -> bool:
|
|
@@ -125,7 +130,7 @@ class FlowStep:
|
|
|
125
130
|
@property
|
|
126
131
|
def default_id(self) -> str:
|
|
127
132
|
"""Returns the default id of the flow step."""
|
|
128
|
-
return f"{self.idx}_{self.default_id_postfix}"
|
|
133
|
+
return f"{self.flow_id}_{self.idx}_{self.default_id_postfix}"
|
|
129
134
|
|
|
130
135
|
@property
|
|
131
136
|
def default_id_postfix(self) -> str:
|
|
@@ -17,10 +17,13 @@ class FlowStepLinks:
|
|
|
17
17
|
links: List[FlowStepLink]
|
|
18
18
|
|
|
19
19
|
@staticmethod
|
|
20
|
-
def from_json(
|
|
20
|
+
def from_json(
|
|
21
|
+
flow_id: Text, data: Union[str, List[Dict[Text, Any]]]
|
|
22
|
+
) -> FlowStepLinks:
|
|
21
23
|
"""Create a FlowStepLinks object from a serialized data format.
|
|
22
24
|
|
|
23
25
|
Args:
|
|
26
|
+
flow_id: The id of the flow that contains the step.
|
|
24
27
|
data: data for a FlowStepLinks object in a serialized format.
|
|
25
28
|
|
|
26
29
|
Returns:
|
|
@@ -30,11 +33,11 @@ class FlowStepLinks:
|
|
|
30
33
|
return FlowStepLinks(links=[])
|
|
31
34
|
|
|
32
35
|
if isinstance(data, str):
|
|
33
|
-
return FlowStepLinks(links=[StaticFlowStepLink.from_json(data)])
|
|
36
|
+
return FlowStepLinks(links=[StaticFlowStepLink.from_json(flow_id, data)])
|
|
34
37
|
|
|
35
38
|
return FlowStepLinks(
|
|
36
39
|
links=[
|
|
37
|
-
BranchingFlowStepLink.from_json(link_config)
|
|
40
|
+
BranchingFlowStepLink.from_json(flow_id, link_config)
|
|
38
41
|
for link_config in data
|
|
39
42
|
if link_config
|
|
40
43
|
]
|
|
@@ -94,10 +97,11 @@ class FlowStepLink:
|
|
|
94
97
|
raise NotImplementedError()
|
|
95
98
|
|
|
96
99
|
@staticmethod
|
|
97
|
-
def from_json(data: Any) -> FlowStepLink:
|
|
100
|
+
def from_json(flow_id: Text, data: Any) -> FlowStepLink:
|
|
98
101
|
"""Create a FlowStepLink object from a serialized data format.
|
|
99
102
|
|
|
100
103
|
Args:
|
|
104
|
+
flow_id: The id of the flow that contains the step.
|
|
101
105
|
data: data for a FlowStepLink object in a serialized format.
|
|
102
106
|
|
|
103
107
|
Returns:
|
|
@@ -163,19 +167,20 @@ class BranchingFlowStepLink(FlowStepLink):
|
|
|
163
167
|
return self.target_reference
|
|
164
168
|
|
|
165
169
|
@staticmethod
|
|
166
|
-
def from_json(data: Dict[Text, Any]) -> BranchingFlowStepLink:
|
|
170
|
+
def from_json(flow_id: Text, data: Dict[Text, Any]) -> BranchingFlowStepLink:
|
|
167
171
|
"""Create a BranchingFlowStepLink object from a serialized data format.
|
|
168
172
|
|
|
169
173
|
Args:
|
|
174
|
+
flow_id: The id of the flow that contains the step.
|
|
170
175
|
data: data for a BranchingFlowStepLink object in a serialized format.
|
|
171
176
|
|
|
172
177
|
Returns:
|
|
173
178
|
a BranchingFlowStepLink object.
|
|
174
179
|
"""
|
|
175
180
|
if "if" in data:
|
|
176
|
-
return IfFlowStepLink.from_json(data)
|
|
181
|
+
return IfFlowStepLink.from_json(flow_id, data)
|
|
177
182
|
else:
|
|
178
|
-
return ElseFlowStepLink.from_json(data)
|
|
183
|
+
return ElseFlowStepLink.from_json(flow_id, data)
|
|
179
184
|
|
|
180
185
|
def depth_in_tree(self) -> int:
|
|
181
186
|
"""Returns the depth in the tree."""
|
|
@@ -198,10 +203,11 @@ class IfFlowStepLink(BranchingFlowStepLink):
|
|
|
198
203
|
"""The condition that needs to be satisfied to follow this flow step link."""
|
|
199
204
|
|
|
200
205
|
@staticmethod
|
|
201
|
-
def from_json(data: Dict[Text, Any]) -> IfFlowStepLink:
|
|
206
|
+
def from_json(flow_id: Text, data: Dict[Text, Any]) -> IfFlowStepLink:
|
|
202
207
|
"""Create an IfFlowStepLink object from a serialized data format.
|
|
203
208
|
|
|
204
209
|
Args:
|
|
210
|
+
flow_id: The id of the flow that contains the step.
|
|
205
211
|
data: data for a IfFlowStepLink in a serialized format.
|
|
206
212
|
|
|
207
213
|
Returns:
|
|
@@ -213,7 +219,7 @@ class IfFlowStepLink(BranchingFlowStepLink):
|
|
|
213
219
|
return IfFlowStepLink(target_reference=data["then"], condition=data["if"])
|
|
214
220
|
else:
|
|
215
221
|
return IfFlowStepLink(
|
|
216
|
-
target_reference=FlowStepSequence.from_json(data["then"]),
|
|
222
|
+
target_reference=FlowStepSequence.from_json(flow_id, data["then"]),
|
|
217
223
|
condition=data["if"],
|
|
218
224
|
)
|
|
219
225
|
|
|
@@ -238,10 +244,11 @@ class ElseFlowStepLink(BranchingFlowStepLink):
|
|
|
238
244
|
"""A flow step link that is taken when conditional flow step links weren't taken."""
|
|
239
245
|
|
|
240
246
|
@staticmethod
|
|
241
|
-
def from_json(data: Dict[Text, Any]) -> ElseFlowStepLink:
|
|
247
|
+
def from_json(flow_id: Text, data: Dict[Text, Any]) -> ElseFlowStepLink:
|
|
242
248
|
"""Create an ElseFlowStepLink object from serialized data.
|
|
243
249
|
|
|
244
250
|
Args:
|
|
251
|
+
flow_id: The id of the flow that contains the step.
|
|
245
252
|
data: data for an ElseFlowStepLink in a serialized format
|
|
246
253
|
|
|
247
254
|
Returns:
|
|
@@ -253,7 +260,7 @@ class ElseFlowStepLink(BranchingFlowStepLink):
|
|
|
253
260
|
return ElseFlowStepLink(target_reference=data["else"])
|
|
254
261
|
else:
|
|
255
262
|
return ElseFlowStepLink(
|
|
256
|
-
target_reference=FlowStepSequence.from_json(data["else"])
|
|
263
|
+
target_reference=FlowStepSequence.from_json(flow_id, data["else"])
|
|
257
264
|
)
|
|
258
265
|
|
|
259
266
|
def as_json(self) -> Dict[Text, Any]:
|
|
@@ -279,10 +286,11 @@ class StaticFlowStepLink(FlowStepLink):
|
|
|
279
286
|
"""The id of the linked step."""
|
|
280
287
|
|
|
281
288
|
@staticmethod
|
|
282
|
-
def from_json(data: Text) -> StaticFlowStepLink:
|
|
289
|
+
def from_json(flow_id: Text, data: Text) -> StaticFlowStepLink:
|
|
283
290
|
"""Create a StaticFlowStepLink from serialized data
|
|
284
291
|
|
|
285
292
|
Args:
|
|
293
|
+
flow_id: The id of the flow that contains the step.
|
|
286
294
|
data: data for a StaticFlowStepLink in a serialized format
|
|
287
295
|
|
|
288
296
|
Returns:
|