@usewhisper/sdk 2.2.1 → 3.1.0

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 (6) hide show
  1. package/README.md +2 -2
  2. package/index.d.mts +753 -5
  3. package/index.d.ts +753 -5
  4. package/index.js +2126 -148
  5. package/index.mjs +2110 -148
  6. package/package.json +2 -1
package/README.md CHANGED
@@ -14,7 +14,7 @@ npm install @usewhisper/sdk
14
14
  import { WhisperContext } from '@usewhisper/sdk';
15
15
 
16
16
  const whisper = new WhisperContext({
17
- apiKey: 'wsk_your_api_key_here'
17
+ apiKey: 'wsk_your_api_key_here'
18
18
  });
19
19
 
20
20
  // Create a project
@@ -48,7 +48,7 @@ Get your API key from the [Whisper dashboard](https://usewhisper.dev/dashboard):
48
48
 
49
49
  ```typescript
50
50
  const whisper = new WhisperContext({
51
- apiKey: 'wsk_...', // Your API key
51
+ apiKey: 'wsk_...', // Your API key
52
52
  baseUrl: 'https://context.usewhisper.dev' // Optional, defaults to production
53
53
  });
54
54
  ```