File size: 411 Bytes
7f3f41b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | class Model:
def __init__(self):
"""
Initialize the model
"""
pass
def Run(self, file, inp):
"""
Given the file and input prompt, run the model and return the response
file: Video file path
inp: Input prompt
"""
return ""
def name():
"""
Return the name of the model
"""
return "" |