| 15 | |
| 16 | |
| 17 | class ScriptConfig(BaseConfig): |
| 18 | def __init__(self): |
| 19 | super().__init__() |
| 20 | self.max_tokens = 1024 |
| 21 | self.temperature = 0.6 |
| 22 | |
| 23 | |
| 24 | def run_inference(item, config: ScriptConfig): |
nothing calls this directly
no outgoing calls
no test coverage detected