This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Configuration parameters used by LiveGenerativeModel to control live content generation.
Signature:
export interface LiveGenerationConfig
Properties
Property | Type | Description |
---|---|---|
frequencyPenalty | number | (Public Preview) Frequency penalties. |
maxOutputTokens | number | (Public Preview) Specifies the maximum number of tokens that can be generated in the response. The number of tokens per word varies depending on the language outputted. Is unbounded by default. |
presencePenalty | number | (Public Preview) Positive penalties. |
responseModalities | ResponseModality[] | (Public Preview) The modalities of the response. |
speechConfig | SpeechConfig | (Public Preview) Configuration for speech synthesis. |
temperature | number | (Public Preview) Controls the degree of randomness in token selection. A temperature value of 0 means that the highest probability tokens are always selected. In this case, responses for a given prompt are mostly deterministic, but a small amount of variation is still possible. |
topK | number | (Public Preview) Changes how the model selects token for output. A topK value of 1 means the select token is the most probable among all tokens in the model's vocabulary, while a topK value 3 means that the next token is selected from among the 3 most probably using probabilities sampled. Tokens are then further filtered with the highest selected temperature sampling. Defaults to 40 if unspecified. |
topP | number | (Public Preview) Changes how the model selects tokens for output. Tokens are selected from the most to least probable until the sum of their probabilities equals the topP value. For example, if tokens A, B, and C have probabilities of 0.3, 0.2, and 0.1 respectively and the topP value is 0.5, then the model will select either A or B as the next token by using the temperature and exclude C as a candidate. Defaults to 0.95 if unset. |
LiveGenerationConfig.frequencyPenalty
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Frequency penalties.
Signature:
frequencyPenalty?: number;
LiveGenerationConfig.maxOutputTokens
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifies the maximum number of tokens that can be generated in the response. The number of tokens per word varies depending on the language outputted. Is unbounded by default.
Signature:
maxOutputTokens?: number;
LiveGenerationConfig.presencePenalty
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Positive penalties.
Signature:
presencePenalty?: number;
LiveGenerationConfig.responseModalities
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
The modalities of the response.
Signature:
responseModalities?: ResponseModality[];
LiveGenerationConfig.speechConfig
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Configuration for speech synthesis.
Signature:
speechConfig?: SpeechConfig;
LiveGenerationConfig.temperature
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Controls the degree of randomness in token selection. A temperature
value of 0 means that the highest probability tokens are always selected. In this case, responses for a given prompt are mostly deterministic, but a small amount of variation is still possible.
Signature:
temperature?: number;
LiveGenerationConfig.topK
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Changes how the model selects token for output. A topK
value of 1 means the select token is the most probable among all tokens in the model's vocabulary, while a topK
value 3 means that the next token is selected from among the 3 most probably using probabilities sampled. Tokens are then further filtered with the highest selected temperature
sampling. Defaults to 40 if unspecified.
Signature:
topK?: number;
LiveGenerationConfig.topP
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Changes how the model selects tokens for output. Tokens are selected from the most to least probable until the sum of their probabilities equals the topP
value. For example, if tokens A, B, and C have probabilities of 0.3, 0.2, and 0.1 respectively and the topP
value is 0.5, then the model will select either A or B as the next token by using the temperature
and exclude C as a candidate. Defaults to 0.95 if unset.
Signature:
topP?: number;