1.5.1
- 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"));