Skip to content

Commit 80261b5

Browse files
Grt1228guorutao
authored andcommitted
feature 1.1.4 Bug Fix
1 parent fd28ca2 commit 80261b5

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.unfbx</groupId>
77
<artifactId>chatgpt-java</artifactId>
8-
<version>1.1.3</version>
8+
<version>1.1.4</version>
99
<name>chatgpt-java</name>
1010
<description>OpenAI Java SDK, OpenAI Api for Java. ChatGPT Java SDK .</description>
1111
<url>https://chatgpt-java.unfbx.com</url>

src/main/java/com/unfbx/chatgpt/entity/assistant/message/FileCitation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
public class FileCitation {
2424

2525
@JsonProperty("file_id")
26-
private String file_id;
26+
private String fileId;
2727

2828
@JsonProperty("quote")
2929
private String quote;

src/main/java/com/unfbx/chatgpt/entity/assistant/message/FilePath.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
public class FilePath {
2424

2525
@JsonProperty("file_id")
26-
private String file_id;
26+
private String fileId;
2727
}

src/main/java/com/unfbx/chatgpt/entity/assistant/run/Image.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* 描述:
1414
*
1515
* @author https://www.unfbx.com
16-
* @since 1.1.3
16+
* @since 1.1.4
1717
* 2023-11-20
1818
*/
1919
@Data
@@ -26,5 +26,5 @@
2626
public class Image implements Serializable {
2727

2828
@JsonProperty("file_id")
29-
private Image file_id;
29+
private String fileId;
3030
}

0 commit comments

Comments
 (0)