Skip to content

This repository provides instructions for integrating Google Gemini into Flutter apps using the Flutter_gemini package. Here is an example of creating a Gemini Chat Bot πŸ’¬ πŸ€– AI using Flutter. Thanks for your support ❀️

License

Notifications You must be signed in to change notification settings

ChunhThanhDe/Flutter_gemini_Chat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

31 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸš€ Integrating Gemini into Your Flutter Application

Create gemini robot πŸ’¬ chat bot πŸ€– with Flutter. Show some ❀️ and star ⭐ the repo if you liked it.

contact for work, mail: [email protected]

logo

GitHub stars GitHub forks GitHub watchers

Support me on LinkedIn

Buy Me A Coffee

πŸ“š Overview

Integrate Google's Gemini AI into your Flutter app with ease using the flutter_gemini package. This guide will help you enhance your app's functionality by leveraging Gemini's advanced AI features, including multilingual support, image and audio processing, and Natural Language Processing (NLP).

🌟 Key Features of Gemini

  • Stream Generate Content: Handle partial results with streaming without waiting for the complete response.
  • Text-only Input: Complete and summarize texts using NLP.
  • Text-and-Image Input: Use the gemini-pro-vision model for tasks involving both text and images.
  • Multi-Turn Conversations (Chat): Engage in dynamic conversations with follow-up questions.
  • Token Counting: Convert information into floating-point numbers.
  • Model Info: Retrieve details about the model, including version and input token limits.
  • EmbedContents and BatchEmbedContents: Transform information into numerical arrays for learning.

🏁 Implementation Steps

  1. Obtain an API Key πŸ”‘ Create an account at Google Gemini.

    • Click on "Get API Key,"

    • select a Google Cloud project,

    • and generate your API key.

    • Save this key for later use.

  2. Add Dependency πŸ“¦

    • Add the flutter_gemini package to your project by running:
      flutter pub add flutter_gemini
  3. Initialize Gemini βš™οΈ

    • In your main.dart file, initialize the Gemini package with your API key:
      void main() {
        Gemini.init(apiKey: 'YOUR_API_KEY_HERE');
        runApp(const MyApp());
      }
  4. Create an Instance and Make Requests πŸ€–

    • Use the following code to create an instance of flutter_gemini and handle text or image input:
      final _gemini = Gemini.instance;
      _gemini.textAndImage(
        text: 'Your query here',
        images: [imageFile.readAsBytesSync()],
      );
  5. Handle Responses πŸ”

    • Manage responses from Gemini with attributes such as FinishReason and SafetyRating:
      if (value?.finishReason != 'STOP') {
        setResponse(value?.output ?? "Invalid User Query");
      }
      if (value?.SafetyRating != 'HarmCategory') {
        setResponse(value?.candidates[0].safety_ratings);
      }

πŸš€ Demo

You can see the response from the gemini here: https://www.youtube.com/watch?v=SUzw8YPLYZM

πŸŽ‰ Benefits

  • Easy Integration: Simplifies adding AI features with clear documentation.
  • Cross-Platform Compatibility: Supports Android, iOS, web, macOS, and Windows from a single codebase.
  • Reduced Time to Market: Speeds up the integration of AI features into your app.

🌟 Conclusion

Integrating Google Gemini into your Flutter app with the flutter_gemini package opens up new possibilities for enhancing user experience. Utilize Gemini's powerful AI capabilities to add multilingual support, process images and audio, and implement advanced chatbot functionality.

πŸ“š References

Feel free to like and share your thoughts in the comments if you found this guide helpful! πŸ‘

About

This repository provides instructions for integrating Google Gemini into Flutter apps using the Flutter_gemini package. Here is an example of creating a Gemini Chat Bot πŸ’¬ πŸ€– AI using Flutter. Thanks for your support ❀️

Topics

Resources

License

Stars

Watchers

Forks

Languages