Skip to content

Commit

Permalink
Update py_openvino_genai.pyi
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov authored Dec 18, 2024
1 parent 8170f5e commit 2ee1544
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/python/openvino_genai/py_openvino_genai.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -1343,15 +1343,18 @@ class Scheduler:
FLOW_MATCH_EULER_DISCRETE
PNDM
EULER_ANCESTRAL_DISCRETE
"""
AUTO: typing.ClassVar[Scheduler.Type] # value = <Type.AUTO: 0>
DDIM: typing.ClassVar[Scheduler.Type] # value = <Type.DDIM: 3>
EULER_ANCESTRAL_DISCRETE: typing.ClassVar[Scheduler.Type] # value = <Type.EULER_ANCESTRAL_DISCRETE: 7>
EULER_DISCRETE: typing.ClassVar[Scheduler.Type] # value = <Type.EULER_DISCRETE: 4>
FLOW_MATCH_EULER_DISCRETE: typing.ClassVar[Scheduler.Type] # value = <Type.FLOW_MATCH_EULER_DISCRETE: 5>
LCM: typing.ClassVar[Scheduler.Type] # value = <Type.LCM: 1>
LMS_DISCRETE: typing.ClassVar[Scheduler.Type] # value = <Type.LMS_DISCRETE: 2>
PNDM: typing.ClassVar[Scheduler.Type] # value = <Type.PNDM: 6>
__members__: typing.ClassVar[dict[str, Scheduler.Type]] # value = {'AUTO': <Type.AUTO: 0>, 'LCM': <Type.LCM: 1>, 'LMS_DISCRETE': <Type.LMS_DISCRETE: 2>, 'DDIM': <Type.DDIM: 3>, 'EULER_DISCRETE': <Type.EULER_DISCRETE: 4>, 'FLOW_MATCH_EULER_DISCRETE': <Type.FLOW_MATCH_EULER_DISCRETE: 5>, 'PNDM': <Type.PNDM: 6>}
__members__: typing.ClassVar[dict[str, Scheduler.Type]] # value = {'AUTO': <Type.AUTO: 0>, 'LCM': <Type.LCM: 1>, 'LMS_DISCRETE': <Type.LMS_DISCRETE: 2>, 'DDIM': <Type.DDIM: 3>, 'EULER_DISCRETE': <Type.EULER_DISCRETE: 4>, 'FLOW_MATCH_EULER_DISCRETE': <Type.FLOW_MATCH_EULER_DISCRETE: 5>, 'PNDM': <Type.PNDM: 6>, 'EULER_ANCESTRAL_DISCRETE': <Type.EULER_ANCESTRAL_DISCRETE: 7>}
def __eq__(self, other: typing.Any) -> bool:
...
def __getstate__(self) -> int:
Expand Down

0 comments on commit 2ee1544

Please sign in to comment.