| 5 | |
| 6 | |
| 7 | class ScriptConfig(pydra.Config): |
| 8 | prompt: str |
| 9 | |
| 10 | model: str = "" |
| 11 | port: int = 10210 |
| 12 | host: str = "0.0.0.0" |
| 13 | chat: bool = False |
| 14 | max_tokens: int = 100 |
| 15 | n: int = 1 |
| 16 | temperature: float = 0.0 |
| 17 | hide: bool = False |
| 18 | retries: int = 0 |
| 19 | |
| 20 | |
| 21 | def ping(config: ScriptConfig): |
nothing calls this directly
no outgoing calls
no test coverage detected