From f854a6df1afb838ac3c7267fd6d70415009dc031 Mon Sep 17 00:00:00 2001 From: Shroominic Date: Wed, 8 Nov 2023 22:20:09 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20Refactor=20import=20statements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/extraction_test.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/extraction_test.py b/tests/extraction_test.py index ae999a5..04bfaaa 100644 --- a/tests/extraction_test.py +++ b/tests/extraction_test.py @@ -1,6 +1,4 @@ -from langchain.pydantic_v1 import BaseModel - -from funcchain import chain +from funcchain import BaseModel, chain class Task(BaseModel): @@ -15,7 +13,7 @@ def __str__(self) -> str: def description(task: Task) -> str: """ - CREATE TASK DESCRIPTION: {task} + Create a description of the task. """ return chain()