Table of Contents

Property UserContext

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

UserContext

Gets or sets the optional user-provided context for this activation.

This may contain additional information the user provided when invoking the skill, such as specific requirements or preferences.

public string UserContext { get; set; }

Property Value

string

Examples

Using user context in activation:

var context = activator.Activate("code-review", "Focus on security issues");
Console.WriteLine($"User context: {context.UserContext}");