Skip to content

1.5.1

Compare
Choose a tag to compare
@WhiteMagic2014 WhiteMagic2014 released this 13 Jun 03:55
· 37 commits to master since this release
  • Optimize: CreateChatCompletionRequest.addMessage can now directly accept ChatMessage as a parameter.
//  Now there are two ways to add a message.
new CreateChatCompletionRequest().addMessage("user","hello");
new CreateChatCompletionRequest().addMessage(ChatMessage.userMessage("hello"));