Releases: treethought/flask-assistant
Releases · treethought/flask-assistant
Fix for missing response module on 3.6
v0.5.1 v0.5.1 - add response module to setup packages #147 (#148)
Various fixes, media response, dialogflow messenger
- Dynamic fetching of google public key for google sign in
- Media responses
- initial support for Dialogflow Messenger integration
Dialogflow V2 Support
This release provides initial support for Dialogflow V2 agents.
The V1 API is no longer supported as of flask-assistant v0.3.0.
Migrating your agent and existing webhooks to V2 requires:
- Select
V2 API
under the API version section in the Dialogflow console settings - Initialize the
Assistant
class with your Google Cloud project ID (found in the settings page) as shown below
app = Flask(__name__)
assist = Assistant(app, project_id='YOUR_PROJECT_ID')
Rich Messages for Actions on Google
- Provides card, list, carousel, suggest, and link_out responses
- Integrates with Google Assistant
Support For Flask Blueprints
v0.2.6 Support for blueprints