An open API service indexing awesome lists of open source software.

https://github.com/pkini2002/chatgpt-app

A simple ChatGPT app built using OpenAI API using Java for the backend and OkHttp library for creating HTTP requests
https://github.com/pkini2002/chatgpt-app

android-app chatgpt-api chatgpt-app java okhttpclient

Last synced: 10 days ago
JSON representation

A simple ChatGPT app built using OpenAI API using Java for the backend and OkHttp library for creating HTTP requests

Awesome Lists containing this project

README

          

# ChatGPT-App

A simple ChatGPT app built using OpenAI API using `Java` for the backend and `OKHTTP library` for creating HTTP requests

> build.gradle

Add the below dependency in Module level build.gradle
```bash
implementation("com.squareup.okhttp3:okhttp:4.10.0")
```

> AndroidManifest.xml
In AndroidManifest.xml file give the permission to use Internet

```bash

```

> API Call URL

```bash
https://api.openai.com/v1/completions
```

## Screenshots




## References

- ChatGPT Documentation
- OKHTTP Library Documentation