> ## Documentation Index
> Fetch the complete documentation index at: https://docs.generalrobotics.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# HubResult

> Result from a published inference request

```python theme={null}
from grid_cortex_client import HubResult
```

Result from a published inference request.

Attributes:
request\_id: The ID provided when publishing the request
model: The model that produced this result
data: The inference output (postprocessed)
ok: Whether the request succeeded
error: Error message if ok=False

## Constructor

```python theme={null}
HubResult(request_id: str, model: str, data: Any, ok: bool = True, error: Optional[str] = None)
```


## Related topics

- [CortexHubClient](/python-api/grid-cortex-client/cortexhubclient.md)
- [grid-cortex-client](/python-api/grid-cortex-client/overview.md)
- [GRID Cortex Client](/models/cortex.md)
- [CortexHubError](/python-api/grid-cortex-client/cortexhuberror.md)
- [graspgen](/models/cortex/graspgen.md)
