fix space

Co-authored-by: Raphael Mitsch <r.mitsch@outlook.com>
This commit is contained in:
Sofie Van Landeghem 2023-09-08 11:28:14 +02:00 committed by GitHub
parent 899bef3fd0
commit c52dd968ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
>