@ottocode/web-sdk 0.1.232 → 0.1.233

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/README.md CHANGED
@@ -128,7 +128,7 @@ import { apiClient, SSEClient } from '@ottocode/web-sdk/lib';
128
128
  const sessions = await apiClient.getSessions();
129
129
 
130
130
  // Use the SSE client for streaming
131
- const sseClient = new SSEClient('/api/sessions/123/stream');
131
+ const sseClient = new SSEClient('/v1/sessions/123/stream');
132
132
  sseClient.onMessage((data) => console.log(data));
133
133
  ```
134
134