일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 달러예금
- CHAT GPT
- 사전청약
- Android
- java
- audio record
- 용산 호반써밋 에이디션
- 고금리
- Mac
- RETROFIT
- KB
- Swift
- ndkVersion
- ndk r24
- arm-linux-androideabi
- Data Binding
- ChatGPT
- EditText
- 예금
- gradle
- ios
- BindingAdapter
- kotlin
- 3rd framework
- 새마을금고
- 청약
- Andorid
- MG더뱅킹정기예금
- JetPack
- Android Studio
- Today
- Total
목록CHAT GPT (2)
pear
Request Body import com.google.gson.annotations.SerializedName; public class GptCall { @SerializedName("model") public String model; @SerializedName("messages") public messages messages; @SerializedName("max_tokens") public String max_tokens; public class messages { public String role; public String content; } } Request Body Json String Example //String json = "{\"model\": \"gpt-3.5-turbo\", \"m..
OKHttpclient import java.io.IOException; import java.util.concurrent.TimeUnit; import okhttp3.Interceptor; import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.Response; import okhttp3.logging.HttpLoggingInterceptor; import retrofit2.Retrofit; import retrofit2.converter.gson.GsonConverterFactory; import retrofit2.converter.scalars.ScalarsConverterFactory; public class RetrofitGPT ..