Skip to main content
All docs
V26.1
  • AIChatControl.Temperature Property

    OBSOLETE

    This property has been removed to avoid conflicts and improve model compatibility. Set the model temperature globally in IChatResponseProvider options or per-message in the MessageSending event handler.

    Gets or sets the response text randomness.

    Namespace: DevExpress.AIIntegration.WinForms.Chat

    Assembly: DevExpress.AIIntegration.WinForms.Chat.v26.1.dll

    NuGet Package: DevExpress.AIIntegration.WinForms.Chat

    Declaration

    [Browsable(false)]
    [DefaultValue(null)]
    [EditorBrowsable(EditorBrowsableState.Never)]
    [Obsolete("This property has been removed to avoid conflicts and improve model compatibility. Set the model temperature globally in IChatResponseProvider options or per-message in the MessageSending event handler.", true)]
    public float? Temperature { get; set; }

    Property Value

    Type Default Description
    Nullable<Single> null

    The temperature. The AI service determines the limits.

    Remarks

    Note

    This property is removed to avoid conflicts and improve model compatibility. Specify the model temperature globally in IChatResponseProvider options, or per message in the MessageSending event handler.

    See Also