Class OCICohereChatOptions
java.lang.Object
org.springframework.ai.oci.cohere.OCICohereChatOptions
- All Implemented Interfaces:
ChatOptions
,ModelOptions
The configuration information for OCI chat requests
- Author:
- Anders Swanson
-
Nested Class Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic OCICohereChatOptions.Builder
builder()
copy()
Returns a copy of thisChatOptions
.static OCICohereChatOptions
fromOptions
(OCICohereChatOptions fromOptions) Returns the frequency penalty to use for the chat.Returns the maximum number of tokens to use for the chat.getModel()
Returns the model to use for the chat.Returns the presence penalty to use for the chat.getStop()
Returns the stop sequences to use for the chat.Returns the temperature to use for the chat.List<com.oracle.bmc.generativeaiinference.model.CohereTool>
getTools()
getTopK()
Returns the top K to use for the chat.getTopP()
Returns the top P to use for the chat.void
setCompartment
(String compartment) void
setDocuments
(List<Object> documents) void
setFrequencyPenalty
(Double frequencyPenalty) void
setMaxTokens
(Integer maxTokens) void
void
setPreambleOverride
(String preambleOverride) void
setPresencePenalty
(Double presencePenalty) void
setServingMode
(String servingMode) void
void
setTemperature
(Double temperature) void
void
void
-
Constructor Details
-
OCICohereChatOptions
public OCICohereChatOptions()
-
-
Method Details
-
fromOptions
-
builder
-
setPresencePenalty
-
setFrequencyPenalty
-
setTopK
-
setTopP
-
setTemperature
-
getPreambleOverride
-
setPreambleOverride
-
getServingMode
-
setServingMode
-
getCompartment
-
setCompartment
-
setMaxTokens
-
setModel
-
getStop
-
setStop
-
getDocuments
-
setDocuments
-
getTools
-
setTools
-
getModel
Description copied from interface:ChatOptions
Returns the model to use for the chat.- Specified by:
getModel
in interfaceChatOptions
- Returns:
- the model to use for the chat
-
getFrequencyPenalty
Description copied from interface:ChatOptions
Returns the frequency penalty to use for the chat.- Specified by:
getFrequencyPenalty
in interfaceChatOptions
- Returns:
- the frequency penalty to use for the chat
-
getMaxTokens
Description copied from interface:ChatOptions
Returns the maximum number of tokens to use for the chat.- Specified by:
getMaxTokens
in interfaceChatOptions
- Returns:
- the maximum number of tokens to use for the chat
-
getPresencePenalty
Description copied from interface:ChatOptions
Returns the presence penalty to use for the chat.- Specified by:
getPresencePenalty
in interfaceChatOptions
- Returns:
- the presence penalty to use for the chat
-
getStopSequences
Description copied from interface:ChatOptions
Returns the stop sequences to use for the chat.- Specified by:
getStopSequences
in interfaceChatOptions
- Returns:
- the stop sequences to use for the chat
-
getTemperature
Description copied from interface:ChatOptions
Returns the temperature to use for the chat.- Specified by:
getTemperature
in interfaceChatOptions
- Returns:
- the temperature to use for the chat
-
getTopK
Description copied from interface:ChatOptions
Returns the top K to use for the chat.- Specified by:
getTopK
in interfaceChatOptions
- Returns:
- the top K to use for the chat
-
getTopP
Description copied from interface:ChatOptions
Returns the top P to use for the chat.- Specified by:
getTopP
in interfaceChatOptions
- Returns:
- the top P to use for the chat
-
copy
Description copied from interface:ChatOptions
Returns a copy of thisChatOptions
.- Specified by:
copy
in interfaceChatOptions
- Returns:
- a copy of this
ChatOptions
-