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