| 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 "" |