Property IsEmpty
IsEmpty
Gets a value indicating whether this identity is empty (no persona or instruction defined).
public bool IsEmpty { get; }
Property Value
Examples
Checking if identity is empty:
using LMKit.Agents;
var empty = AgentIdentity.Empty;
var defined = new AgentIdentity("Assistant", "Help with tasks.");
Console.WriteLine(empty.IsEmpty); // True
Console.WriteLine(defined.IsEmpty); // False