Enum CohereChatRequest.CitationQuality
- java.lang.Object
-
- java.lang.Enum<CohereChatRequest.CitationQuality>
-
- com.oracle.bmc.generativeaiinference.model.CohereChatRequest.CitationQuality
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<CohereChatRequest.CitationQuality>
- Enclosing class:
- CohereChatRequest
public static enum CohereChatRequest.CitationQuality extends Enum<CohereChatRequest.CitationQuality> implements BmcEnum
When FAST is selected, citations are generated at the same time as the text output and the request will be completed sooner.May result in less accurate citations.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CohereChatRequest.CitationQuality
create(String key)
String
getValue()
static CohereChatRequest.CitationQuality
valueOf(String name)
Returns the enum constant of this type with the specified name.static CohereChatRequest.CitationQuality[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Accurate
public static final CohereChatRequest.CitationQuality Accurate
-
Fast
public static final CohereChatRequest.CitationQuality Fast
-
-
Method Detail
-
values
public static CohereChatRequest.CitationQuality[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CohereChatRequest.CitationQuality c : CohereChatRequest.CitationQuality.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CohereChatRequest.CitationQuality valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static CohereChatRequest.CitationQuality create(String key)
-
-