05-03 07:41
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- arm-linux-androideabi
- ndkVersion
- Swift
- audio record
- Android
- ChatGPT
- Data Binding
- KB
- gradle
- 예금
- 사전청약
- ndk r24
- EditText
- java
- CHAT GPT
- 달러예금
- 고금리
- BindingAdapter
- Android Studio
- kotlin
- MG더뱅킹정기예금
- 용산 호반써밋 에이디션
- 청약
- Andorid
- 새마을금고
- 3rd framework
- JetPack
- Mac
- ios
- RETROFIT
Archives
- Today
- Total
pear
[android] simple GPT retrofit 2 - data 본문
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\", \"messages\": [{\"role\": \"user\", \"content\": \"What is the OpenAI mission?\"}]}";
Resbody
public class gptResponse {
public String id;
public String object;
public int created;
public String model;
public choices choices[];
public class choices{
public message message;
public String finish_reason;
public int index;
}
public class message{
public String role;
public String content;
}
}
Response Json String Example
// {
// "id": "chatcmpl-(...)",
// "object": "chat.completion",
// "created": 1678346481,
// "model": "gpt-3.5-turbo-0301",
// "usage": {
// "prompt_tokens": 11,
// "completion_tokens": 313,
// "total_tokens": 324
// },
// "choices": [
// {
// "message": {
// "role": "assistant",
// "content": "한글날은 한글의 문화적·역사적·언어학적 가치를 널리 알리고 (...)"
// },
// "finish_reason": "stop",
// "index": 0
// }
// ]
// }
'android' 카테고리의 다른 글
[android] android studio build setting issue - Unsupported Java. Your build is currently configured to use Java 17.0.6 and Gradle (0) | 2023.06.16 |
---|---|
[android] simple GPT retrofit 3 - call (0) | 2023.06.13 |
[android] simple GPT retrofit 1 - setting (0) | 2023.06.13 |
[AudioRecord] API (0) | 2022.08.09 |
[policy] 오디오 입력 공유 (from. android 10) (0) | 2022.07.14 |