Field Title
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
Gets or sets the title for the current extraction schema. This value is automatically populated from the schema's "title" field when calling SetElementsFromJsonSchema.
public string Title
Returns
- string
- Gets or sets the title for the current extraction schema. This value is automatically populated from the schema's "title" field when calling SetElementsFromJsonSchema.
Examples
var te = new TextExtraction(LM.LoadFromModelID("lmkit-tasks:4b-preview"));
te.SetElementsFromJsonSchema("{ \"title\": \"Receipt\", \"type\":\"object\", \"properties\": {\"Store\": {\"type\":\"string\"}} }");
Console.WriteLine(te.Title); // "Receipt"