Create, manage & inspect agent sessions with Console, which comes prebuilt and served with the CoralOS Server.
Install dependencies with:
yarn installThen, start a development server to view your changes:
yarn devConnecting to a local CoralOS Server will require a proxy in your vite.config.ts file:
server: {
proxy: {
'/api': { target: 'http://localhost:5555', changeOrigin: true },
'/sse': { target: 'http://localhost:5555', changeOrigin: true },
'/ws': { target: 'http://localhost:5555', rewriteWsOrigin: true, ws: true }
}
},