Fix "seperate" typo (#251)

This commit is contained in:
Nikolay Sheyko
2023-12-05 22:04:07 +04:00
committed by GitHub
parent 202f9cb227
commit aa62d19423
+1 -1
View File
@@ -42,7 +42,7 @@ class Entity(BaseModel):
class DocumentExtraction(BaseModel):
entities: List[Entity] = Field(
...,
description="Body of the answer, each fact should be its seperate object with a body and a list of sources",
description="Body of the answer, each fact should be a separate object with a body and a list of sources",
)
```