Site icon Android Tutorial Online

ChatGPT Davinci Model in Android

🧠 ChatGPT ile Android Uygulaması

Bir bilgi verildiğinde, model bir veya daha fazla tahmini döndürür ve ayrıca her pozisyonda alternatif belirteçlerin olasılıklarını da döndürebilir.

🧩 Tamamlama Dökümanları

1 – https://platform.openai.com/docs/guides/completion/introduction

2 – https://platform.openai.com/docs/api-reference/completions

🔗 API Kullanımı

GPT’ye sor

  POST https://api.openai.com/v1/completions

YOUR_TOKEN yazan kısmı siteden oluşturduğunuz key ile değiştirin.

override fun getHeaders(): MutableMap<String, String> {
                    val params: MutableMap<String, String> = HashMap()
                    params["Content-Type"] = "application/json"
                    params["Authorization"] =
                        "Bearer YOUR_TOKEN"
                    return params
                }

⚙️ Kullanılan Teknolojiler

TeknolojiEntegre
Volleyimplementation ‘com.android.volley:volley:1.2.1’
Lottieimplementation ‘com.airbnb.android:lottie:3.4.4’

▶️ Demo

https://user-images.githubusercontent.com/116274664/222499295-00357388-3ee7-4ab5-b7c6-f1df891295f3.mp4

GitHub

View Github

Exit mobile version