| 54 | |
| 55 | @dataclass(frozen=True) |
| 56 | class FSRuntimeConfig: |
| 57 | scene_id: str |
| 58 | file_size_bytes: int |
| 59 | chunk_size_bytes: int |
| 60 | files_per_worker: int |
| 61 | cache_max_bytes: int |
| 62 | agent_instance_keys: tuple[str, ...] |
| 63 | |
| 64 | |
| 65 | @dataclass |
no outgoing calls
no test coverage detected