Home

Awesome

cover

<p align="center"> <a href="https://opensource.org/licenses/Apache-2.0"><img alt="License" src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"/></a> <a href="https://android-arsenal.com/api?level=21"><img alt="API" src="https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat"/></a> <a href="https://github.com/skydoves/chatgpt-android/actions/workflows/android.yml"><img alt="Build Status" src="https://github.com/skydoves/chatgpt-android/actions/workflows/android.yml/badge.svg"/></a> <a href="https://github.com/skydoves"><img alt="Profile" src="https://skydoves.github.io/badges/skydoves.svg"/></a> <a href="https://github.com/doveletter"><img alt="Profile" src="https://skydoves.github.io/badges/dove-letter.svg"/></a> </p>

ChatGPT Android demonstrates OpenAI's ChatGPT on Android with Stream Chat SDK for Compose.

The primary objective of this repository is to showcase the following:

📷 Previews

<p align="center"> <img src="previews/preview0.png" alt="drawing" width="270px" /> <img src="previews/preview1.png" alt="drawing" width="270px" /> <img src="previews/preview2.gif" alt="drawing" width="269px" /></br> </p> <a href="https://getstream.io/chat/sdk/compose?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_April2024_Jaewoong_ChatGPT&utm_term=DevRelOss"> <img src="https://user-images.githubusercontent.com/24237865/138428440-b92e5fb7-89f8-41aa-96b1-71a5486c5849.png" align="right" width="12%"/> </a>

🛥 Stream Chat & Video SDKs

ChatGPT Android is built with Stream Chat SDK for Compose to implement messaging systems. If you’re interested in adding powerful In-App Messaging or real-time Video Chat to your app, check out the Android Chat Messaging Tutorial or Android Video Call Tutorial !

If you're interested in building a real-time meeting room with video/audio calling, audio room, or livestreaming, check out the references below:

💻 How to build the project?

For proper project setup, it's essential to follow the instructions below. In most cases, you can complete all configuration steps within 10 to 20 minutes:

  1. Go to the Stream login page.

  2. If you have your GitHub or Google account, click the Continue with GitHub or Continue with Google button and you can sign up within a couple of seconds.

stream

  1. Go to the Dashboard and click the Create App button like the below.

stream

  1. Fill in the blanks like the below and click the Create App button.

stream

  1. You will see the Key like the figure below and then copy it.

stream

  1. Create a new file named secrets.properties on the root directory of this Android project, and add the key to the secrets.properties file like the below:

stream

STREAM_API_KEY=..
  1. Go to your Dashboard again and click your App.

  2. In the Overview menu, you can find the Authentication category by scrolling to the middle of the page.

  3. Switch on the Disable Auth Checks option and click the Submit button like the figure below.

stream

  1. Click the Explorer tab on the left side menu.

  2. Click users -> Create New User button sequentially and add fill in the user like the below:

stream

  1. Now, it's time to set up the OpenAI API key. Go to OpenAI API Dashboard, login with your Google account and click Start verification to verify your phone number to create an API key.

stream

  1. After verifying your phone number, click the Create new secret key on the page like the image below and create your API key:

stream

  1. Copy and paste your API key to the secrets.properties file as named GPT_API_KEY under the STREAM_API_KEY field:

stream

GPT_API_KEY=..
  1. Unlock Rate limits for OpenAI APIs

As per the guidelines outlined in their Rate limits documentation, access to the free tier of the API is granted after a minimum expenditure of $5 since the creation of your account. That means, you should register your payment method to the OpenAI and purchase initial credits.

stream

So you should go to the OpenAI Billings and click the Add payment details button like the image below:

stream

  1. Once you've added your payment deatils, you'll able to see the Add to creadit balance button like the image below:

stream

Next, click the Add to credit balance button to purchase the initial credit. As you've discovered in the previous step, the minimum credit starts from $5. Therefore, if you only intend to utilize the API limits for testing or building a side project, you can opt for the minimum pricing. Also, not that it's advisable to disable the automatic recharge option to avoid unexpected charges.

stream

  1. Once you've completed all those steps above, now build, run and enjoy your the project!

⚙️ Troubleshooting

You can typically find the reasons behind your error code by referring to the OpenAI Error code documentation.

401 Error

If you encounter 401 errors while chatting with ChatGPT app, as shown in the image below, it's crucial to verify the correctness of your OpenAI API key. Ensure that there are no typos in your API key and that it has been correctly copied and pasted into the secrets.properties file, as outlined in the guidelines above.

stream

429 Error

If you encounter this error from the outset, it's likely that your rate limits do not meet the requirements. Please revisit step 16 in the guidelines above for further instructions.

🛠 Tech Stack & Open Source Libraries

🏛️ Architecture

ChatGPT Android follows the Google's official architecture guidance.

architecture

ChatGPT Android was built with Guide to app architecture, so it would be a great sample to show how the architecture works in real-world projects.<br>

The overall architecture is composed of two layers; UI Layer and the data layer. Each layer has dedicated components and they each have different responsibilities. The arrow means the component has a dependency on the target component following its direction.

Architecture Overview

layer

Each layer has different responsibilities below. Basically, they follow unidirectional event/data flow.

UI Layer

layer

The UI Layer consists of UI elements like buttons, menus, tabs that could interact with users and ViewModel that holds app states and restores data when configuration changes.

Data Layer

layer

The data Layer consists of repositories, which include business logic, such as querying data from the local database and requesting remote data from the network. It is implemented as an offline-first source of business logic and follows the single source of truth principle.<br>

For more information about the overall architecture, check out Build a Real-Time WhatsApp Clone With Jetpack Compose.

Modularization

modules

ChatGPT Android adopted modularization strategies below:

💯 MAD Score

summary

🤝 Contribution

Most of the features are not completed except the chat feature, so anyone can contribute and improve this project following the Contributing Guideline.

Find this repository useful? 💙

Support it by joining stargazers for this repository. :star: <br> Also, follow me on GitHub for my next creations! 🤩

License

Designed and developed by 2022 skydoves (Jaewoong Eum)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.