Local runner that serves Orca built frontend with API/WS proxy to your agent backend
npm install @orcapt/uiLocal runner that serves Orca built frontend with API/WS proxy to your agent backend.
``bash`
npm install -g @orcapt/uior
npm install @orcapt/ui
`bash`
npx @orcapt/ui --port=3000 --agent-port=5001or if installed globally
orcapt-ui --port 3000 --agent-port 5001
- --port: port to serve frontend (default: 3000)--host
- : bind address (default: 127.0.0.1)--agent-port
- : local agent port (default: 5000)--agent-url
- : override full agent URL (e.g., http://localhost:8000)--api-prefix
- : path prefix for API proxy (default: /api)--ws-prefix
- : path prefix for WS proxy (default: /ws)--cors
- : enable permissive CORS (default: false)--open
- : open browser on start (default: false)
- Static frontend: Served from /
- Proxy: All /api/ and /ws/` requests → forwarded to your agent backend
- Your backend should handle all API logic including file uploads
Note: Upload functionality should be handled by your agent backend, not this UI package.