Uses of Record Class
org.springframework.ai.deepseek.api.DeepSeekApi.ChatCompletionMessage
Packages that use DeepSeekApi.ChatCompletionMessage
-
Uses of DeepSeekApi.ChatCompletionMessage in org.springframework.ai.deepseek.api
Methods in org.springframework.ai.deepseek.api that return DeepSeekApi.ChatCompletionMessageModifier and TypeMethodDescriptionDeepSeekApi.ChatCompletionChunk.ChunkChoice.delta()Returns the value of thedeltarecord component.DeepSeekApi.ChatCompletion.Choice.message()Returns the value of themessagerecord component.Methods in org.springframework.ai.deepseek.api that return types with arguments of type DeepSeekApi.ChatCompletionMessageModifier and TypeMethodDescriptionDeepSeekApi.ChatCompletionRequest.messages()Returns the value of themessagesrecord component.Constructors in org.springframework.ai.deepseek.api with parameters of type DeepSeekApi.ChatCompletionMessageModifierConstructorDescriptionChoice(DeepSeekApi.ChatCompletionFinishReason finishReason, Integer index, DeepSeekApi.ChatCompletionMessage message, DeepSeekApi.LogProbs logprobs) Creates an instance of aChoicerecord class.ChunkChoice(DeepSeekApi.ChatCompletionFinishReason finishReason, Integer index, DeepSeekApi.ChatCompletionMessage delta, DeepSeekApi.LogProbs logprobs) Creates an instance of aChunkChoicerecord class.Constructor parameters in org.springframework.ai.deepseek.api with type arguments of type DeepSeekApi.ChatCompletionMessageModifierConstructorDescriptionChatCompletionRequest(List<DeepSeekApi.ChatCompletionMessage> messages, Boolean stream) Shortcut constructor for a chat completion request with the given messages for streaming.ChatCompletionRequest(List<DeepSeekApi.ChatCompletionMessage> messages, String model, Double temperature) Shortcut constructor for a chat completion request with the given messages, model and temperature.ChatCompletionRequest(List<DeepSeekApi.ChatCompletionMessage> messages, String model, Double temperature, boolean stream) Shortcut constructor for a chat completion request with the given messages, model, temperature and control for streaming.ChatCompletionRequest(List<DeepSeekApi.ChatCompletionMessage> messages, String model, Double frequencyPenalty, Integer maxTokens, Double presencePenalty, ResponseFormat responseFormat, List<String> stop, Boolean stream, Double temperature, Double topP, Boolean logprobs, Integer topLogprobs, List<DeepSeekApi.FunctionTool> tools, Object toolChoice) Creates an instance of aChatCompletionRequestrecord class.