From 3eb061c3adcd7802c7ab682c94c090db22de91db Mon Sep 17 00:00:00 2001 From: Shroominic Date: Tue, 13 Feb 2024 17:36:12 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=91=EF=B8=8F=20rm=20wip=20feature?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/funcchain/syntax/decorators.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/funcchain/syntax/decorators.py b/src/funcchain/syntax/decorators.py index b9e30c1..c4af429 100644 --- a/src/funcchain/syntax/decorators.py +++ b/src/funcchain/syntax/decorators.py @@ -24,7 +24,6 @@ def runnable( *, llm: UniversalChatModel = None, settings: SettingsOverride = {}, - auto_tune: bool = False, ) -> Callable[[Callable], Runnable]: ... @@ -34,7 +33,6 @@ def runnable( *, llm: UniversalChatModel = None, settings: SettingsOverride = {}, - auto_tune: bool = False, ) -> Union[Callable, Runnable[dict[str, Any], OutputT]]: """Decorator for funcchain syntax. Compiles the function into a runnable.