Get a Ray actor for the explorer.
(cls, config: Config)
| 624 | |
| 625 | @classmethod |
| 626 | def get_actor(cls, config: Config): |
| 627 | """Get a Ray actor for the explorer.""" |
| 628 | return ( |
| 629 | ray.remote(cls) |
| 630 | .options( |
| 631 | name=config.explorer.name, |
| 632 | namespace=config.ray_namespace, |
| 633 | ) |
| 634 | .remote(config) |
| 635 | ) |