This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Standalone template for developing a new video calculator. | |
| This file is intentionally independent from the production repository. | |
| Developers should copy it into their own project and implement a new calculator | |
| by editing the example subclasses near the bottom. | |
| What this template standardizes: | |
| - Input shape: every calculator receives `VideoInput` or `list[VideoInput]`. | |
| - Runtime device: every calculator receives a `DeviceConfig`. |