Skip to content

Releases: flashvayne/chatgpt-spring-boot-starter

v1.0.5

02 Mar 07:15
b610938
Compare
Choose a tag to compare

The model "text-davinci-003" has been deprecated. so updated the default model to gpt-3.5-turbo-instruct.
#18

The lastest version is 1.0.5 now.

<dependency>
    <groupId>io.github.flashvayne</groupId>
    <artifactId>chatgpt-spring-boot-starter</artifactId>
    <version>1.0.5</version>
</dependency>

v1.0.4

30 Mar 04:13
fe07450
Compare
Choose a tag to compare

🐞 Bug Fixes

  • Fix the issue occurs when using SpringBoot3: java.lang.NoSuchMethodError: 'org.springframework.http.HttpStatusCode org.springframework.http.ResponseEntity.getStatusCode()'

v1.0.3

23 Mar 11:43
77d5cf6
Compare
Choose a tag to compare

⭐ New Features

  • Image generation: give a prompt and get generated image(s) using the new method chatgptService.imageGenerate();
  • Update some default values in request
<dependency>
    <groupId>io.github.flashvayne</groupId>
    <artifactId>chatgpt-spring-boot-starter</artifactId>
    <version>1.0.3</version>
</dependency>

v1.0.2

22 Mar 09:14
ddf881d
Compare
Choose a tag to compare

⭐ New Features

  • Multi message: take a series of messages (including the conversation history) as input, and return a response message as output.
  • Request DTO covers all params in the request to OpenAi, so you can customize any params in your request.
  • Api url can be configured in chatgpt properties if you need change it when using a proxy.
<dependency>
    <groupId>io.github.flashvayne</groupId>
    <artifactId>chatgpt-spring-boot-starter</artifactId>
    <version>1.0.2</version>
</dependency>

v1.0.1

09 Mar 02:24
4dede22
Compare
Choose a tag to compare
  • adapt to SpringBoot3
  • enhance performance
<dependency>
    <groupId>io.github.flashvayne</groupId>
    <artifactId>chatgpt-spring-boot-starter</artifactId>
    <version>1.0.1</version>
</dependency>