| 3 | |
| 4 | |
| 5 | class ScriptConfig(pydra.Config): |
| 6 | model: str |
| 7 | |
| 8 | def __init__(self): |
| 9 | super().__init__() |
| 10 | self.allow_patterns = ["*.safetensors", "*.json"] |
| 11 | |
| 12 | |
| 13 | def download(config: ScriptConfig): |
nothing calls this directly
no outgoing calls
no test coverage detected