> ## 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.

# grid-cortex-client

> Python client for GRID Cortex

Python client for GRID Cortex — cloud model inference for robotics: depth, detection, segmentation, grasping, VLMs, and VLA policies behind one `run()` call.

## Install

```bash theme={null}
pip install grid-cortex-client
```

## Quickstart

```python theme={null}
from grid_cortex_client import CortexClient, ModelType

client = CortexClient()  # reads GRID_CORTEX_API_KEY from the environment
depth = client.run(ModelType.ZOEDEPTH, image_input="scene.jpg")
```

Every hosted model and its inputs/outputs is documented in the **Cortex Models** section of the sidebar.

## Classes

* [`CortexClient`](/python-api/grid-cortex-client/cortexclient)
* [`AsyncCortexClient`](/python-api/grid-cortex-client/asynccortexclient)
* [`CortexHubClient`](/python-api/grid-cortex-client/cortexhubclient)
* [`CortexHubError`](/python-api/grid-cortex-client/cortexhuberror)
* [`HubResult`](/python-api/grid-cortex-client/hubresult)


## Related topics

- [GRID Cortex Client](/models/cortex.md)
- [Overview](/models/overview.md)
- [Your first session](/get-started/first-session.md)
- [Your first skill](/get-started/first-skill.md)
- [Get started](/get-started/installation.md)
