Skip to content

GQAdonis/AIBridge

 
 

Repository files navigation

AI Bridge

AIBridge is a open-source flutter project that allows you to use external APIs for AI Chat.

ai_bridge.mov

Currently implemented APIs are :

  • ChatGPT
  • PaLM

You can also use the built version directly from Stores :

download on playstore download on appstore

Architecture

diagram

Techs

Tech Usage
Provider pattern Monitor data changes using ChangeNotifier
sqflite Used to store chat data as local data
dio Used for requesting API responses over the network. However, a different built-in package, dart_openai, is specifically used for ChatGPT. Dio is primarily used for PaLM.
dart_openai A built-in package for requesting ChatGPT API responses in Flutter
flutter_image_compress Efficiently reduces image size, which is cost-effective for storing images on the server. Demonstrates efficiency with reductions from 2MB to 95kB, without compromising image quality.
tiktoken A built-in package for counting tokens in ChatGPT
flutter_markdown Enables markdown rendering in chat
intl Used for localization. This project is localized in English, Korean, and Japanese.
flutter_secure_storage Stores API keys securely within the app. This package implements a security algorithm to safeguard API keys.

Flutter environment

This project is built fine with the following environment:

[√] Flutter (Channel stable, 3.13.2, on Microsoft Windows [Version 10.0.19045.3693], locale ko-KR)
    • Flutter version 3.13.2 on channel stable at C:\FlutterSDK\flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision ff5b5b5fa6 (4 months ago), 2023-08-24 08:12:28 -0500
    • Engine revision b20183e040
    • Dart version 3.1.0
    • DevTools version 2.25.0

License

This project is licensed under the Apache License 2.0.

About

Open source Flutter project that allows you to use external APIs for AI Chat

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 85.8%
  • C++ 6.4%
  • CMake 4.9%
  • HTML 1.0%
  • Swift 0.8%
  • Ruby 0.7%
  • Other 0.4%