diff --git a/src/great_ai/great_ai/deploy/great_ai.py b/src/great_ai/great_ai/deploy/great_ai.py index 6cef9d5..63c4f91 100644 --- a/src/great_ai/great_ai/deploy/great_ai.py +++ b/src/great_ai/great_ai/deploy/great_ai.py @@ -82,10 +82,10 @@ class GreatAI(Generic[T]): @overload @staticmethod def create( - version: str = "0.0.1", - disable_rest_api: bool = False, - disable_docs: bool = False, - disable_dashboard: bool = False, + version: str, + disable_rest_api: bool, + disable_docs: bool, + disable_dashboard: bool, ) -> Callable[[Callable[..., T]], "GreatAI[T]"]: ...