Values.AIPromptInferenceConfigurationSourceThe configuration for inference parameters when using AI Prompts.
type nonrec t = {temperature : Probability.t option;The temperature setting for controlling randomness in the generated response.
*)topP : Probability.t option;The top-P sampling parameter for nucleus sampling.
*)topK : TopK.t option;The top-K sampling parameter for token selection.
*)maxTokensToSample : MaxTokensToSample.t option;The maximum number of tokens to generate in the response.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Float of Probability.t | `Integer of TopK.t ]) list ]