forked from deeppavlov/DeepPavlov
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Skills and agent moved to deprecated (deeppavlov#1040)
* feat: Flask was completely replaced by Fastapi - Alexa, Alice and ms_bot_framework modes now on FastAPI - Flask removed from requirements - Docs endpoint name was removed from REST server config file * feat: added async to riseapi model and probe endpoints and to alice * feat: added async to riseapi * docs: added license and docstrings to data models of Alice ans Alexa * refactor: skills and agent moved to utils.deprecated * fix: removed data_model files form Alice and Alexa * refactor: deprecated moved from utils to deeppavlov Aiml and rasa skills moved from deprecated * refactor: ms_bot's framework and alexa bots got parent class bot agent generator moved to bot parent class * feat: removed multi-instance bot option, run method moved to BaseBot * refactor: OutGateway class removed, methods put to ms_bot_framework conv * feat: bot attribute removed from ms_bot conversation class * feat: common parent class for msbot and alexa conversations timers moved to BaseConversation class * refactor: removed multiple sessions from ms_bot * ms_bot auth params moved to server config file * fix: type `redirect_root_do_docs` in server.server * refactor: removed `stateful` param from everywhere * feat: removed default_skill_wrap parameter from everywhere * feat: removed deprecated from Alexa connector * feat: alexa works * refactor: bots and conversations moved to utils.connector dir * refactor: Bot added to Alice (removed skills, agent) * refactor: removed deprecated structures from telegram connector * refactor: configs refactored, server code simplified * refactor: configs in bots and conversations * refactor: conversations, bots * refactor: dsl_skill moved from deprecated * refactor: DialoLogger removed from deprecated Dialog logging added to channel connectors * refatcor: removed deprecated components from not deprecated skills * refactor: Connectors docs and interfaces * fix: fixed ConnectionResetError for requests in one session * fix: fixed aiml and dsl tests removed unnecessary imports * refactor: deep.py, fix small typos * docs: added breaking changes for 0.7.0 * docs: added links to readme.md Co-Authored-By: Aleksei Lymar <[email protected]> * docs: changes in breaking changes * docs: removed irrelevant breaking change * fix: wrong argument parsing in deep.py * refactor: reduced line length
- Loading branch information
1 parent
2c4482d
commit 2420556
Showing
122 changed files
with
1,518 additions
and
1,953 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
Empty file.
Empty file.
Empty file.
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.
Empty file.
Empty file.
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
Empty file.
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,4 @@ | ||
from .agent import Agent, SkillWrapper | ||
from .filter import Filter | ||
from .processor import Processor | ||
from .rich_content import RichControl, RichMessage |
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.
File renamed without changes.
File renamed without changes.
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 @@ | ||
from .default_agent import DefaultAgent |
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 @@ | ||
from .ecommerce_agent import EcommerceAgent |
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 @@ | ||
from .transparent_filter import TransparentFilter |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from .default_rich_content_processor import DefaultRichContentWrapper | ||
from .highest_confidence_selector import HighestConfidenceSelector | ||
from .random_selector import RandomSelector |
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 @@ | ||
from .default_rich_content import Button, ButtonsFrame, PlainText |
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 @@ | ||
from .skill import Skill |
File renamed without changes.
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 @@ | ||
from .default_skill import DefaultStatelessSkill |
Oops, something went wrong.