From c52dd968ce76891bcd955f5a3c3bcbd355fe9f9b Mon Sep 17 00:00:00 2001 From: Sofie Van Landeghem Date: Fri, 8 Sep 2023 11:28:14 +0200 Subject: [PATCH] fix space Co-authored-by: Raphael Mitsch --- 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 6cfec1941..d32368e22 100644 --- a/website/docs/api/large-language-models.mdx +++ b/website/docs/api/large-language-models.mdx @@ -27,7 +27,7 @@ as well as through task-specific component factories: `llm_ner`, `llm_spancat`, > #### Example > > ```python -> # Construction via add_pipe with the default GPT3.5 model and an explicitly defined task +> # Construction via add_pipe with the default GPT 3.5 model and an explicitly defined task > config = {"task": {"@llm_tasks": "spacy.NER.v3", "labels": ["PERSON", "ORGANISATION", "LOCATION"]}} > llm = nlp.add_pipe("llm", config=config) >