Update incorrect example config. (#12893)

This commit is contained in:
Raphael Mitsch 2023-08-09 09:48:15 +02:00 committed by svlandeg
parent 0ea7e22ba8
commit a20f54fb91

View File

@ -379,10 +379,10 @@ definitions are included in the prompt.
> [components.llm.task]
> @llm_tasks = "spacy.TextCat.v3"
> labels = ["COMPLIMENT", "INSULT"]
> label_definitions = {
> "COMPLIMENT": "a polite expression of praise or admiration.",
> "INSULT": "a disrespectful or scornfully abusive remark or act."
> }
>
> [components.llm.task.label_definitions]
> "COMPLIMENT" = "a polite expression of praise or admiration.",
> "INSULT" = "a disrespectful or scornfully abusive remark or act."
> examples = null
> ```