Skip to content

Commit 6b8b001

Browse files
author
h1alexbel
committed
feat(#88): 0
1 parent d0d2c36 commit 6b8b001

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/git/tracehub/codereview/action/openai/OpenAiModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public String completion() throws Exception {
5555
)
5656
).readObject();
5757
final String completion = response.getJsonArray("choices")
58-
.getFirst()
58+
.get(0)
5959
.asJsonObject()
6060
.getString("text");
6161
Logger.info(

0 commit comments

Comments
 (0)