Skip to content

Commit

Permalink
merged dm2
Browse files Browse the repository at this point in the history
  • Loading branch information
tmbo committed Sep 18, 2023
2 parents 2b48529 + 4a71f91 commit bf843e3
Show file tree
Hide file tree
Showing 78 changed files with 224 additions and 401 deletions.
201 changes: 0 additions & 201 deletions LICENSE.txt

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,7 @@ thus validating compatibility between Rasa and Rasa X/Enterprise.
Please refer to the [Rasa Product Release and Maintenance Policy](https://rasa.com/rasa-product-release-and-maintenance-policy/) page.

## License
Licensed under the Apache License, Version 2.0.
Copyright 2022 Rasa Technologies GmbH. [Copy of the license](LICENSE.txt).
Copyright 2022 Rasa Technologies GmbH.

A list of the Licenses of the dependencies of the project can be found at
the bottom of the
Expand Down
2 changes: 1 addition & 1 deletion data/graph_schemas/default_config_core_predict_schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ nodes:
needs:
tracker: __tracker__
flows: flows_provider
uses: rasa.cdu.processor.command_processor_component.CommandProcessorComponent
uses: rasa.dialogue_understanding.processor.command_processor_component.CommandProcessorComponent
constructor_name: load
fn: execute_commands
config: { }
Expand Down
2 changes: 1 addition & 1 deletion data/graph_schemas/default_config_e2e_predict_schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ nodes:
needs:
tracker: __tracker__
flows: flows_provider
uses: rasa.cdu.processor.command_processor_component.CommandProcessorComponent
uses: rasa.dialogue_understanding.processor.command_processor_component.CommandProcessorComponent
constructor_name: load
fn: execute_commands
config: { }
Expand Down
2 changes: 1 addition & 1 deletion data/graph_schemas/default_config_predict_schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ nodes:
needs:
tracker: __tracker__
flows: flows_provider
uses: rasa.cdu.processor.command_processor_component.CommandProcessorComponent
uses: rasa.dialogue_understanding.processor.command_processor_component.CommandProcessorComponent
constructor_name: load
fn: execute_commands
config: { }
Expand Down
2 changes: 1 addition & 1 deletion data/graph_schemas/max_hist_config_predict_schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ nodes:
needs:
tracker: __tracker__
flows: flows_provider
uses: rasa.cdu.processor.command_processor_component.CommandProcessorComponent
uses: rasa.dialogue_understanding.processor.command_processor_component.CommandProcessorComponent
constructor_name: load
fn: execute_commands
config: { }
Expand Down
2 changes: 1 addition & 1 deletion data/test_config/graph_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ predict_schema:
needs:
tracker: __tracker__
flows: flows_provider
uses: rasa.cdu.processor.command_processor_component.CommandProcessorComponent
uses: rasa.dialogue_understanding.processor.command_processor_component.CommandProcessorComponent
constructor_name: load
fn: execute_commands
config: { }
Expand Down
4 changes: 1 addition & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,17 @@ exclude = "((.eggs | .git | .pytest_cache | build | dist))"

[tool.poetry]
name = "rasa"
version = "3.8.0a6"
version = "3.8.0a7"
description = "Open source machine learning framework to automate text- and voice-based conversations: NLU, dialogue management, connect to Slack, Facebook, and more - Create chatbots and voice assistants"
authors = [ "Rasa Technologies GmbH <[email protected]>",]
maintainers = [ "Tom Bocklisch <[email protected]>",]
homepage = "https://rasa.com"
repository = "https://github.com/rasahq/rasa"
documentation = "https://rasa.com/docs"
classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Topic :: Software Development :: Libraries",]
classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Topic :: Software Development :: Libraries",]
keywords = [ "nlp", "machine-learning", "machine-learning-library", "bot", "bots", "botkit", "rasa conversational-agents", "conversational-ai", "chatbot", "chatbot-framework", "bot-framework",]
include = [ "LICENSE.txt", "README.md", "rasa/shared/core/training_data/visualization.html", "rasa/cli/default_config.yml", "rasa/shared/importers/*", "rasa/utils/schemas/*", "rasa/keys", "rasa/core/channels/chat.html", "rasa/cdu/classifiers/command_prompt_template.jinja2",]
include = [ "LICENSE.txt", "README.md", "rasa/shared/core/training_data/visualization.html", "rasa/cli/default_config.yml", "rasa/shared/importers/*", "rasa/utils/schemas/*", "rasa/keys", "rasa/core/channels/chat.html", "rasa/dialogue_understanding/classifiers/command_prompt_template.jinja2",]
readme = "README.md"
license = "Apache-2.0"
[[tool.poetry.source]]
name = "internal repository mirroring psycopg binary for macos"
url = "https://europe-west3-python.pkg.dev/rasa-releases/psycopg-binary/simple/"
Expand Down
29 changes: 0 additions & 29 deletions rasa/cdu/commands/__init__.py

This file was deleted.

4 changes: 0 additions & 4 deletions rasa/cdu/generator/__init__.py

This file was deleted.

17 changes: 0 additions & 17 deletions rasa/cdu/stack/frames/__init__.py

This file was deleted.

6 changes: 3 additions & 3 deletions rasa/core/actions/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@
def default_actions(action_endpoint: Optional[EndpointConfig] = None) -> List["Action"]:
"""List default actions."""
from rasa.core.actions.two_stage_fallback import TwoStageFallbackAction
from rasa.cdu.patterns.correction import ActionCorrectFlowSlot
from rasa.cdu.patterns.cancel import ActionCancelFlow
from rasa.cdu.patterns.clarify import ActionClarifyFlows
from rasa.dialogue_understanding.patterns.correction import ActionCorrectFlowSlot
from rasa.dialogue_understanding.patterns.cancel import ActionCancelFlow
from rasa.dialogue_understanding.patterns.clarify import ActionClarifyFlows

return [
ActionListen(),
Expand Down
4 changes: 2 additions & 2 deletions rasa/core/actions/flow_trigger_action.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from typing import Any, Dict, Optional, Text, List

import structlog
from rasa.cdu.stack.dialogue_stack import DialogueStack
from rasa.cdu.stack.frames.flow_stack_frame import (
from rasa.dialogue_understanding.stack.dialogue_stack import DialogueStack
from rasa.dialogue_understanding.stack.frames.flow_stack_frame import (
FlowStackFrameType,
UserFlowStackFrame,
)
Expand Down
2 changes: 1 addition & 1 deletion rasa/core/nlg/response.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import copy
import logging
from rasa.cdu.stack.dialogue_stack import DialogueStack
from rasa.dialogue_understanding.stack.dialogue_stack import DialogueStack
from rasa.core.constants import DEFAULT_TEMPLATE_ENGINE, TEMPLATE_ENGINE_CONFIG_KEY

from rasa.shared.core.trackers import DialogueStateTracker
Expand Down
Loading

0 comments on commit bf843e3

Please sign in to comment.