Uses of Class
com.composum.ai.backend.base.service.chat.impl.chatmodel.ChatCompletionToolCall
-
Packages that use ChatCompletionToolCall Package Description com.composum.ai.backend.base.service.chat.impl.chatmodel -
-
Uses of ChatCompletionToolCall in com.composum.ai.backend.base.service.chat.impl.chatmodel
Methods in com.composum.ai.backend.base.service.chat.impl.chatmodel that return types with arguments of type ChatCompletionToolCall Modifier and Type Method Description List<ChatCompletionToolCall>
ChatCompletionChoiceMessage. getToolCalls()
List<ChatCompletionToolCall>
ChatCompletionMessage. getToolCalls()
static List<ChatCompletionToolCall>
ChatCompletionToolCall. make(List<GPTToolCall> toolCalls)
static List<ChatCompletionToolCall>
ChatCompletionToolCall. mergeDelta(List<ChatCompletionToolCall> calls1, List<ChatCompletionToolCall> calls2)
Methods in com.composum.ai.backend.base.service.chat.impl.chatmodel with parameters of type ChatCompletionToolCall Modifier and Type Method Description void
ChatCompletionToolCall. mergeDelta(ChatCompletionToolCall other)
Method parameters in com.composum.ai.backend.base.service.chat.impl.chatmodel with type arguments of type ChatCompletionToolCall Modifier and Type Method Description static List<ChatCompletionToolCall>
ChatCompletionToolCall. mergeDelta(List<ChatCompletionToolCall> calls1, List<ChatCompletionToolCall> calls2)
void
ChatCompletionChoiceMessage. setToolCalls(List<ChatCompletionToolCall> toolCalls)
void
ChatCompletionMessage. setToolCalls(List<ChatCompletionToolCall> toolCalls)
static List<GPTToolCall>
ChatCompletionToolCall. toGptToolCallList(List<ChatCompletionToolCall> list)
Turns the list into aGPTToolCall
list observing thegetIndex()
.
-