dialog_flowtter 0.3.0-nullsafety.0 copy "dialog_flowtter: ^0.3.0-nullsafety.0" to clipboard
dialog_flowtter: ^0.3.0-nullsafety.0 copied to clipboard

outdated

A Flutter implementation of DialogFlow improved. Get your chatbots ready in no time.

logo

A Flutter implementation of DialogFlow, improved.

Build your integrations with DialogFlow easier and faster.

Pub Package Star on GitHub style: effective dart MIT License MIT License

About the package #

Dialog Flow on Flutter, now with Null Safety support!

DialogFlowtter is a package that helps you to build integrations with DialogFlow easier and faster.

  • Authenticate with Google Auth Json
  • Get an authenticated http client so you can talk with your DialogFlow agent
  • Get access to all DialogFlow responses and models easily
  • Inspect what values a DialogFlow response could have

Why DialogFlowtter #

The problem with the current DialogFlow integration packages that are available in Pub is that they're:

  • Completely abandoned
  • Not well documented
  • Lack functionality
  • Lack flexibility

This one is intended to solve those problems and add more features that I've seen the users want. Check the TO-DO section for more info on that.

Platform support #

This package is fully supported in Android, iOS and Web. We have plans on testing and adding support for Windows, Linux and MacOS as this platforms mature in the Flutter SDK.

Installation #

  1. Add the package to your flutter dependencies in you pubspec.yaml:

    dependencies:
        dialog_flowtter: ^0.3.0-nullsafety.0
    
  2. Make sure you add your dialog_flow_auth.json to the pubspec.yaml assets:

     flutter:
         uses-material-design: true
         assets:
             - assets/dialog_flow_auth.json
    
  3. Add your DialogFlow Auth JSON to the assets folder and rename it to dialog_flow_auth.json

You can change the name and Path of your JSON later in the code. Just make sure to use the same one in the pubspec.yaml

  1. Get the packages from:

    flutter packages get
    

Get your keys #

Refer to Create a service account and download the private key file

How to use #

Retrieve your keys #

You can set your DialogFlow authentication keys in various ways.

  1. From an in-memory JSON
DialogAuthCredentials credentials = DialogAuthCredentials.fromJson(json);
  1. From a JSON file
DialogAuthCredentials credentials = await DialogAuthCredentials.fromFile(path);

This method is asynchronous!

  1. From the Network
DialogAuthCredentials credentials = await DialogAuthCredentials.fromNetwork(url);

This method is asynchronous!

Then, pass your credentials to you DialogFlowtter class

DialogFlowtter instance = DialogFlowtter(
  credentials: credentials,
);

You can also use the shorthand expression of these methods when instanciating the DialogFlowtter class

DialogFlowtter jsonInstance = DialogFlowtter.fromJson(json);

//! async
DialogFlowtter fileInstance = await DialogFlowtter.fromFile(path);

//! async
DialogFlowtter networkInstance = await DialogFlowtter.fromNetwork(url);

Detect intent #

One of the core features of DialogFlow is to detect what a person is trying to say. You can do that by detecting an intent that you have defined in your DialogFlow console

  1. Create an instance of DialogFlowtter and set the sessionId that will be used to identify the current conversation of the user with DialogFlow.

It's highly recommended that you use a different sessionId for every conversation that the user establishes with the Assistant

  final DialogFlowtter dialogFlowtter = DialogFlowtter(
    credentials: credentials,
    sessionId: "YOUR_SESSION_ID_HERE",
  );
  1. Create a QueryInput where you can specify what data you want to send to DialogFlow.
  final QueryInput queryInput = QueryInput(
    text: TextInput(
      text: "Hi. How are you?",
      languageCode: "en",
    ),
  );
  1. Send your input to DialogFlow through the detectIntent function.
  DetectIntentResponse response = await dialogFlowtter.detectIntent(
    queryInput: queryInput,
  );

You can check the code for more info on what info you can send and receive

Get the info from the intent #

You can access the info returned by DialogFlow from the DetectIntentResponse that the detectIntent function returns.

