Releases: flashvayne/chatgpt-spring-boot-starter
Releases · flashvayne/chatgpt-spring-boot-starter
v1.0.5
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
🐞 Bug Fixes
- Fix the issue occurs when using SpringBoot3: java.lang.NoSuchMethodError: 'org.springframework.http.HttpStatusCode org.springframework.http.ResponseEntity.getStatusCode()'
v1.0.3
⭐ 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
⭐ 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
- adapt to SpringBoot3
- enhance performance
<dependency>
<groupId>io.github.flashvayne</groupId>
<artifactId>chatgpt-spring-boot-starter</artifactId>
<version>1.0.1</version>
</dependency>