@amaster.ai/tts-client 1.1.3 → 1.1.4

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 +1 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -213,9 +213,7 @@ interface TTSClient {
213
213
  ```tsx
214
214
  import { createClient } from "@amaster.ai/client";
215
215
 
216
- const client = createClient({
217
- baseURL: "https://api.amaster.ai",
218
- });
216
+ const client = createClient();
219
217
 
220
218
  const ttsClient = client.tts({
221
219
  voice: "Cherry",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amaster.ai/tts-client",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Qwen TTS Realtime WebSocket client with audio playback",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",