public static class CohereChatRequest.Builder extends Object
Constructor and Description |
---|
Builder() |
Modifier and Type | Method and Description |
---|---|
CohereChatRequest |
build() |
CohereChatRequest.Builder |
chatHistory(List<CohereMessage> chatHistory)
The list of previous messages between the user and the model.
|
CohereChatRequest.Builder |
citationQuality(CohereChatRequest.CitationQuality citationQuality)
When FAST is selected, citations are generated at the same time as the text output and
the request will be completed sooner.
|
CohereChatRequest.Builder |
copy(CohereChatRequest model) |
CohereChatRequest.Builder |
documents(List<Object> documents)
A list of relevant documents that the model can refer to for generating grounded
responses to the user’s requests.
|
CohereChatRequest.Builder |
frequencyPenalty(Double frequencyPenalty)
To reduce repetitiveness of generated tokens, this number penalizes new tokens based on
their frequency in the generated text so far.
|
CohereChatRequest.Builder |
isEcho(Boolean isEcho)
Returns the full prompt that was sent to the model when True.
|
CohereChatRequest.Builder |
isForceSingleStep(Boolean isForceSingleStep)
When enabled, the model will issue (potentially multiple) tool calls in a single step,
before it receives the tool responses and directly answers the user’s original message.
|
CohereChatRequest.Builder |
isRawPrompting(Boolean isRawPrompting)
When enabled, the user’s
message will be sent to the model without any
preprocessing. |
CohereChatRequest.Builder |
isSearchQueriesOnly(Boolean isSearchQueriesOnly)
When set to true, the response contains only a list of generated search queries without
the search results and the model will not respond to the user’s message.
|
CohereChatRequest.Builder |
isStream(Boolean isStream)
Whether to stream the partial progress of the model’s response.
|
CohereChatRequest.Builder |
maxTokens(Integer maxTokens)
The maximum number of output tokens that the model will generate for the response.
|
CohereChatRequest.Builder |
message(String message)
The text that the user inputs for the model to respond to.
|
CohereChatRequest.Builder |
preambleOverride(String preambleOverride)
If specified, the default Cohere preamble is replaced with the provided preamble.
|
CohereChatRequest.Builder |
presencePenalty(Double presencePenalty)
To reduce repetitiveness of generated tokens, this number penalizes new tokens based on
whether they’ve appeared in the generated text so far.
|
CohereChatRequest.Builder |
promptTruncation(CohereChatRequest.PromptTruncation promptTruncation)
Defaults to OFF.
|
CohereChatRequest.Builder |
seed(Integer seed)
If specified, the backend will make a best effort to sample tokens deterministically,
such that repeated requests with the same seed and parameters should return the same
result.
|
CohereChatRequest.Builder |
stopSequences(List<String> stopSequences)
Stop the model generation when it reaches a stop sequence defined in this parameter.
|
CohereChatRequest.Builder |
temperature(Double temperature)
A number that sets the randomness of the generated output.
|
CohereChatRequest.Builder |
toolResults(List<CohereToolResult> toolResults)
A list of results from invoking tools recommended by the model in the previous chat turn.
|
CohereChatRequest.Builder |
tools(List<CohereTool> tools)
A list of available tools (functions) that the model may suggest invoking before
producing a text response.
|
CohereChatRequest.Builder |
topK(Integer topK)
A sampling method in which the model chooses the next token randomly from the top k most
likely tokens.
|
CohereChatRequest.Builder |
topP(Double topP)
If set to a probability 0.0 < p < 1.0, it ensures that only the most likely tokens, with
total probability mass of p, are considered for generation at each step.
|
public CohereChatRequest.Builder message(String message)
The text that the user inputs for the model to respond to.
message
- the value to setpublic CohereChatRequest.Builder chatHistory(List<CohereMessage> chatHistory)
The list of previous messages between the user and the model. The chat history gives the model context for responding to the user’s inputs.
chatHistory
- the value to setpublic CohereChatRequest.Builder documents(List<Object> documents)
A list of relevant documents that the model can refer to for generating grounded responses to the user’s requests. Some example keys that you can add to the dictionary are “text”, “author”, and “date”. Keep the total word count of the strings in the dictionary to 300 words or less.
Example: [ { "title": "Tall penguins", "snippet": "Emperor penguins are the
tallest." }, { "title": "Penguin habitats", "snippet": "Emperor penguins only live in
Antarctica." } ]
documents
- the value to setpublic CohereChatRequest.Builder isSearchQueriesOnly(Boolean isSearchQueriesOnly)
When set to true, the response contains only a list of generated search queries without the search results and the model will not respond to the user’s message.
isSearchQueriesOnly
- the value to setpublic CohereChatRequest.Builder preambleOverride(String preambleOverride)
If specified, the default Cohere preamble is replaced with the provided preamble. A preamble is an initial guideline message that can change the model’s overall chat behavior and conversation style. Default preambles vary for different models.
Example: You are a travel advisor. Answer with a pirate tone.
preambleOverride
- the value to setpublic CohereChatRequest.Builder isStream(Boolean isStream)
Whether to stream the partial progress of the model’s response. When set to true, as tokens become available, they are sent as data-only server-sent events.
isStream
- the value to setpublic CohereChatRequest.Builder maxTokens(Integer maxTokens)
The maximum number of output tokens that the model will generate for the response.
maxTokens
- the value to setpublic CohereChatRequest.Builder temperature(Double temperature)
A number that sets the randomness of the generated output. A lower temperature means less random generations. Use lower numbers for tasks such as question answering or summarizing. High temperatures can generate hallucinations or factually incorrect information. Start with temperatures lower than 1.0 and increase the temperature for more creative outputs, as you regenerate the prompts to refine the outputs.
temperature
- the value to setpublic CohereChatRequest.Builder topK(Integer topK)
A sampling method in which the model chooses the next token randomly from the top k most likely tokens. A higher value for k generates more random output, which makes the output text sound more natural. The default value for k is 0 which disables this method and considers all tokens. To set a number for the likely tokens, choose an integer between 1 and 500.
If also using top p, then the model considers only the top tokens whose probabilities add up to p percent and ignores the rest of the k tokens. For example, if k is 20 but only the probabilities of the top 10 add up to the value of p, then only the top 10 tokens are chosen.
topK
- the value to setpublic CohereChatRequest.Builder topP(Double topP)
If set to a probability 0.0 < p < 1.0, it ensures that only the most likely tokens, with total probability mass of p, are considered for generation at each step.
To eliminate tokens with low likelihood, assign p a minimum percentage for the next token's likelihood. For example, when p is set to 0.75, the model eliminates the bottom 25 percent for the next token. Set to 1.0 to consider all tokens and set to 0 to disable. If both k and p are enabled, p acts after k.
topP
- the value to setpublic CohereChatRequest.Builder promptTruncation(CohereChatRequest.PromptTruncation promptTruncation)
Defaults to OFF. Dictates how the prompt will be constructed. With prompt_truncation
set to AUTO_PRESERVE_ORDER, some elements from chat_history
and documents
will be dropped to construct a prompt that fits within the model’s
context length limit. During this process the order of the documents and chat history
will be preserved. With prompt_truncation
set to OFF, no elements will be
dropped.
promptTruncation
- the value to setpublic CohereChatRequest.Builder frequencyPenalty(Double frequencyPenalty)
To reduce repetitiveness of generated tokens, this number penalizes new tokens based on their frequency in the generated text so far. Greater numbers encourage the model to use new tokens, while lower numbers encourage the model to repeat the tokens. Set to 0 to disable.
frequencyPenalty
- the value to setpublic CohereChatRequest.Builder presencePenalty(Double presencePenalty)
To reduce repetitiveness of generated tokens, this number penalizes new tokens based on whether they’ve appeared in the generated text so far. Greater numbers encourage the model to use new tokens, while lower numbers encourage the model to repeat the tokens.
Similar to frequency penalty, a penalty is applied to previously present tokens, except that this penalty is applied equally to all tokens that have already appeared, regardless of how many times they've appeared. Set to 0 to disable.
presencePenalty
- the value to setpublic CohereChatRequest.Builder seed(Integer seed)
If specified, the backend will make a best effort to sample tokens deterministically, such that repeated requests with the same seed and parameters should return the same result. However, determinism cannot be totally guaranteed.
seed
- the value to setpublic CohereChatRequest.Builder isEcho(Boolean isEcho)
Returns the full prompt that was sent to the model when True.
isEcho
- the value to setpublic CohereChatRequest.Builder tools(List<CohereTool> tools)
A list of available tools (functions) that the model may suggest invoking before producing a text response.
tools
- the value to setpublic CohereChatRequest.Builder toolResults(List<CohereToolResult> toolResults)
A list of results from invoking tools recommended by the model in the previous chat turn.
toolResults
- the value to setpublic CohereChatRequest.Builder isForceSingleStep(Boolean isForceSingleStep)
When enabled, the model will issue (potentially multiple) tool calls in a single step, before it receives the tool responses and directly answers the user’s original message.
isForceSingleStep
- the value to setpublic CohereChatRequest.Builder stopSequences(List<String> stopSequences)
Stop the model generation when it reaches a stop sequence defined in this parameter.
stopSequences
- the value to setpublic CohereChatRequest.Builder isRawPrompting(Boolean isRawPrompting)
When enabled, the user’s message
will be sent to the model without any
preprocessing.
isRawPrompting
- the value to setpublic CohereChatRequest.Builder citationQuality(CohereChatRequest.CitationQuality citationQuality)
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.
citationQuality
- the value to setpublic CohereChatRequest build()
public CohereChatRequest.Builder copy(CohereChatRequest model)
Copyright © 2016–2024. All rights reserved.