From 3f7f3c2e1639082f894926e809f20a1ca814b614 Mon Sep 17 00:00:00 2001 From: Christian R <117322020+cdreetz@users.noreply.github.com> Date: Sat, 3 Feb 2024 17:14:48 -0600 Subject: [PATCH] Fix typos (#395) --- examples/citation_with_extraction/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/citation_with_extraction/main.py b/examples/citation_with_extraction/main.py index 342ac4abb..9cae6b6d8 100644 --- a/examples/citation_with_extraction/main.py +++ b/examples/citation_with_extraction/main.py @@ -61,13 +61,13 @@ def get_spans(self, context): class QuestionAnswer(OpenAISchema, MultiTaskBase): """ - Class representing a question and its answer as a list of facts each one should have a soruce. + Class representing a question and its answer as a list of facts each one should have a source. each sentence contains a body and a list of sources.""" question: str = Field(..., description="Question that was asked") tasks: List[Fact] = 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 its separate object with a body and a list of sources", )