-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed cdu -> dialogue understanding
- Loading branch information
Showing
74 changed files
with
218 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
from rasa.dialogue_understanding.commands.command import Command | ||
from rasa.dialogue_understanding.commands.free_form_answer_command import ( | ||
FreeFormAnswerCommand, | ||
) | ||
from rasa.dialogue_understanding.commands.cancel_flow_command import CancelFlowCommand | ||
from rasa.dialogue_understanding.commands.knowledge_answer_command import ( | ||
KnowledgeAnswerCommand, | ||
) | ||
from rasa.dialogue_understanding.commands.chit_chat_answer_command import ( | ||
ChitChatAnswerCommand, | ||
) | ||
from rasa.dialogue_understanding.commands.can_not_handle_command import ( | ||
CannotHandleCommand, | ||
) | ||
from rasa.dialogue_understanding.commands.clarify_command import ClarifyCommand | ||
from rasa.dialogue_understanding.commands.error_command import ErrorCommand | ||
from rasa.dialogue_understanding.commands.set_slot_command import SetSlotCommand | ||
from rasa.dialogue_understanding.commands.start_flow_command import StartFlowCommand | ||
from rasa.dialogue_understanding.commands.human_handoff_command import ( | ||
HumanHandoffCommand, | ||
) | ||
from rasa.dialogue_understanding.commands.correct_slots_command import ( | ||
CorrectSlotsCommand, | ||
CorrectedSlot, | ||
) | ||
|
||
|
||
__all__ = [ | ||
"Command", | ||
"FreeFormAnswerCommand", | ||
"CancelFlowCommand", | ||
"KnowledgeAnswerCommand", | ||
"ChitChatAnswerCommand", | ||
"CannotHandleCommand", | ||
"ClarifyCommand", | ||
"ErrorCommand", | ||
"SetSlotCommand", | ||
"StartFlowCommand", | ||
"HumanHandoffCommand", | ||
"CorrectSlotsCommand", | ||
"CorrectedSlot", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../cdu/commands/free_form_answer_command.py → ...ding/commands/free_form_answer_command.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from rasa.dialogue_understanding.generator.command_generator import CommandGenerator | ||
from rasa.dialogue_understanding.generator.llm_command_generator import ( | ||
LLMCommandGenerator, | ||
) | ||
|
||
__all__ = ["CommandGenerator", "LLMCommandGenerator"] |
Oops, something went wrong.