9 lines
90 B
Python
9 lines
90 B
Python
from typing import Literal
|
|
|
|
|
|
InputMode = Literal[
|
|
"image",
|
|
"video",
|
|
"text",
|
|
]
|