cloudflare-openhands-sdk 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +2 -3
- package/README.md +3 -1
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -14,6 +14,5 @@ RUN git clone https://github.com/OpenHands/software-agent-sdk.git && \
|
|
|
14
14
|
cd software-agent-sdk && \
|
|
15
15
|
make build
|
|
16
16
|
|
|
17
|
-
#
|
|
18
|
-
EXPOSE
|
|
19
|
-
|
|
17
|
+
# Allows access to exposed ports from the default OpenHands port during local development
|
|
18
|
+
EXPOSE 8001
|
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
SDK for integrating OpenHands agent-server with Cloudflare Workers Sandbox.
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
7
9
|
```bash
|
|
@@ -15,7 +17,7 @@ bun add cloudflare-openhands-sdk
|
|
|
15
17
|
## Prerequisites
|
|
16
18
|
|
|
17
19
|
- `@cloudflare/sandbox` (peer dependency) - Install in your Worker project
|
|
18
|
-
- Cloudflare Workers account
|
|
20
|
+
- Cloudflare Workers Paid account
|
|
19
21
|
- Custom domain (required for preview URLs)
|
|
20
22
|
|
|
21
23
|
## Quick Start
|