Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 5 additions & 12 deletions docs/content/docs/cua/guide/get-started/using-computer-sdk.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -321,19 +321,12 @@ The Computer SDK lets you connect to your sandbox and perform basic interactions
```
</Tab>
<Tab value="Your host desktop">
First, install and run `cua-computer-server`:
```bash
pip install cua-computer-server
python -m computer_server
```
<Callout type="info" title="Host desktop support (TypeScript)">
Connecting to a local host desktop is currently supported in **Python only** via `cua-computer-server`.
The TypeScript SDK does not yet support host desktop connections.

Then, use the `Computer` object to connect:
```typescript
import { Computer } from '@trycua/computer';

const computer = new Computer({ useHostComputerServer: true });
await computer.run(); // Connect to the host desktop
```
Feature parity is planned (see [#916](https://github.com/trycua/cua/issues/916)).
</Callout>
</Tab>
</Tabs>

Expand Down