flutter_dialogflow icon indicating copy to clipboard operation
flutter_dialogflow copied to clipboard

Flutter package for makes it easy to integrate dialogflow and support dialogflow v2

Results 31 flutter_dialogflow issues
Sort by recently updated
recently updated
newest added

Please upgrade the HTTP version it depend on I need the latest vesion ASAP

``` import 'package:flutter/material.dart'; import 'package:flutter_dialogflow/dialogflow_v2.dart'; class Home extends StatefulWidget { Home({Key key}) : super(key: key); @override _HomeState createState() => _HomeState(); } class _HomeState extends State { String query = "hi";...

When we try to include both http and flutter_dialogflow in same application, we are getting an version resolving issue.

Hi, Is there a way to store chat conversation in firestore ?

intentDetectionConfidence is coming inside query set in dialogflow v2.0 but in your code you reading intentDetectionConfidence as response.body['intentDetectionConfidence'] but you should read as response.body['queryResult']['intentDetectionConfidence'] or add intentDetectionConfidence in queryResult class....

[Dialogflow Doc](https://cloud.google.com/dialogflow/docs/reference/rest/v2/projects.agent.sessions/detectIntent#InputAudioConfig) > lib/v2/dialogflow_v2.dart (Line : 132) ``` String body = '{"queryInput":{"text":{"text":"$query","language_code":"$language"}}, "queryParams": $queryParams}'; ``` In that need to add input audio and audioConfig.

NoSuchMethodError: The method '[]' was called on null. I/flutter ( 4808): Receiver: null I/flutter ( 4808): Tried calling: []("queryText") above error is thrown when a input is sent through the...

hola que tal! primero dejame felicitarte por este gran tutorial sobre chatbots con flutter, es un muy buen trabajo. ahora quisiera preguntar , por qué la app cuando funciona en...