Table of Contents

Property Default

Namespace
LMKit.Agents
Assembly
LM-Kit.NET.dll

Default

Gets the default execution options.

public static AgentExecutionOptions Default { get; }

Property Value

AgentExecutionOptions

Examples

Using default options:

using LMKit.Model;
using LMKit.Agents;

using var model = new LM("path/to/model.gguf");
var agent = new Agent(model);

// Explicit use of defaults (same as passing null)
var result = agent.Run("Hello!", AgentExecutionOptions.Default);

Remarks

Returns a shared instance with default values. Use Clone() if you need to modify options without affecting the default.