File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/yandex_cloud_ml_sdk/_types/tuning Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ def field_name(self) -> str:
1919
2020 @property
2121 @abc .abstractmethod
22- def proto_type (self ) -> Type [ProtoTuningTypeLora ] | Type [ProtoTuningTypePromptTune ]:
22+ def proto_type (self ) -> type [ProtoTuningTypeLora ] | type [ProtoTuningTypePromptTune ]:
2323 """:meta private:"""
2424
2525
2626@dataclass (frozen = True )
2727class TuningTypeLora (BaseTuningType ):
2828 #: :meta private:
29- proto_type : ClassVar [Type [ProtoTuningTypeLora ]] = ProtoTuningTypeLora
29+ proto_type : ClassVar [type [ProtoTuningTypeLora ]] = ProtoTuningTypeLora
3030 #: :meta private:
3131 field_name : ClassVar [str ] = 'lora'
3232
@@ -39,7 +39,7 @@ class TuningTypeLora(BaseTuningType):
3939@dataclass (frozen = True )
4040class TuningTypePromptTune (BaseTuningType ):
4141 #: :meta private:
42- proto_type : ClassVar [Type [ProtoTuningTypePromptTune ]] = ProtoTuningTypePromptTune
42+ proto_type : ClassVar [type [ProtoTuningTypePromptTune ]] = ProtoTuningTypePromptTune
4343 #: :meta private:
4444 field_name : ClassVar [str ] = 'prompt_tune'
4545
You can’t perform that action at this time.
0 commit comments