@cimulate/copilot-sdk 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -23,7 +23,7 @@ npm install @cimulate/copilot-sdk
23
23
  ```javascript
24
24
  const client = new CimulateCopilot({
25
25
  apiKey: "your-api-key",
26
- baseUrl: "https://your.copilot.url",
26
+ baseUrl: "https://staging.copilot.search.cimulate.ai",
27
27
  namespace: "/copilot",
28
28
  socketioPath: "/api/v1/socket.io",
29
29
  transports: ["polling", "websocket"],
@@ -36,7 +36,7 @@ const client = new CimulateCopilot({
36
36
  ```javascript
37
37
  const client = new CimulateCopilot({
38
38
  apiKey: "your-api-key",
39
- baseUrl: "https://your.copilot.url",
39
+ baseUrl: "https://staging.copilot.search.cimulate.ai",
40
40
  namespace: "/copilot",
41
41
  socketioPath: "/api/v1/socket.io",
42
42
  transports: ["polling"],
@@ -49,12 +49,12 @@ const client = new CimulateCopilot({
49
49
  ## Example Usage
50
50
 
51
51
  ```javascript
52
- import { CimulateCopilot } from 'cimulate-copilot';
52
+ import { CimulateCopilot } from '@cimulate/copilot-sdk';
53
53
 
54
54
  // Establish Connection
55
55
  const client = new CimulateCopilot({
56
56
  apiKey: "your-api-key",
57
- baseUrl: "https://your.copilot.url",
57
+ baseUrl: "https://staging.copilot.search.cimulate.ai",
58
58
  namespace: "/copilot",
59
59
  socketioPath: "/api/v1/socket.io",
60
60
  transports: ["polling", "websocket"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cimulate/copilot-sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A lightweight API client SDK for Cimulate Copilot",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",