Update incorrect example config.

This commit is contained in:
Raphael Mitsch 2023-08-08 14:13:44 +02:00
parent c4e378df97
commit ddb25e113e

View File

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