Class ExtractSkillsRequest
- Namespace
- Textkernel.Tx.Models.API.DataEnrichment.Skills.Request
- Assembly
- Textkernel.Tx.SDK.dll
Request body for a 'ExtractSkills' request
public class ExtractSkillsRequest
- Inheritance
-
ExtractSkillsRequest
- Inherited Members
Properties
Language
The language of the input text. Must be one of the supported ISO codes.
public string Language { get; set; }
Property Value
OutputLanguage
The language to use for the output skill descriptions. If not provided, defaults to the input language. Must be one of the supported ISO codes.
public string OutputLanguage { get; set; }
Property Value
Text
The text to extract skills from. There is a 24,000 character limit.
public string Text { get; set; }
Property Value
Threshold
A value from [0 - 1] for the minimum confidence threshold for extracted skills. Lower values will return more skills, but also increase the likelihood of ambiguity-related errors. The recommended and default value is 0.5.
public float Threshold { get; set; }