From 899bef3fd0dcb6fdbb7413a06ca00e629694aaff Mon Sep 17 00:00:00 2001 From: svlandeg Date: Fri, 8 Sep 2023 11:00:36 +0200 Subject: [PATCH] typo --- website/docs/api/large-language-models.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/api/large-language-models.mdx b/website/docs/api/large-language-models.mdx index cb6e78860..6cfec1941 100644 --- a/website/docs/api/large-language-models.mdx +++ b/website/docs/api/large-language-models.mdx @@ -31,7 +31,7 @@ as well as through task-specific component factories: `llm_ner`, `llm_spancat`, > config = {"task": {"@llm_tasks": "spacy.NER.v3", "labels": ["PERSON", "ORGANISATION", "LOCATION"]}} > llm = nlp.add_pipe("llm", config=config) > -> # Construction via add_pipe with task-specific factory and default GPT3.5 model +> # Construction via add_pipe with a task-specific factory and default GPT3.5 model > llm = nlp.add_pipe("llm-ner") > > # Construction from class