fix usage example

This commit is contained in:
svlandeg 2023-09-01 15:01:05 +02:00
parent 5c1f9264c2
commit 77057ef220

View File

@ -180,11 +180,11 @@ nlp.add_pipe(
"llm", "llm",
config={ config={
"task": { "task": {
"@llm_tasks": "spacy.NER.v2", "@llm_tasks": "spacy.NER.v3",
"labels": ["PERSON", "ORGANISATION", "LOCATION"] "labels": ["PERSON", "ORGANISATION", "LOCATION"]
}, },
"model": { "model": {
"@llm_models": "spacy.gpt-3.5.v1", "@llm_models": "spacy.GPT-3-5.v1",
}, },
}, },
) )