Table of Contents

Property FileName

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

FileName

Gets the file name without the directory path.

public string FileName { get; }

Property Value

string

Examples

Getting the file name:

var resource = skill.GetResource("scripts/validate.py");
Console.WriteLine(resource.FileName); // "validate.py"