DxAIChat.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.
Specifies the response text randomness.
Namespace: DevExpress.AIIntegration.Blazor.Chat
Assembly: DevExpress.AIIntegration.Blazor.Chat.v26.1.dll
Declaration
[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)]
[Parameter]
public float? Temperature { get; set; }
Property Value
| Type | Description |
|---|---|
| Nullable<Single> | The temperature. Limits are determined by the AI service. |
Remarks
Use the Temperature property to specify the randomness of response text. Higher values result in a more random output, while lower values make the output more focused and deterministic.
<DxAIChat Temperature="0.7f" />
See Also