From 5e446b60c229145aab88588c01ac67d64b1cf91a Mon Sep 17 00:00:00 2001 From: Shroominic Date: Sun, 17 Mar 2024 13:50:26 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix=20typing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/funcchain/syntax/decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/funcchain/syntax/decorators.py b/src/funcchain/syntax/decorators.py index c4af429..41a5774 100644 --- a/src/funcchain/syntax/decorators.py +++ b/src/funcchain/syntax/decorators.py @@ -24,7 +24,7 @@ def runnable( *, llm: UniversalChatModel = None, settings: SettingsOverride = {}, -) -> Callable[[Callable], Runnable]: +) -> Callable[[Callable[..., OutputT]], Runnable[dict[str, Any], OutputT]]: ...