Get the text from the response #

  DetectIntentResponse response = await dialogFlowtter.detectIntent(
    queryInput: QueryInput(text: TextInput(text: "Hi")),
  );
  
  String? textResponse = response.text;

  print(textResponse); // Hi, how may I help you?

response.text returns null if there's no text returned by DialogFlow or if the first message returned it's not of type MessageType.text

Get the message from the response #

See Message for more info on what the model properties can be

  DetectIntentResponse response = await dialogFlowtter.detectIntent(
    queryInput: QueryInput(text: TextInput(text: "Hi")),
  );
  
  Message? messageResponse = response.message;

Get audio from the response #

  1. Set the audio configuration in the detectIntent function
  DetectIntentResponse response = await dialogFlowtter.detectIntent(
    queryInput: QueryInput(text: TextInput(text: "Hi")),
    
    // You can set your own configuration with the OutputAudioConfig class
    audioConfig: OutputAudioConfig(),
  );
  1. Retrieve the audio from the response
  String? audioBase64 = response.outputAudio;
  Uint8List? audioBytes = response.outputAudioBytes;
  1. Play the audio response with your favorite plugin!

Check Soundpool for playing the audio from memory

Get the response type of the message #

  MessageType? messageType = response.message.type;

  print(messageType); /// MessageType.card

response.message returns null if there's no messages returned by DialogFlow

Be sure to dispose the instance when you're done using it #

  dialogFlowtter.dispose();

Change the project id #

You can change the Project ID that DialogFlowtter will use to find your intents in DialogFlow.

  1. Create an instance of DialogFlowtter
  final DialogFlowtter dialogFlowtter = DialogFlowtter(
    credentials: credentials,
  );
  1. Change the projectId prop of the instance;
  dialogFlowtter.projectId = "deimos-apps-0905";
  • Pro tip. You can do the exact same thing as above with the special Dart's cascade notation.

      final DialogFlowtter dialogFlowtter = DialogFlowtter(
        credentials: credentials,
      )..projectId = "deimos-apps-0905";
    

Make authenticated http requests to your DialogFlow project #

You can access the authenticated http client generated by the package by calling the client attribute in your instance.

Keep in mind that this can become null if you have disposed your instance before.

Create your own authenticated http client #

You can get an authenticated, auto refreshing http client with your custom json data if you call the static function

final credentials = DialogAuthCredentials.fromJson(yourJson);
final client = DialogFlowtter.getClient(credentials)

Keep in mind that this only authenticates with json provided by Google.

Check googleapis_auth for more info.

Further considerations #

Every time you instanciate DialogFlowtter, the class creates an authenticated http client, with the credentials obtained from the DialogFlow Auth JSON. Be sure to save this instance and reuse it to avoid memory leaks

Memory leaks #

Make sure to dispose your DialogFlowtter instance whenever you're done using it. This makes sure to close the authenticated http client and all its StreamSubscriptions to avoid memory leaks.

Too many models #

We have coded almost every Dialog Flow model that you may need to use when implementing this package so you don't have to work with annoying Map<String, dynamic> objects. Feel free to ask for any model that is missing to be added to the package.

The models that were not coded are included as annoying Map<String, dynamic> and are tagged with the //? Create model if necessary.

TO-DO #

  • Add support for null safety
  • Add support for cards, images, etc.
  • Memory, file and remote auth JSON
  • Secure DialogFlow auth JSON
  • Support audio queries
  • Add a catalog of supported languages
  • Add direct access to common used attributes
  • Support use of custom HTTP Client

Starware #

DialogFlowtter is Starware.
This means you're free to use the project, as long as you star its GitHub repository.
Your appreciation makes us grow and glow up. ⭐

Contribute #

Your help is always appreciated.

You can contribute by checking our contributing guide or opening an issue.

56
likes
0
pub points
93%
popularity

Publisher

verified publisherdeimos.app

A Flutter implementation of DialogFlow improved. Get your chatbots ready in no time.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

equatable, flutter, googleapis_auth, http, json_annotation, meta

More

Packages that depend on dialog_flowtter