> For the complete documentation index, see [llms.txt](https://docs.eyepop.ai/developer-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eyepop.ai/developer-documentation/deploying/cloud/development.md).

# Development

Iterate quickly against a transient cloud session

For building and testing, the SDK creates a **transient session** on demand. You connect, run inference, and the session idles out when you stop — nothing to provision or tear down.

### Connect and run

Provide a Pop when you open the session so EyePop can schedule the right compute before any media is processed.

{% tabs %}
{% tab title="Python" %}

```python
from eyepop import EyePopSdk
from eyepop.worker.worker_types import InferenceComponent, Pop

pop = Pop(components=[
    InferenceComponent(ability="eyepop.person:latest")
])

with EyePopSdk.sync_worker(pop=pop) as endpoint:
    result = endpoint.upload("image.jpg").predict()
    print(result)
```

{% endtab %}

{% tab title="Node" %}

```typescript
import { EyePop, PopComponentType } from '@eyepop.ai/eyepop'

const endpoint = await EyePop.workerEndpoint({
    pop: {
        components: [
            { type: PopComponentType.INFERENCE, ability: 'eyepop.person:latest' },
        ],
    },
}).connect()

try {
    const results = await endpoint.process({ source: { path: 'image.jpg' } })
    for await (const result of results) {
        console.log(result)
    }
} finally {
    await endpoint.disconnect()
}
```

{% endtab %}
{% endtabs %}

A new transient session is created each time you connect with a Pop, and the pipeline it created is deleted when you disconnect. The SDK does not delete the session; it idles out on its own once you stop using it. Models load on first use, so the first request carries a cold start — when you need production latency, promote the same Pop to a persistent [Deployment](/developer-documentation/deploying/cloud/deployment.md).

For video, streaming, image groups, and visualization, open the Python SDK or Node SDK section in this site's navigation.

### Next steps

* [Deployment](/developer-documentation/deploying/cloud/deployment.md) — promote to a persistent session with no cold start
* [Pops](/developer-documentation/platform/pop.md) — chain abilities into a pipeline
* [Quickstart](/developer-documentation/quickstart.md) — the shortest walkthrough from zero
