| 14 | |
| 15 | |
| 16 | class ScriptConfig(GSM8kConfig): |
| 17 | def __init__(self): |
| 18 | super().__init__() |
| 19 | self.stop_strings = ["U:", "User:"] |
| 20 | self.temperature = 0.6 |
| 21 | self.max_tokens = 8192 |
| 22 | self.n = 1 |
| 23 | self.limit = None |
| 24 | |
| 25 | |
| 26 | def run_inference(item, config: ScriptConfig): |
nothing calls this directly
no outgoing calls
no test coverage detected