| 24 | |
| 25 | |
| 26 | class ScriptConfig(GSM8kConfig): |
| 27 | def __init__(self): |
| 28 | super().__init__() |
| 29 | self.stop_strings = ["Q:", "Question:"] |
| 30 | self.temperature = 0.6 |
| 31 | self.max_tokens = 8192 |
| 32 | self.n = 1 |
| 33 | self.limit = None |
| 34 | |
| 35 | |
| 36 | def run_inference(item, config: ScriptConfig): |
nothing calls this directly
no outgoing calls
no test coverage detected