From a20f54fb919606118dee86cbd8f50796ea63aa16 Mon Sep 17 00:00:00 2001
From: Raphael Mitsch <r.mitsch@outlook.com>
Date: Wed, 9 Aug 2023 09:48:15 +0200
Subject: [PATCH] Update incorrect example config. (#12893)

---
 website/docs/api/large-language-models.mdx | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/website/docs/api/large-language-models.mdx b/website/docs/api/large-language-models.mdx
index cc8328790..0edaaf946 100644
--- a/website/docs/api/large-language-models.mdx
+++ b/website/docs/api/large-language-models.mdx
@@ -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
 > ```