rasa-pro 3.14.0.dev10__py3-none-any.whl → 3.14.0.dev11__py3-none-any.whl
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/__main__.py +15 -3
- rasa/agents/agent_manager.py +50 -2
- rasa/agents/constants.py +3 -0
- rasa/agents/core/types.py +11 -0
- rasa/agents/protocol/a2a/a2a_agent.py +45 -5
- rasa/agents/protocol/mcp/mcp_base_agent.py +14 -5
- rasa/agents/protocol/mcp/mcp_open_agent.py +27 -13
- rasa/agents/protocol/mcp/mcp_task_agent.py +42 -31
- rasa/agents/schemas/agent_tool_result.py +0 -2
- rasa/agents/schemas/agent_tool_schema.py +55 -3
- rasa/agents/templates/mcp_open_agent_prompt_template.jinja2 +6 -6
- rasa/agents/templates/mcp_task_agent_prompt_template.jinja2 +5 -5
- rasa/agents/utils.py +42 -3
- rasa/builder/copilot/telemetry.py +35 -19
- rasa/builder/main.py +5 -14
- rasa/builder/project_generator.py +1 -1
- rasa/builder/service.py +5 -0
- rasa/builder/template_cache.py +9 -184
- rasa/cli/project_templates/basic/data/data.md +5 -6
- rasa/cli/project_templates/basic/domain/domain.md +5 -2
- rasa/cli/project_templates/finance/README.md +8 -7
- rasa/cli/project_templates/finance/actions/__init__.py +0 -46
- rasa/cli/project_templates/finance/actions/accounts/check_balance.py +18 -0
- rasa/cli/project_templates/finance/actions/{transfers/action_process_immediate_payment.py → cards/check_that_card_exists.py} +6 -3
- rasa/cli/project_templates/finance/actions/cards/list_cards.py +22 -0
- rasa/cli/project_templates/finance/actions/contacts/__init__.py +0 -0
- rasa/cli/project_templates/finance/actions/contacts/add_contact.py +30 -0
- rasa/cli/project_templates/finance/actions/contacts/list_contacts.py +22 -0
- rasa/cli/project_templates/finance/actions/contacts/remove_contact.py +35 -0
- rasa/cli/project_templates/finance/actions/db.py +117 -0
- rasa/cli/project_templates/finance/actions/transfers/check_transfer_funds.py +27 -0
- rasa/cli/project_templates/finance/actions/transfers/check_transfer_limit.py +36 -0
- rasa/cli/project_templates/finance/actions/transfers/execute_recurrent_payment.py +20 -0
- rasa/cli/project_templates/finance/actions/transfers/execute_transfer.py +45 -0
- rasa/cli/project_templates/finance/actions/transfers/list_transactions.py +32 -0
- rasa/cli/project_templates/finance/config.yml +6 -0
- rasa/cli/project_templates/finance/credentials.yml +7 -6
- rasa/cli/project_templates/finance/data/accounts/check_balance.yml +3 -4
- rasa/cli/project_templates/finance/data/accounts/download_statements.yml +26 -0
- rasa/cli/project_templates/finance/data/bills/bill_pay_reminder.yml +25 -0
- rasa/cli/project_templates/finance/data/cards/activate_card.yml +35 -0
- rasa/cli/project_templates/finance/data/cards/block_card.yml +37 -58
- rasa/cli/project_templates/finance/data/cards/list_cards.yml +14 -0
- rasa/cli/project_templates/finance/data/cards/replace_card.yml +16 -0
- rasa/cli/project_templates/finance/data/cards/replace_eligible_card.yml +29 -0
- rasa/cli/project_templates/finance/data/contacts/add_contact.yml +33 -0
- rasa/cli/project_templates/finance/data/contacts/list_contacts.yml +14 -0
- rasa/cli/project_templates/finance/data/contacts/remove_contact.yml +31 -0
- rasa/cli/project_templates/finance/data/data.md +6 -3
- rasa/cli/project_templates/finance/data/general/agent_details.yml +6 -0
- rasa/cli/project_templates/finance/data/general/hello.yml +1 -2
- rasa/cli/project_templates/finance/data/general/human_handoff.yml +1 -1
- rasa/cli/project_templates/finance/data/transfers/check_transfer_limit.yml +18 -0
- rasa/cli/project_templates/finance/data/transfers/list_transactions.yml +46 -0
- rasa/cli/project_templates/finance/data/transfers/move_money_between_accounts.yml +51 -0
- rasa/cli/project_templates/finance/data/transfers/transfer_money.yml +29 -62
- rasa/cli/project_templates/finance/data/transfers/transfer_money_to_a_third_party.yml +175 -0
- rasa/cli/project_templates/finance/db/cards.json +18 -0
- rasa/cli/project_templates/finance/db/contacts.json +10 -0
- rasa/cli/project_templates/finance/db/my_account.json +6 -0
- rasa/cli/project_templates/finance/db/transactions.json +22 -0
- rasa/cli/project_templates/finance/docs/docs.md +8 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/account_features/budgeting_analytics.txt +22 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/account_features/multi_currency_accounts.txt +19 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/account_features/premium_benefits.txt +19 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/card_management/contactless_limits.txt +16 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/card_management/freeze_unfreeze_card.txt +16 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/card_management/lost_stolen_card.txt +19 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/money_transfers/instant_payments.txt +19 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/money_transfers/international_transfers.txt +19 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/security_fraud/fraud_protection.txt +22 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/security_fraud/secure_payments.txt +22 -0
- rasa/cli/project_templates/finance/domain/_system/patterns/pattern_session_start.yml +11 -0
- rasa/cli/project_templates/finance/domain/accounts/check_balance.yml +9 -5
- rasa/cli/project_templates/finance/domain/accounts/download_statements.yml +40 -0
- rasa/cli/project_templates/finance/domain/bills/bill_pay_reminder.yml +49 -0
- rasa/cli/project_templates/finance/domain/cards/activate_card.yml +24 -0
- rasa/cli/project_templates/finance/domain/cards/block_card.yml +33 -90
- rasa/cli/project_templates/finance/domain/cards/list_cards.yml +16 -0
- rasa/cli/project_templates/finance/domain/cards/replace_card.yml +43 -0
- rasa/cli/project_templates/finance/domain/cards/shared.yml +15 -0
- rasa/cli/project_templates/finance/domain/contacts/add_contact.yml +37 -0
- rasa/cli/project_templates/finance/domain/contacts/list_contacts.yml +16 -0
- rasa/cli/project_templates/finance/domain/contacts/remove_contact.yml +32 -0
- rasa/cli/project_templates/finance/domain/domain.md +9 -1
- rasa/cli/project_templates/finance/domain/general/_shared.yml +53 -0
- rasa/cli/project_templates/finance/domain/general/agent_details.yml +19 -0
- rasa/cli/project_templates/finance/domain/general/cannot_handle.yml +5 -2
- rasa/cli/project_templates/finance/domain/general/feedback.yml +0 -3
- rasa/cli/project_templates/finance/domain/general/human_handoff.yml +7 -3
- rasa/cli/project_templates/finance/domain/general/welcome.yml +5 -2
- rasa/cli/project_templates/finance/domain/transfers/check_transfer_limit.yml +32 -0
- rasa/cli/project_templates/finance/domain/transfers/list_transactions.yml +44 -0
- rasa/cli/project_templates/finance/domain/transfers/shared.yml +17 -0
- rasa/cli/project_templates/finance/domain/transfers/transfer_money.yml +203 -61
- rasa/cli/project_templates/finance/endpoints.yml +3 -2
- rasa/cli/project_templates/finance/prompts/rephraser_demo_personality_prompt.jinja2 +31 -12
- rasa/cli/project_templates/telco/data/data.md +1 -1
- rasa/cli/project_templates/telco/docs/docs.md +3 -0
- rasa/cli/project_templates/telco/domain/domain.md +1 -2
- rasa/constants.py +1 -1
- rasa/core/actions/direct_custom_actions_executor.py +9 -2
- rasa/core/agent.py +2 -3
- rasa/core/available_agents.py +1 -1
- rasa/core/brokers/broker.py +1 -1
- rasa/core/brokers/kafka.py +52 -8
- rasa/core/channels/__init__.py +82 -35
- rasa/core/channels/inspector/README.md +1 -1
- rasa/core/channels/telegram.py +4 -9
- rasa/core/channels/voice_stream/twilio_media_streams.py +5 -1
- rasa/core/concurrent_lock_store.py +66 -16
- rasa/core/iam_credentials_providers/aws_iam_credentials_providers.py +76 -1
- rasa/core/iam_credentials_providers/credentials_provider_protocol.py +1 -1
- rasa/core/lock_store.py +41 -7
- rasa/core/policies/flows/agent_executor.py +632 -0
- rasa/core/policies/flows/flow_executor.py +3 -417
- rasa/core/policies/flows/mcp_tool_executor.py +32 -12
- rasa/core/processor.py +49 -28
- rasa/core/run.py +22 -0
- rasa/dialogue_understanding/commands/cancel_flow_command.py +1 -1
- rasa/dialogue_understanding/commands/chit_chat_answer_command.py +11 -3
- rasa/dialogue_understanding/commands/clarify_command.py +11 -3
- rasa/dialogue_understanding/commands/knowledge_answer_command.py +11 -3
- rasa/dialogue_understanding/generator/prompt_templates/agent_command_prompt_v2_claude_3_5_sonnet_20240620_template.jinja2 +3 -3
- rasa/dialogue_understanding/generator/prompt_templates/agent_command_prompt_v2_gpt_4o_2024_11_20_template.jinja2 +3 -3
- rasa/dialogue_understanding/generator/prompt_templates/agent_command_prompt_v3_claude_3_5_sonnet_20240620_template.jinja2 +3 -3
- rasa/dialogue_understanding/generator/prompt_templates/agent_command_prompt_v3_gpt_4o_2024_11_20_template.jinja2 +3 -3
- rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py +2 -0
- rasa/dialogue_understanding/processor/command_processor.py +70 -0
- rasa/dialogue_understanding/stack/dialogue_stack.py +0 -25
- rasa/engine/loader.py +12 -0
- rasa/engine/recipes/default_components.py +111 -82
- rasa/engine/recipes/default_recipe.py +79 -22
- rasa/engine/runner/dask.py +8 -5
- rasa/graph_components/validators/default_recipe_validator.py +59 -19
- rasa/model_manager/warm_rasa_process.py +13 -3
- rasa/model_training.py +0 -14
- rasa/nlu/classifiers/logistic_regression_classifier.py +1 -22
- rasa/nlu/classifiers/mitie_intent_classifier.py +3 -0
- rasa/nlu/classifiers/sklearn_intent_classifier.py +1 -3
- rasa/nlu/extractors/crf_entity_extractor.py +9 -10
- rasa/nlu/extractors/mitie_entity_extractor.py +3 -0
- rasa/nlu/extractors/spacy_entity_extractor.py +3 -0
- rasa/nlu/featurizers/dense_featurizer/mitie_featurizer.py +2 -0
- rasa/nlu/featurizers/dense_featurizer/spacy_featurizer.py +3 -0
- rasa/nlu/featurizers/sparse_featurizer/count_vectors_featurizer.py +4 -2
- rasa/nlu/featurizers/sparse_featurizer/lexical_syntactic_featurizer.py +4 -0
- rasa/nlu/tokenizers/jieba_tokenizer.py +3 -4
- rasa/nlu/tokenizers/mitie_tokenizer.py +3 -2
- rasa/nlu/tokenizers/spacy_tokenizer.py +3 -2
- rasa/nlu/utils/mitie_utils.py +3 -0
- rasa/nlu/utils/spacy_utils.py +3 -2
- rasa/telemetry.py +63 -0
- rasa/utils/log_utils.py +95 -4
- rasa/utils/tensorflow/__init__.py +0 -22
- rasa/utils/tensorflow/callback.py +17 -7
- rasa/utils/tensorflow/layers.py +10 -7
- rasa/utils/tensorflow/rasa_layers.py +1 -1
- rasa/version.py +1 -1
- {rasa_pro-3.14.0.dev10.dist-info → rasa_pro-3.14.0.dev11.dist-info}/METADATA +99 -89
- {rasa_pro-3.14.0.dev10.dist-info → rasa_pro-3.14.0.dev11.dist-info}/RECORD +164 -235
- rasa/cli/project_templates/finance/actions/accounts/action_ask_account.py +0 -47
- rasa/cli/project_templates/finance/actions/accounts/action_check_balance.py +0 -40
- rasa/cli/project_templates/finance/actions/action_session_start.py +0 -74
- rasa/cli/project_templates/finance/actions/cards/action_ask_card.py +0 -48
- rasa/cli/project_templates/finance/actions/cards/action_check_card_existence.py +0 -36
- rasa/cli/project_templates/finance/actions/cards/action_update_card_status.py +0 -54
- rasa/cli/project_templates/finance/actions/database.py +0 -277
- rasa/cli/project_templates/finance/actions/transfers/action_add_payee.py +0 -52
- rasa/cli/project_templates/finance/actions/transfers/action_ask_account_from.py +0 -51
- rasa/cli/project_templates/finance/actions/transfers/action_check_payee_existence.py +0 -40
- rasa/cli/project_templates/finance/actions/transfers/action_check_sufficient_funds.py +0 -40
- rasa/cli/project_templates/finance/actions/transfers/action_list_payees.py +0 -46
- rasa/cli/project_templates/finance/actions/transfers/action_remove_payee.py +0 -49
- rasa/cli/project_templates/finance/actions/transfers/action_schedule_payment.py +0 -19
- rasa/cli/project_templates/finance/actions/transfers/action_validate_payment_date.py +0 -36
- rasa/cli/project_templates/finance/csvs/accounts.csv +0 -8
- rasa/cli/project_templates/finance/csvs/advisors.csv +0 -7
- rasa/cli/project_templates/finance/csvs/appointments.csv +0 -211
- rasa/cli/project_templates/finance/csvs/branches.csv +0 -10
- rasa/cli/project_templates/finance/csvs/cards.csv +0 -11
- rasa/cli/project_templates/finance/csvs/payees.csv +0 -11
- rasa/cli/project_templates/finance/csvs/transactions.csv +0 -71
- rasa/cli/project_templates/finance/csvs/users.csv +0 -4
- rasa/cli/project_templates/finance/data/cards/select_card.yml +0 -12
- rasa/cli/project_templates/finance/data/general/bot_identity.yml +0 -6
- rasa/cli/project_templates/finance/data/system/patterns/pattern_chitchat.yml +0 -5
- rasa/cli/project_templates/finance/data/system/source/accounts.json +0 -51
- rasa/cli/project_templates/finance/data/system/source/advisors.json +0 -44
- rasa/cli/project_templates/finance/data/system/source/appointments.json +0 -1474
- rasa/cli/project_templates/finance/data/system/source/branches.json +0 -47
- rasa/cli/project_templates/finance/data/system/source/cards.json +0 -72
- rasa/cli/project_templates/finance/data/system/source/payees.json +0 -74
- rasa/cli/project_templates/finance/data/system/source/transactions.json +0 -492
- rasa/cli/project_templates/finance/data/system/source/users.json +0 -29
- rasa/cli/project_templates/finance/data/transfers/add_payee.yml +0 -29
- rasa/cli/project_templates/finance/data/transfers/list_payees.yml +0 -5
- rasa/cli/project_templates/finance/data/transfers/remove_payee.yml +0 -21
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/consequences_of_blocking_card.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/reasons_to_block_card.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/recovering_from_card_fraud.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/tips_for_card_security.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/what_to_do_if_card_is_lost.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/account_balance_security.txt +0 -7
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/common_balance_inquiries.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/methods_to_check_balance.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/understanding_balance_updates.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/what_to_do_if_balance_is_incorrect.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/benefits_of_authorised_payees.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/common_issues_with_payees.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/general_payee_information.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/payee_management_tips.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/understanding_payee_types.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/common_transfer_errors.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/fees_for_transfers.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/general_transfer_information.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/security_tips_for_transfers.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/transfer_processing_times.txt +0 -8
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part1.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part10.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part11.txt +0 -48
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part12.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part13.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part14.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part15.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part16.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part17.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part18.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part19.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part2.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part20.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part21.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part22.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part23.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part24.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part25.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part26.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part27.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part28.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part29.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part3.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part30.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part31.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part32.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part33.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part34.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part35.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part36.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part37.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part38.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part39.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part4.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part40.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part41.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part42.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part43.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part44.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part45.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part46.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part47.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part48.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part49.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part5.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part50.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part51.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part52.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part53.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part54.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part55.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part56.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part57.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part58.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part59.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part6.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part60.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part61.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part7.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part8.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part9.txt +0 -47
- rasa/cli/project_templates/finance/domain/cards/select_card.yml +0 -12
- rasa/cli/project_templates/finance/domain/general/bot_identity.yml +0 -5
- rasa/cli/project_templates/finance/domain/general/defaults.yml +0 -24
- rasa/cli/project_templates/finance/domain/general/goodbye.yml +0 -7
- rasa/cli/project_templates/finance/domain/general/help.yml +0 -5
- rasa/cli/project_templates/finance/domain/general/utils.yml +0 -13
- rasa/cli/project_templates/finance/domain/transfers/add_payee.yml +0 -47
- rasa/cli/project_templates/finance/domain/transfers/list_payees.yml +0 -4
- rasa/cli/project_templates/finance/domain/transfers/remove_payee.yml +0 -16
- {rasa_pro-3.14.0.dev10.dist-info → rasa_pro-3.14.0.dev11.dist-info}/NOTICE +0 -0
- {rasa_pro-3.14.0.dev10.dist-info → rasa_pro-3.14.0.dev11.dist-info}/WHEEL +0 -0
- {rasa_pro-3.14.0.dev10.dist-info → rasa_pro-3.14.0.dev11.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: rasa-pro
|
|
3
|
-
Version: 3.14.0.
|
|
3
|
+
Version: 3.14.0.dev11
|
|
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
|
Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
|
|
6
6
|
Author: Rasa Technologies GmbH
|
|
@@ -16,145 +16,155 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
18
18
|
Classifier: Topic :: Software Development :: Libraries
|
|
19
|
-
Provides-Extra:
|
|
20
|
-
Provides-Extra:
|
|
21
|
-
Provides-Extra: agents-mcp
|
|
19
|
+
Provides-Extra: a2a
|
|
20
|
+
Provides-Extra: channels
|
|
22
21
|
Provides-Extra: full
|
|
23
22
|
Provides-Extra: gh-release-notes
|
|
24
23
|
Provides-Extra: jieba
|
|
24
|
+
Provides-Extra: metal
|
|
25
|
+
Provides-Extra: nlu
|
|
25
26
|
Provides-Extra: pii
|
|
26
|
-
Provides-Extra: psycopg2-binary
|
|
27
|
-
Provides-Extra: qdrant-client
|
|
28
|
-
Provides-Extra: redis
|
|
29
|
-
Provides-Extra: skops
|
|
30
27
|
Provides-Extra: spacy
|
|
31
|
-
Provides-Extra:
|
|
28
|
+
Provides-Extra: transformers
|
|
32
29
|
Requires-Dist: CacheControl (>=0.14.2,<0.15.0)
|
|
33
30
|
Requires-Dist: PyJWT[crypto] (>=2.8.0,<3.0.0)
|
|
34
|
-
Requires-Dist: SQLAlchemy (>=2.0.42,<2.1.0)
|
|
35
|
-
Requires-Dist: a2a-sdk (>=0.3.4,<0.4.0) ; extra == "
|
|
36
|
-
Requires-Dist: absl-py (>=2.0,<2.1)
|
|
31
|
+
Requires-Dist: SQLAlchemy (>=2.0.42,<2.1.0)
|
|
32
|
+
Requires-Dist: a2a-sdk (>=0.3.4,<0.4.0) ; extra == "a2a"
|
|
33
|
+
Requires-Dist: absl-py (>=2.0,<2.1)
|
|
37
34
|
Requires-Dist: aio-pika (>=8.2.3,<9.4.4)
|
|
38
|
-
Requires-Dist: aiogram (>=3.22.0,<
|
|
35
|
+
Requires-Dist: aiogram (>=3.22.0,<3.23.0) ; extra == "full" or extra == "channels"
|
|
39
36
|
Requires-Dist: aiohttp (>=3.10,<3.11)
|
|
37
|
+
Requires-Dist: aioshutil (>=1.5,<2.0)
|
|
40
38
|
Requires-Dist: apscheduler (>=3.10,<3.11)
|
|
41
|
-
Requires-Dist: attrs (>=23.1,<25.0)
|
|
39
|
+
Requires-Dist: attrs (>=23.1,<25.0)
|
|
40
|
+
Requires-Dist: audioop-lts (>=0.2.2,<0.3.0) ; python_version >= "3.13"
|
|
41
|
+
Requires-Dist: aws-msk-iam-sasl-signer-python (>=1.0.2,<1.1.0)
|
|
42
42
|
Requires-Dist: azure-identity (>=1.24.0,<1.25.0)
|
|
43
|
-
Requires-Dist: azure-storage-blob (>=12.26.0,<12.27.0)
|
|
43
|
+
Requires-Dist: azure-storage-blob (>=12.26.0,<12.27.0)
|
|
44
44
|
Requires-Dist: boto3 (>=1.40.21,<1.41.0)
|
|
45
|
-
Requires-Dist: certifi (>=2024.07.04)
|
|
45
|
+
Requires-Dist: certifi (>=2024.07.04)
|
|
46
46
|
Requires-Dist: colorama (>=0.4.6,<0.5.0) ; sys_platform == "win32"
|
|
47
|
-
Requires-Dist: colorclass (>=2.2,<2.3)
|
|
48
|
-
Requires-Dist: coloredlogs (>=15,<16)
|
|
49
|
-
Requires-Dist: colorhash (>=2.0,<2.1.0)
|
|
50
|
-
Requires-Dist: confluent-kafka (>=2.11.0,<3.0.0)
|
|
51
|
-
Requires-Dist: cryptography (>=45.0.6,<45.1.0)
|
|
52
|
-
Requires-Dist: cvg-python-sdk (>=0.5.1,<0.6.0)
|
|
47
|
+
Requires-Dist: colorclass (>=2.2,<2.3)
|
|
48
|
+
Requires-Dist: coloredlogs (>=15,<16)
|
|
49
|
+
Requires-Dist: colorhash (>=2.0,<2.1.0)
|
|
50
|
+
Requires-Dist: confluent-kafka (>=2.11.0,<3.0.0)
|
|
51
|
+
Requires-Dist: cryptography (>=45.0.6,<45.1.0)
|
|
52
|
+
Requires-Dist: cvg-python-sdk (>=0.5.1,<0.6.0) ; extra == "full" or extra == "channels"
|
|
53
53
|
Requires-Dist: dask (>=2024.8.0,<2024.9.0)
|
|
54
54
|
Requires-Dist: demoji (>=1.1.0,<2.0.0)
|
|
55
55
|
Requires-Dist: diskcache (>=5.6.3,<5.7.0)
|
|
56
|
-
Requires-Dist: dnspython (==2.6.1)
|
|
56
|
+
Requires-Dist: dnspython (==2.6.1)
|
|
57
57
|
Requires-Dist: faiss-cpu (>=1.11.0,<1.12.0)
|
|
58
|
-
Requires-Dist: fbmessenger (>=6.0.0,<6.1.0)
|
|
59
|
-
Requires-Dist: github3.py (>=3.2.0,<3.3.0) ; extra == "gh-release-notes"
|
|
58
|
+
Requires-Dist: fbmessenger (>=6.0.0,<6.1.0) ; extra == "full" or extra == "channels"
|
|
59
|
+
Requires-Dist: github3.py (>=3.2.0,<3.3.0) ; extra == "gh-release-notes"
|
|
60
60
|
Requires-Dist: gitpython (>=3.1.41,<3.2.0) ; extra == "full"
|
|
61
|
-
Requires-Dist: gliner (>=0.2.20,<0.3.0) ; extra == "
|
|
61
|
+
Requires-Dist: gliner (>=0.2.20,<0.3.0) ; extra == "full" or extra == "pii"
|
|
62
62
|
Requires-Dist: google-auth (>=2.40.3,<2.41.0)
|
|
63
|
-
Requires-Dist: google-cloud-storage (>=2.14.0,<2.15.0)
|
|
63
|
+
Requires-Dist: google-cloud-storage (>=2.14.0,<2.15.0)
|
|
64
64
|
Requires-Dist: hvac (>=2.3.0,<2.4.0)
|
|
65
65
|
Requires-Dist: importlib-metadata (>=8.5.0,<8.6.0)
|
|
66
66
|
Requires-Dist: importlib-resources (>=6.5.2,<7.0.0)
|
|
67
|
-
Requires-Dist: jieba (>=0.42.1,<0.43) ; extra == "jieba" or extra == "full"
|
|
68
|
-
Requires-Dist: jinja2 (>=3.1.6,<3.2.0)
|
|
69
|
-
Requires-Dist: jsonpatch (>=1.33,<2.0)
|
|
67
|
+
Requires-Dist: jieba (>=0.42.1,<0.43) ; extra == "jieba" or extra == "full" or extra == "nlu"
|
|
68
|
+
Requires-Dist: jinja2 (>=3.1.6,<3.2.0)
|
|
69
|
+
Requires-Dist: jsonpatch (>=1.33,<2.0)
|
|
70
70
|
Requires-Dist: jsonpickle (>=3.3.0,<3.4)
|
|
71
71
|
Requires-Dist: jsonschema (>=4.22)
|
|
72
|
-
Requires-Dist:
|
|
73
|
-
Requires-Dist: langchain
|
|
72
|
+
Requires-Dist: keras (==2.14.0) ; (python_version < "3.12") and (extra == "full" or extra == "nlu")
|
|
73
|
+
Requires-Dist: langchain (>=0.2.17,<0.3.0) ; python_version < "3.12"
|
|
74
|
+
Requires-Dist: langchain (>=0.3.27,<0.4.0) ; python_version >= "3.12"
|
|
75
|
+
Requires-Dist: langchain-community (>=0.2.19,<0.3.0) ; python_version < "3.12"
|
|
76
|
+
Requires-Dist: langchain-community (>=0.3.29,<0.4.0) ; python_version >= "3.12"
|
|
74
77
|
Requires-Dist: langcodes (>=3.5.0,<4.0.0)
|
|
75
78
|
Requires-Dist: litellm (>=1.69.0,<1.70.0)
|
|
76
79
|
Requires-Dist: matplotlib (>=3.9.4,<3.10.0)
|
|
77
|
-
Requires-Dist: mattermostwrapper (>=2.2,<2.3) ; extra == "full"
|
|
78
|
-
Requires-Dist: mcp (>=1.
|
|
79
|
-
Requires-Dist:
|
|
80
|
-
Requires-Dist:
|
|
81
|
-
Requires-Dist:
|
|
80
|
+
Requires-Dist: mattermostwrapper (>=2.2,<2.3) ; extra == "full" or extra == "channels"
|
|
81
|
+
Requires-Dist: mcp (>=1.12.0,<1.13.0)
|
|
82
|
+
Requires-Dist: mitie (>=0.7.36,<0.8.0) ; extra == "full" or extra == "nlu"
|
|
83
|
+
Requires-Dist: networkx (>=3.1,<3.2)
|
|
84
|
+
Requires-Dist: numpy (>=1.23.5,<2.2.0)
|
|
85
|
+
Requires-Dist: onnxruntime (==1.22.1) ; extra == "full" or extra == "pii"
|
|
82
86
|
Requires-Dist: openai (>=1.68.2,<1.69.0)
|
|
83
|
-
Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
|
|
84
|
-
Requires-Dist: opentelemetry-api (>=1.
|
|
85
|
-
Requires-Dist: opentelemetry-
|
|
86
|
-
Requires-Dist: opentelemetry-
|
|
87
|
-
Requires-Dist:
|
|
88
|
-
Requires-Dist:
|
|
89
|
-
Requires-Dist:
|
|
87
|
+
Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
|
|
88
|
+
Requires-Dist: opentelemetry-api (>=1.16.0,<1.17.0) ; python_version < "3.12"
|
|
89
|
+
Requires-Dist: opentelemetry-api (>=1.33.0,<1.34.0) ; python_version >= "3.12"
|
|
90
|
+
Requires-Dist: opentelemetry-exporter-otlp (>=1.16.0,<1.17.0) ; python_version < "3.12"
|
|
91
|
+
Requires-Dist: opentelemetry-exporter-otlp (>=1.33.0,<1.34.0) ; python_version >= "3.12"
|
|
92
|
+
Requires-Dist: opentelemetry-sdk (>=1.16.0,<1.17.0) ; python_version < "3.12"
|
|
93
|
+
Requires-Dist: opentelemetry-sdk (>=1.33.0,<1.34.0) ; python_version >= "3.12"
|
|
94
|
+
Requires-Dist: packaging (>=23.2,<23.3)
|
|
95
|
+
Requires-Dist: pep440-version-utils (>=1.1.0,<1.2.0) ; python_version < "3.13"
|
|
96
|
+
Requires-Dist: pluggy (>=1.2.0,<2.0.0)
|
|
90
97
|
Requires-Dist: portalocker (>=2.7.0,<3.0.0)
|
|
91
|
-
Requires-Dist: prompt-toolkit (>=3.0.28,<3.0.29)
|
|
92
|
-
Requires-Dist: protobuf (>=
|
|
98
|
+
Requires-Dist: prompt-toolkit (>=3.0.28,<3.0.29)
|
|
99
|
+
Requires-Dist: protobuf (>=4.25.8,<6.0.0)
|
|
93
100
|
Requires-Dist: psutil (>=5.9.5,<6.0.0)
|
|
94
|
-
Requires-Dist: psycopg2-binary (>=2.9.10,<2.10.0)
|
|
95
|
-
Requires-Dist: pydot (>=1.4,<1.5)
|
|
101
|
+
Requires-Dist: psycopg2-binary (>=2.9.10,<2.10.0)
|
|
102
|
+
Requires-Dist: pydot (>=1.4,<1.5)
|
|
96
103
|
Requires-Dist: pykwalify (>=1.8,<1.9)
|
|
97
|
-
Requires-Dist: pymilvus (>=2.
|
|
104
|
+
Requires-Dist: pymilvus (>=2.4.1,<2.4.2) ; python_version < "3.12"
|
|
105
|
+
Requires-Dist: pymilvus (>=2.6.1,<3.0.0) ; python_version >= "3.12"
|
|
98
106
|
Requires-Dist: pymongo (>=4.10.1,<4.11.0)
|
|
99
107
|
Requires-Dist: pypred (>=0.4.0,<0.5.0)
|
|
100
|
-
Requires-Dist: python-dateutil (>=2.8.2,<2.9.0)
|
|
108
|
+
Requires-Dist: python-dateutil (>=2.8.2,<2.9.0)
|
|
101
109
|
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
|
102
|
-
Requires-Dist: python-engineio (>=4.12.2,<4.13.0)
|
|
110
|
+
Requires-Dist: python-engineio (>=4.12.2,<4.13.0)
|
|
103
111
|
Requires-Dist: python-keycloak (>=5.8.1,<5.9.0)
|
|
104
112
|
Requires-Dist: python-socketio (>=5.13,<6)
|
|
105
|
-
Requires-Dist: pytz (>=2022.7.1,<2023.0)
|
|
106
|
-
Requires-Dist: pyyaml (>=6.0.2,<6.1.0)
|
|
107
|
-
Requires-Dist: qdrant-client (>=1.9.1,<1.10.0)
|
|
113
|
+
Requires-Dist: pytz (>=2022.7.1,<2023.0)
|
|
114
|
+
Requires-Dist: pyyaml (>=6.0.2,<6.1.0)
|
|
115
|
+
Requires-Dist: qdrant-client (>=1.9.1,<1.10.0)
|
|
108
116
|
Requires-Dist: questionary (>=1.10.0,<2.1.0)
|
|
109
117
|
Requires-Dist: randomname (>=0.2.1,<0.3.0)
|
|
110
|
-
Requires-Dist: rasa-sdk (==3.14.0.
|
|
111
|
-
Requires-Dist: redis (>=4.6.0,<6.0)
|
|
118
|
+
Requires-Dist: rasa-sdk (==3.14.0.dev7)
|
|
119
|
+
Requires-Dist: redis (>=4.6.0,<6.0)
|
|
112
120
|
Requires-Dist: regex (>=2024.7.24,<2024.8.0)
|
|
113
|
-
Requires-Dist: requests (>=2.32.5,<2.33.0)
|
|
121
|
+
Requires-Dist: requests (>=2.32.5,<2.33.0)
|
|
114
122
|
Requires-Dist: rich (>=13.4.2,<14.0.0)
|
|
115
|
-
Requires-Dist: rocketchat_API (>=1.32.0,<1.33.0) ; extra == "full"
|
|
116
|
-
Requires-Dist: ruamel.yaml (>=0.17.21,<0.17.22)
|
|
123
|
+
Requires-Dist: rocketchat_API (>=1.32.0,<1.33.0) ; extra == "full" or extra == "channels"
|
|
124
|
+
Requires-Dist: ruamel.yaml (>=0.17.21,<0.17.22)
|
|
117
125
|
Requires-Dist: safetensors (>=0.4.5,<0.5.0)
|
|
118
|
-
Requires-Dist: sanic (>=22.12,<22.13)
|
|
119
|
-
Requires-Dist: sanic-cors (>=2.2.0,<2.3.0)
|
|
126
|
+
Requires-Dist: sanic (>=22.12,<22.13)
|
|
127
|
+
Requires-Dist: sanic-cors (>=2.2.0,<2.3.0)
|
|
120
128
|
Requires-Dist: sanic-jwt (>=1.8.0,<2.0.0)
|
|
121
|
-
Requires-Dist: sanic-openapi (>=21.12.0,<22.0.0)
|
|
122
|
-
Requires-Dist: sanic-routing (>=22.8.0,<23.0.0)
|
|
123
|
-
Requires-Dist: scikit-learn (>=1.6.1,<1.7.0)
|
|
129
|
+
Requires-Dist: sanic-openapi (>=21.12.0,<22.0.0)
|
|
130
|
+
Requires-Dist: sanic-routing (>=22.8.0,<23.0.0)
|
|
131
|
+
Requires-Dist: scikit-learn (>=1.6.1,<1.7.0)
|
|
124
132
|
Requires-Dist: scipy (>=1.13.1,<1.14.0) ; python_version < "3.12"
|
|
125
133
|
Requires-Dist: scipy (>=1.14.0,<1.15.0) ; python_version >= "3.12"
|
|
126
|
-
Requires-Dist: sentencepiece (>=0.1.99,<0.2.0) ; (python_version < "3.12") and (extra == "
|
|
127
|
-
Requires-Dist: sentry-sdk (>=2.8.0,<3)
|
|
128
|
-
Requires-Dist: setuptools (>=78.1.1,<78.2.0)
|
|
129
|
-
Requires-Dist: sklearn-crfsuite (>=0.5.0,<0.6.0)
|
|
130
|
-
Requires-Dist: skops (>=0.13.0,<0.14.0) ; extra == "
|
|
131
|
-
Requires-Dist: slack-sdk (>=3.36.0,<3.37.0)
|
|
132
|
-
Requires-Dist: spacy (>=3.5.4,<4.0.0) ; extra == "spacy" or extra == "full"
|
|
134
|
+
Requires-Dist: sentencepiece (>=0.1.99,<0.2.0) ; (python_version < "3.12") and (extra == "transformers" or extra == "full" or extra == "full" or extra == "nlu")
|
|
135
|
+
Requires-Dist: sentry-sdk (>=2.8.0,<3)
|
|
136
|
+
Requires-Dist: setuptools (>=78.1.1,<78.2.0)
|
|
137
|
+
Requires-Dist: sklearn-crfsuite (>=0.5.0,<0.6.0) ; extra == "full" or extra == "nlu"
|
|
138
|
+
Requires-Dist: skops (>=0.13.0,<0.14.0) ; extra == "full" or extra == "nlu"
|
|
139
|
+
Requires-Dist: slack-sdk (>=3.36.0,<3.37.0) ; extra == "full" or extra == "channels"
|
|
140
|
+
Requires-Dist: spacy (>=3.5.4,<4.0.0) ; extra == "spacy" or extra == "full" or extra == "nlu"
|
|
133
141
|
Requires-Dist: structlog (>=25.4.0,<25.5.0)
|
|
134
142
|
Requires-Dist: structlog-sentry (>=2.0.3,<2.1.0)
|
|
135
143
|
Requires-Dist: tarsafe (>=0.0.5,<0.0.6)
|
|
136
|
-
Requires-Dist: tenacity (>=8.4.1,<8.5.0)
|
|
137
|
-
Requires-Dist: tensorflow (
|
|
138
|
-
Requires-Dist: tensorflow-
|
|
139
|
-
Requires-Dist: tensorflow-
|
|
140
|
-
Requires-Dist: tensorflow-io-gcs-filesystem (==0.
|
|
141
|
-
Requires-Dist: tensorflow-io-gcs-filesystem (==0.34) ; (sys_platform == "
|
|
142
|
-
Requires-Dist: tensorflow-
|
|
143
|
-
Requires-Dist: tensorflow-
|
|
144
|
+
Requires-Dist: tenacity (>=8.4.1,<8.5.0)
|
|
145
|
+
Requires-Dist: tensorflow (==2.14.1) ; ((sys_platform != "darwin" or platform_machine != "arm64") and python_version < "3.12") and (extra == "full" or extra == "nlu")
|
|
146
|
+
Requires-Dist: tensorflow-cpu-aws (==2.14.1) ; (sys_platform == "linux" and (platform_machine == "arm64" or platform_machine == "aarch64") and python_version < "3.12") and (extra == "full" or extra == "nlu")
|
|
147
|
+
Requires-Dist: tensorflow-intel (==2.14.1) ; (sys_platform == "win32" and python_version < "3.12") and (extra == "full" or extra == "nlu")
|
|
148
|
+
Requires-Dist: tensorflow-io-gcs-filesystem (==0.31) ; (sys_platform == "win32" and python_version < "3.12") and (extra == "full" or extra == "nlu")
|
|
149
|
+
Requires-Dist: tensorflow-io-gcs-filesystem (==0.34) ; (sys_platform == "darwin" and platform_machine != "arm64" and python_version < "3.12") and (extra == "full" or extra == "nlu")
|
|
150
|
+
Requires-Dist: tensorflow-io-gcs-filesystem (==0.34) ; (sys_platform == "linux" and python_version < "3.12") and (extra == "full" or extra == "nlu")
|
|
151
|
+
Requires-Dist: tensorflow-macos (==2.14.1) ; (sys_platform == "darwin" and platform_machine == "arm64" and python_version < "3.12") and (extra == "full" or extra == "nlu")
|
|
152
|
+
Requires-Dist: tensorflow-metal (==1.1.0) ; (sys_platform == "darwin" and platform_machine == "arm64" and python_version < "3.12") and (extra == "full" or extra == "metal" or extra == "nlu")
|
|
153
|
+
Requires-Dist: tensorflow-text (==2.14.0) ; (sys_platform != "win32" and platform_machine != "arm64" and platform_machine != "aarch64" and python_version < "3.12") and (extra == "full" or extra == "nlu")
|
|
154
|
+
Requires-Dist: tensorflow_hub (>=0.13.0,<0.14.0) ; (python_version < "3.12") and (extra == "full" or extra == "nlu")
|
|
144
155
|
Requires-Dist: terminaltables (>=3.1.10,<3.2.0)
|
|
145
|
-
Requires-Dist: tf-keras (>=2.15.0,<3.0.0) ; (python_version < "3.12") and (extra == "tensorflow" or extra == "full")
|
|
146
156
|
Requires-Dist: tiktoken (>=0.9.0,<0.10.0)
|
|
147
|
-
Requires-Dist: tqdm (>=4.66.2,<5.0.0)
|
|
148
|
-
Requires-Dist: transformers (>=4.38.2,<4.39.0) ; extra == "
|
|
149
|
-
Requires-Dist: twilio (>=9.7.2,<9.8.0)
|
|
150
|
-
Requires-Dist: types-protobuf (==4.25.0.20240417)
|
|
151
|
-
Requires-Dist: typing-extensions (>=4.7.1,<5.0.0)
|
|
157
|
+
Requires-Dist: tqdm (>=4.66.2,<5.0.0)
|
|
158
|
+
Requires-Dist: transformers (>=4.38.2,<4.39.0) ; extra == "transformers" or extra == "full" or extra == "nlu"
|
|
159
|
+
Requires-Dist: twilio (>=9.7.2,<9.8.0) ; extra == "full" or extra == "channels"
|
|
160
|
+
Requires-Dist: types-protobuf (==4.25.0.20240417)
|
|
161
|
+
Requires-Dist: typing-extensions (>=4.7.1,<5.0.0)
|
|
152
162
|
Requires-Dist: typing-utils (>=0.1.0,<0.2.0)
|
|
153
|
-
Requires-Dist: ujson (>=5.8,<6.0)
|
|
154
|
-
Requires-Dist: webexteamssdk (>=1.6.1,<1.7.0)
|
|
155
|
-
Requires-Dist: websockets (>=10.4,<11.0)
|
|
163
|
+
Requires-Dist: ujson (>=5.8,<6.0)
|
|
164
|
+
Requires-Dist: webexteamssdk (>=1.6.1,<1.7.0) ; extra == "full" or extra == "channels"
|
|
165
|
+
Requires-Dist: websockets (>=10.4,<11.0)
|
|
156
166
|
Requires-Dist: werkzeug (>=3.0.0,<3.1.0)
|
|
157
|
-
Requires-Dist: wheel (>=0.40.0)
|
|
167
|
+
Requires-Dist: wheel (>=0.40.0)
|
|
158
168
|
Project-URL: Documentation, https://rasa.com/docs
|
|
159
169
|
Project-URL: Homepage, https://rasa.com
|
|
160
170
|
Project-URL: Repository, https://github.com/rasahq/rasa
|