-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix custom messenger interface #206
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this tutorial needs a rework. It has some issues (e.g. every dialog with this interface shares the same context).
I think it would be best if we remove this tutorial and add CallbackMessengerInterface
and a docstring about messenger interfaces in the fastapi
tutorial. (also add CallbackMessengerInterface
in the websocket_chat
tutorial)
# Conflicts: # tutorials/pipeline/6_custom_messenger_interface.py
# Conflicts: # tutorials/messengers/web_api_interface/1_fastapi.py # tutorials/messengers/web_api_interface/2_websocket_chat.py # tutorials/pipeline/6_custom_messenger_interface.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you do a review of my changes and squash-merge if all good?
Release v0.6.3 # Release notes - Update README to make it more concise and include reasons to use DFF (#281) - Add [DFF optimization guide](https://deeppavlov.github.io/dialog_flow_framework/user_guides/optimization_guide.html) (#236) - Add documentation section description for the [index page](https://deeppavlov.github.io/dialog_flow_framework/index.html) (#281) - Add async method [dff.messengers.common.interface.CallbackMessengerInterface.on_request_async](https://deeppavlov.github.io/dialog_flow_framework/apiref/dff.messengers.common.interface.html#dff.messengers.common.interface.CallbackMessengerInterface.on_request_async) (#206) - Move information about messenger interfaces from `pipeline.6_custom_messenger_interface` (removed) to [messengers.web_api_interface.1_fastapi](https://deeppavlov.github.io/dialog_flow_framework/tutorials/tutorials.messengers.web_api_interface.1_fastapi.html) (#206) - Fix cross-references in [dff.messengers.common.interface](https://deeppavlov.github.io/dialog_flow_framework/apiref/dff.messengers.common.interface.html) (#206) - Update tutorials to fit into documentation without side-scrolling (#241)
Description
move custom messenger interface tutor to web_api folder; add form; modify web application logic
Checklist