Uses of Record Class
bg.codexio.ai.openai.api.payload.chat.ChatMessage
Packages that use ChatMessage
Package
Description
-
Uses of ChatMessage in bg.codexio.ai.openai.api.payload.chat.request
Methods in bg.codexio.ai.openai.api.payload.chat.request that return types with arguments of type ChatMessageModifier and TypeMethodDescriptionChatMessageRequest.Builder.messages()Returns the value of themessagesrecord component.ChatMessageRequest.messages()Returns the value of themessagesrecord component.Methods in bg.codexio.ai.openai.api.payload.chat.request with parameters of type ChatMessageMethod parameters in bg.codexio.ai.openai.api.payload.chat.request with type arguments of type ChatMessageModifier and TypeMethodDescriptionChatMessageRequest.Builder.withMessages(List<ChatMessage> messages) Constructor parameters in bg.codexio.ai.openai.api.payload.chat.request with type arguments of type ChatMessageModifierConstructorDescriptionBuilder(String model, List<ChatMessage> messages, Double frequencyPenalty, Map<String, Integer> logitBias, Integer maxTokens, Integer n, Double presencePenalty, Integer seed, String[] stop, boolean stream, Double temperature, Double topP, List<ChatTool> tools, ChatTool.ChatToolChoice toolChoice, String user) Creates an instance of aBuilderrecord class.ChatMessageRequest(String model, List<ChatMessage> messages, Double frequencyPenalty, Map<String, Integer> logitBias, Integer maxTokens, Integer n, Double presencePenalty, Integer seed, String[] stop, boolean stream, Double temperature, Double topP, List<ChatTool> tools, ChatTool.ChatToolChoice toolChoice, String user) Creates an instance of aChatMessageRequestrecord class. -
Uses of ChatMessage in bg.codexio.ai.openai.api.payload.chat.response
Methods in bg.codexio.ai.openai.api.payload.chat.response that return ChatMessageModifier and TypeMethodDescriptionChatChoiceResponse.delta()Returns the value of thedeltarecord component.ChatChoiceResponse.message()Returns the value of themessagerecord component.Constructors in bg.codexio.ai.openai.api.payload.chat.response with parameters of type ChatMessageModifierConstructorDescriptionChatChoiceResponse(ChatMessage message, ChatMessage delta, String finishReason, int index) Creates an instance of aChatChoiceResponserecord class.