Class LdAiAgentConfigDefault
Represents a default AI Agent Config supplied by the user as a fallback to the AI client's agent config method. This type contains the same data fields as LdAiAgentConfig but has no tracker — it is purely an input to the client.
Construct an instance via New() and the nested LdAiAgentConfigDefault.Builder, or use Disabled for a disabled default.
Inherited Members
Namespace: LaunchDarkly.Sdk.Server.Ai.Config
Assembly: LaunchDarkly.ServerSdk.Ai.dll
Syntax
public sealed class LdAiAgentConfigDefault : LdAiConfigDefault
Properties
| Edit this page View SourceDisabled
Convenient helper that returns a disabled LdAiAgentConfigDefault.
Declaration
public static LdAiAgentConfigDefault Disabled { get; }
Property Value
| Type | Description |
|---|---|
| LdAiAgentConfigDefault |
Instructions
The agent's system instructions, which may contain Mustache templates.
Declaration
public string Instructions { get; }
Property Value
| Type | Description |
|---|---|
| string |
JudgeConfiguration
The judge configuration for this agent default, or null if not specified.
Declaration
public LdAiConfigTypes.JudgeConfiguration JudgeConfiguration { get; }
Property Value
| Type | Description |
|---|---|
| LdAiConfigTypes.JudgeConfiguration |
Methods
| Edit this page View SourceNew()
Creates a new LdAiAgentConfigDefault builder.
Declaration
public static LdAiAgentConfigDefault.Builder New()
Returns
| Type | Description |
|---|---|
| LdAiAgentConfigDefault.Builder | a new builder |