@juspay/neurolink 9.86.0 → 9.86.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.
@@ -35,5 +35,10 @@ export declare function loadAccountQuota(accountKey: string): Promise<AccountQuo
35
35
  * Update quota for a single account.
36
36
  * Updates in-memory cache immediately (non-blocking),
37
37
  * then debounces the disk write to every 5 seconds.
38
+ *
39
+ * Loads the persisted file into the cache before the first write so a save
40
+ * after a process restart merges with existing entries instead of rewriting
41
+ * the file with only the accounts used since boot (which silently erased
42
+ * other accounts' snapshots and blinded quota-aware routing to them).
38
43
  */
39
44
  export declare function saveAccountQuota(accountKey: string, quota: AccountQuota): Promise<void>;
@@ -174,10 +174,17 @@ export async function loadAccountQuota(accountKey) {
174
174
  * Update quota for a single account.
175
175
  * Updates in-memory cache immediately (non-blocking),
176
176
  * then debounces the disk write to every 5 seconds.
177
+ *
178
+ * Loads the persisted file into the cache before the first write so a save
179
+ * after a process restart merges with existing entries instead of rewriting
180
+ * the file with only the accounts used since boot (which silently erased
181
+ * other accounts' snapshots and blinded quota-aware routing to them).
177
182
  */
178
183
  export async function saveAccountQuota(accountKey, quota) {
184
+ if (!cacheLoaded) {
185
+ await loadAccountQuotas();
186
+ }
179
187
  memoryCache[accountKey] = quota;
180
- cacheLoaded = true;
181
188
  dirty = true;
182
189
  scheduleFlush();
183
190
  }
@@ -44,18 +44,32 @@ declare function resetEpochToMs(resetEpoch: number | undefined, now: number): nu
44
44
  * allow a couple of jittered same-account retries, then a short cooldown.
45
45
  */
46
46
  declare function planCooldownFor429(quota: AccountQuota | null, retryAfterMs: number, now: number): AccountCooldownPlan;
47
+ /**
48
+ * Seed each account's runtime quota from the persisted snapshots in
49
+ * ~/.neurolink/account-quotas.json (keyed by label). Runtime state is
50
+ * in-memory only, so without this the quota-aware ordering is blind after a
51
+ * proxy restart: all accounts tie, selection falls back to token-store
52
+ * enumeration order, and the first account served becomes self-reinforcing
53
+ * (it alone has data) — starving the others regardless of their resets.
54
+ * Never overwrites fresher in-memory quota; stale disk snapshots degrade
55
+ * gracefully because past reset timestamps are ignored by resetEpochToMs.
56
+ */
57
+ declare function seedRuntimeQuotasFromDisk(accounts: ProxyPassthroughAccount[]): Promise<void>;
47
58
  /**
48
59
  * Order accounts to MAXIMIZE quota utilization (fill-first, smart order):
49
60
  * spend the account whose window refreshes SOONEST first, so its about-to-reset
50
61
  * allowance isn't wasted, then move to accounts with longer-dated resets.
51
62
  *
52
63
  * Priority among usable accounts:
53
- * 1. soonest WEEKLY (7d) reset the scarce, use-it-or-lose-it ceiling
54
- * 2. soonest SESSION (5h) reset
55
- * 3. highest weekly utilization finish off the one closest to done
56
- * Accounts with no quota data yet keep insertion order (stable sort) and sit
57
- * after those with a known soonest reset. Cooling/rejected accounts sort last,
58
- * soonest-back-to-service first, as last resort.
64
+ * 1. no quota data yet probe first: one request reveals its windows and
65
+ * self-corrects the ordering. (Ranking unknowns last would starve them
66
+ * forever: never picked never observed never comparable.)
67
+ * 2. soonest WEEKLY (7d) reset — the scarce, use-it-or-lose-it ceiling
68
+ * 3. soonest SESSION (5h) reset
69
+ * 4. highest weekly utilization finish off the one closest to done
70
+ * 5. configured primary account, then insertion order
71
+ * Cooling/rejected accounts sort last, soonest-back-to-service first, as
72
+ * last resort.
59
73
  */
60
74
  declare function orderAccountsByQuota(accounts: ProxyPassthroughAccount[], now: number): ProxyPassthroughAccount[];
61
75
  /**
@@ -95,6 +109,8 @@ export declare const __testHooks: {
95
109
  planCooldownFor429: typeof planCooldownFor429;
96
110
  orderAccountsByQuota: typeof orderAccountsByQuota;
97
111
  resetEpochToMs: typeof resetEpochToMs;
112
+ seedRuntimeQuotasFromDisk: typeof seedRuntimeQuotasFromDisk;
113
+ getAccountRuntimeState: (key: string) => RuntimeAccountState | undefined;
98
114
  setConfiguredPrimaryAccountKey: (key: string | undefined) => void;
99
115
  getConfiguredPrimaryAccountKey: () => string | undefined;
100
116
  setPrimaryAccountIndex: (index: number) => void;
@@ -13,7 +13,7 @@ import { access, readFile } from "node:fs/promises";
13
13
  import { homedir } from "node:os";
14
14
  import { join } from "node:path";
15
15
  import { buildStableClaudeCodeBillingHeader, CLAUDE_CLI_USER_AGENT, CLAUDE_CODE_OAUTH_BETAS, getOrCreateClaudeCodeIdentity, parseClaudeCodeUserId, } from "../../auth/anthropicOAuth.js";
16
- import { parseQuotaHeaders, saveAccountQuota, } from "../../proxy/accountQuota.js";
16
+ import { loadAccountQuotas, parseQuotaHeaders, saveAccountQuota, } from "../../proxy/accountQuota.js";
17
17
  import { buildClaudeError, ClaudeStreamSerializer, generateToolUseId, parseClaudeRequest, serializeClaudeResponse, } from "../../proxy/claudeFormat.js";
18
18
  import { buildAnthropicModelsListResponse, buildTranslationOptions, extractText, extractToolArgs, extractUsageFromStreamResult, handleTranslatedJsonRequest, handleTranslatedStreamRequest, hasTranslatedOutput, } from "../../proxy/proxyTranslationEngine.js";
19
19
  import { tracers } from "../../telemetry/tracers.js";
@@ -242,6 +242,30 @@ function maybeCoolFromQuota(state, quota, now) {
242
242
  logger.always(`[proxy] proactively cooling account (${reason}) ~${minutesUntil(clamped, now)}m from success-response quota (status rejected)`);
243
243
  }
244
244
  }
245
+ /**
246
+ * Seed each account's runtime quota from the persisted snapshots in
247
+ * ~/.neurolink/account-quotas.json (keyed by label). Runtime state is
248
+ * in-memory only, so without this the quota-aware ordering is blind after a
249
+ * proxy restart: all accounts tie, selection falls back to token-store
250
+ * enumeration order, and the first account served becomes self-reinforcing
251
+ * (it alone has data) — starving the others regardless of their resets.
252
+ * Never overwrites fresher in-memory quota; stale disk snapshots degrade
253
+ * gracefully because past reset timestamps are ignored by resetEpochToMs.
254
+ */
255
+ async function seedRuntimeQuotasFromDisk(accounts) {
256
+ try {
257
+ const persisted = await loadAccountQuotas();
258
+ for (const account of accounts) {
259
+ const state = getOrCreateRuntimeState(account.key);
260
+ if (!state.quota && persisted[account.label]) {
261
+ state.quota = persisted[account.label];
262
+ }
263
+ }
264
+ }
265
+ catch {
266
+ // Non-fatal: seeding is best-effort; ordering falls back to probe-first.
267
+ }
268
+ }
245
269
  /** Quota-aware selection is on by default; disable with
246
270
  * NEUROLINK_PROXY_QUOTA_ROUTING=off|false|0. Only affects the fill-first
247
271
  * strategy (round-robin keeps strict rotation). */
@@ -260,6 +284,7 @@ function accountSortMetrics(accountKey, now) {
260
284
  const sessionRejected = q?.sessionStatus === "rejected" && sessionReset !== undefined;
261
285
  return {
262
286
  usable: !coolingActive && !weeklyRejected && !sessionRejected,
287
+ hasQuota: !!q,
263
288
  coolingUntil: st?.coolingUntil ?? 0,
264
289
  weeklyReset: weeklyReset ?? Number.POSITIVE_INFINITY,
265
290
  sessionReset: sessionReset ?? Number.POSITIVE_INFINITY,
@@ -272,14 +297,18 @@ function accountSortMetrics(accountKey, now) {
272
297
  * allowance isn't wasted, then move to accounts with longer-dated resets.
273
298
  *
274
299
  * Priority among usable accounts:
275
- * 1. soonest WEEKLY (7d) reset the scarce, use-it-or-lose-it ceiling
276
- * 2. soonest SESSION (5h) reset
277
- * 3. highest weekly utilization finish off the one closest to done
278
- * Accounts with no quota data yet keep insertion order (stable sort) and sit
279
- * after those with a known soonest reset. Cooling/rejected accounts sort last,
280
- * soonest-back-to-service first, as last resort.
300
+ * 1. no quota data yet probe first: one request reveals its windows and
301
+ * self-corrects the ordering. (Ranking unknowns last would starve them
302
+ * forever: never picked never observed never comparable.)
303
+ * 2. soonest WEEKLY (7d) reset — the scarce, use-it-or-lose-it ceiling
304
+ * 3. soonest SESSION (5h) reset
305
+ * 4. highest weekly utilization finish off the one closest to done
306
+ * 5. configured primary account, then insertion order
307
+ * Cooling/rejected accounts sort last, soonest-back-to-service first, as
308
+ * last resort.
281
309
  */
282
310
  function orderAccountsByQuota(accounts, now) {
311
+ const primaryKey = configuredPrimaryAccountKey;
283
312
  return [...accounts].sort((a, b) => {
284
313
  const ma = accountSortMetrics(a.key, now);
285
314
  const mb = accountSortMetrics(b.key, now);
@@ -291,13 +320,22 @@ function orderAccountsByQuota(accounts, now) {
291
320
  const bu = mb.coolingUntil || Number.POSITIVE_INFINITY;
292
321
  return au - bu;
293
322
  }
323
+ if (ma.hasQuota !== mb.hasQuota) {
324
+ return ma.hasQuota ? 1 : -1;
325
+ }
294
326
  if (ma.weeklyReset !== mb.weeklyReset) {
295
327
  return ma.weeklyReset - mb.weeklyReset;
296
328
  }
297
329
  if (ma.sessionReset !== mb.sessionReset) {
298
330
  return ma.sessionReset - mb.sessionReset;
299
331
  }
300
- return mb.weeklyUsed - ma.weeklyUsed;
332
+ if (ma.weeklyUsed !== mb.weeklyUsed) {
333
+ return mb.weeklyUsed - ma.weeklyUsed;
334
+ }
335
+ if (primaryKey && (a.key === primaryKey) !== (b.key === primaryKey)) {
336
+ return a.key === primaryKey ? -1 : 1;
337
+ }
338
+ return 0;
301
339
  });
302
340
  }
303
341
  // ---------------------------------------------------------------------------
@@ -1280,6 +1318,7 @@ async function loadClaudeProxyAccounts(args) {
1280
1318
  state.lastToken = account.token;
1281
1319
  state.lastRefreshToken = account.refreshToken;
1282
1320
  }
1321
+ await seedRuntimeQuotasFromDisk(accounts);
1283
1322
  const enabledAccounts = accounts.filter((account) => {
1284
1323
  return !getOrCreateRuntimeState(account.key).permanentlyDisabled;
1285
1324
  });
@@ -3777,6 +3816,11 @@ export const __testHooks = {
3777
3816
  planCooldownFor429,
3778
3817
  orderAccountsByQuota,
3779
3818
  resetEpochToMs,
3819
+ seedRuntimeQuotasFromDisk,
3820
+ getAccountRuntimeState: (key) => {
3821
+ const state = accountRuntimeState.get(key);
3822
+ return state ? { ...state } : undefined;
3823
+ },
3780
3824
  setConfiguredPrimaryAccountKey: (key) => {
3781
3825
  configuredPrimaryAccountKey = key;
3782
3826
  },
@@ -35,5 +35,10 @@ export declare function loadAccountQuota(accountKey: string): Promise<AccountQuo
35
35
  * Update quota for a single account.
36
36
  * Updates in-memory cache immediately (non-blocking),
37
37
  * then debounces the disk write to every 5 seconds.
38
+ *
39
+ * Loads the persisted file into the cache before the first write so a save
40
+ * after a process restart merges with existing entries instead of rewriting
41
+ * the file with only the accounts used since boot (which silently erased
42
+ * other accounts' snapshots and blinded quota-aware routing to them).
38
43
  */
39
44
  export declare function saveAccountQuota(accountKey: string, quota: AccountQuota): Promise<void>;
@@ -174,10 +174,17 @@ export async function loadAccountQuota(accountKey) {
174
174
  * Update quota for a single account.
175
175
  * Updates in-memory cache immediately (non-blocking),
176
176
  * then debounces the disk write to every 5 seconds.
177
+ *
178
+ * Loads the persisted file into the cache before the first write so a save
179
+ * after a process restart merges with existing entries instead of rewriting
180
+ * the file with only the accounts used since boot (which silently erased
181
+ * other accounts' snapshots and blinded quota-aware routing to them).
177
182
  */
178
183
  export async function saveAccountQuota(accountKey, quota) {
184
+ if (!cacheLoaded) {
185
+ await loadAccountQuotas();
186
+ }
179
187
  memoryCache[accountKey] = quota;
180
- cacheLoaded = true;
181
188
  dirty = true;
182
189
  scheduleFlush();
183
190
  }
@@ -44,18 +44,32 @@ declare function resetEpochToMs(resetEpoch: number | undefined, now: number): nu
44
44
  * allow a couple of jittered same-account retries, then a short cooldown.
45
45
  */
46
46
  declare function planCooldownFor429(quota: AccountQuota | null, retryAfterMs: number, now: number): AccountCooldownPlan;
47
+ /**
48
+ * Seed each account's runtime quota from the persisted snapshots in
49
+ * ~/.neurolink/account-quotas.json (keyed by label). Runtime state is
50
+ * in-memory only, so without this the quota-aware ordering is blind after a
51
+ * proxy restart: all accounts tie, selection falls back to token-store
52
+ * enumeration order, and the first account served becomes self-reinforcing
53
+ * (it alone has data) — starving the others regardless of their resets.
54
+ * Never overwrites fresher in-memory quota; stale disk snapshots degrade
55
+ * gracefully because past reset timestamps are ignored by resetEpochToMs.
56
+ */
57
+ declare function seedRuntimeQuotasFromDisk(accounts: ProxyPassthroughAccount[]): Promise<void>;
47
58
  /**
48
59
  * Order accounts to MAXIMIZE quota utilization (fill-first, smart order):
49
60
  * spend the account whose window refreshes SOONEST first, so its about-to-reset
50
61
  * allowance isn't wasted, then move to accounts with longer-dated resets.
51
62
  *
52
63
  * Priority among usable accounts:
53
- * 1. soonest WEEKLY (7d) reset the scarce, use-it-or-lose-it ceiling
54
- * 2. soonest SESSION (5h) reset
55
- * 3. highest weekly utilization finish off the one closest to done
56
- * Accounts with no quota data yet keep insertion order (stable sort) and sit
57
- * after those with a known soonest reset. Cooling/rejected accounts sort last,
58
- * soonest-back-to-service first, as last resort.
64
+ * 1. no quota data yet probe first: one request reveals its windows and
65
+ * self-corrects the ordering. (Ranking unknowns last would starve them
66
+ * forever: never picked never observed never comparable.)
67
+ * 2. soonest WEEKLY (7d) reset — the scarce, use-it-or-lose-it ceiling
68
+ * 3. soonest SESSION (5h) reset
69
+ * 4. highest weekly utilization finish off the one closest to done
70
+ * 5. configured primary account, then insertion order
71
+ * Cooling/rejected accounts sort last, soonest-back-to-service first, as
72
+ * last resort.
59
73
  */
60
74
  declare function orderAccountsByQuota(accounts: ProxyPassthroughAccount[], now: number): ProxyPassthroughAccount[];
61
75
  /**
@@ -95,6 +109,8 @@ export declare const __testHooks: {
95
109
  planCooldownFor429: typeof planCooldownFor429;
96
110
  orderAccountsByQuota: typeof orderAccountsByQuota;
97
111
  resetEpochToMs: typeof resetEpochToMs;
112
+ seedRuntimeQuotasFromDisk: typeof seedRuntimeQuotasFromDisk;
113
+ getAccountRuntimeState: (key: string) => RuntimeAccountState | undefined;
98
114
  setConfiguredPrimaryAccountKey: (key: string | undefined) => void;
99
115
  getConfiguredPrimaryAccountKey: () => string | undefined;
100
116
  setPrimaryAccountIndex: (index: number) => void;
@@ -13,7 +13,7 @@ import { access, readFile } from "node:fs/promises";
13
13
  import { homedir } from "node:os";
14
14
  import { join } from "node:path";
15
15
  import { buildStableClaudeCodeBillingHeader, CLAUDE_CLI_USER_AGENT, CLAUDE_CODE_OAUTH_BETAS, getOrCreateClaudeCodeIdentity, parseClaudeCodeUserId, } from "../../auth/anthropicOAuth.js";
16
- import { parseQuotaHeaders, saveAccountQuota, } from "../../proxy/accountQuota.js";
16
+ import { loadAccountQuotas, parseQuotaHeaders, saveAccountQuota, } from "../../proxy/accountQuota.js";
17
17
  import { buildClaudeError, ClaudeStreamSerializer, generateToolUseId, parseClaudeRequest, serializeClaudeResponse, } from "../../proxy/claudeFormat.js";
18
18
  import { buildAnthropicModelsListResponse, buildTranslationOptions, extractText, extractToolArgs, extractUsageFromStreamResult, handleTranslatedJsonRequest, handleTranslatedStreamRequest, hasTranslatedOutput, } from "../../proxy/proxyTranslationEngine.js";
19
19
  import { tracers } from "../../telemetry/tracers.js";
@@ -242,6 +242,30 @@ function maybeCoolFromQuota(state, quota, now) {
242
242
  logger.always(`[proxy] proactively cooling account (${reason}) ~${minutesUntil(clamped, now)}m from success-response quota (status rejected)`);
243
243
  }
244
244
  }
245
+ /**
246
+ * Seed each account's runtime quota from the persisted snapshots in
247
+ * ~/.neurolink/account-quotas.json (keyed by label). Runtime state is
248
+ * in-memory only, so without this the quota-aware ordering is blind after a
249
+ * proxy restart: all accounts tie, selection falls back to token-store
250
+ * enumeration order, and the first account served becomes self-reinforcing
251
+ * (it alone has data) — starving the others regardless of their resets.
252
+ * Never overwrites fresher in-memory quota; stale disk snapshots degrade
253
+ * gracefully because past reset timestamps are ignored by resetEpochToMs.
254
+ */
255
+ async function seedRuntimeQuotasFromDisk(accounts) {
256
+ try {
257
+ const persisted = await loadAccountQuotas();
258
+ for (const account of accounts) {
259
+ const state = getOrCreateRuntimeState(account.key);
260
+ if (!state.quota && persisted[account.label]) {
261
+ state.quota = persisted[account.label];
262
+ }
263
+ }
264
+ }
265
+ catch {
266
+ // Non-fatal: seeding is best-effort; ordering falls back to probe-first.
267
+ }
268
+ }
245
269
  /** Quota-aware selection is on by default; disable with
246
270
  * NEUROLINK_PROXY_QUOTA_ROUTING=off|false|0. Only affects the fill-first
247
271
  * strategy (round-robin keeps strict rotation). */
@@ -260,6 +284,7 @@ function accountSortMetrics(accountKey, now) {
260
284
  const sessionRejected = q?.sessionStatus === "rejected" && sessionReset !== undefined;
261
285
  return {
262
286
  usable: !coolingActive && !weeklyRejected && !sessionRejected,
287
+ hasQuota: !!q,
263
288
  coolingUntil: st?.coolingUntil ?? 0,
264
289
  weeklyReset: weeklyReset ?? Number.POSITIVE_INFINITY,
265
290
  sessionReset: sessionReset ?? Number.POSITIVE_INFINITY,
@@ -272,14 +297,18 @@ function accountSortMetrics(accountKey, now) {
272
297
  * allowance isn't wasted, then move to accounts with longer-dated resets.
273
298
  *
274
299
  * Priority among usable accounts:
275
- * 1. soonest WEEKLY (7d) reset the scarce, use-it-or-lose-it ceiling
276
- * 2. soonest SESSION (5h) reset
277
- * 3. highest weekly utilization finish off the one closest to done
278
- * Accounts with no quota data yet keep insertion order (stable sort) and sit
279
- * after those with a known soonest reset. Cooling/rejected accounts sort last,
280
- * soonest-back-to-service first, as last resort.
300
+ * 1. no quota data yet probe first: one request reveals its windows and
301
+ * self-corrects the ordering. (Ranking unknowns last would starve them
302
+ * forever: never picked never observed never comparable.)
303
+ * 2. soonest WEEKLY (7d) reset — the scarce, use-it-or-lose-it ceiling
304
+ * 3. soonest SESSION (5h) reset
305
+ * 4. highest weekly utilization finish off the one closest to done
306
+ * 5. configured primary account, then insertion order
307
+ * Cooling/rejected accounts sort last, soonest-back-to-service first, as
308
+ * last resort.
281
309
  */
282
310
  function orderAccountsByQuota(accounts, now) {
311
+ const primaryKey = configuredPrimaryAccountKey;
283
312
  return [...accounts].sort((a, b) => {
284
313
  const ma = accountSortMetrics(a.key, now);
285
314
  const mb = accountSortMetrics(b.key, now);
@@ -291,13 +320,22 @@ function orderAccountsByQuota(accounts, now) {
291
320
  const bu = mb.coolingUntil || Number.POSITIVE_INFINITY;
292
321
  return au - bu;
293
322
  }
323
+ if (ma.hasQuota !== mb.hasQuota) {
324
+ return ma.hasQuota ? 1 : -1;
325
+ }
294
326
  if (ma.weeklyReset !== mb.weeklyReset) {
295
327
  return ma.weeklyReset - mb.weeklyReset;
296
328
  }
297
329
  if (ma.sessionReset !== mb.sessionReset) {
298
330
  return ma.sessionReset - mb.sessionReset;
299
331
  }
300
- return mb.weeklyUsed - ma.weeklyUsed;
332
+ if (ma.weeklyUsed !== mb.weeklyUsed) {
333
+ return mb.weeklyUsed - ma.weeklyUsed;
334
+ }
335
+ if (primaryKey && (a.key === primaryKey) !== (b.key === primaryKey)) {
336
+ return a.key === primaryKey ? -1 : 1;
337
+ }
338
+ return 0;
301
339
  });
302
340
  }
303
341
  // ---------------------------------------------------------------------------
@@ -1280,6 +1318,7 @@ async function loadClaudeProxyAccounts(args) {
1280
1318
  state.lastToken = account.token;
1281
1319
  state.lastRefreshToken = account.refreshToken;
1282
1320
  }
1321
+ await seedRuntimeQuotasFromDisk(accounts);
1283
1322
  const enabledAccounts = accounts.filter((account) => {
1284
1323
  return !getOrCreateRuntimeState(account.key).permanentlyDisabled;
1285
1324
  });
@@ -3777,6 +3816,11 @@ export const __testHooks = {
3777
3816
  planCooldownFor429,
3778
3817
  orderAccountsByQuota,
3779
3818
  resetEpochToMs,
3819
+ seedRuntimeQuotasFromDisk,
3820
+ getAccountRuntimeState: (key) => {
3821
+ const state = accountRuntimeState.get(key);
3822
+ return state ? { ...state } : undefined;
3823
+ },
3780
3824
  setConfiguredPrimaryAccountKey: (key) => {
3781
3825
  configuredPrimaryAccountKey = key;
3782
3826
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "9.86.0",
3
+ "version": "9.86.1",
4
4
  "packageManager": "pnpm@10.15.1",
5
5
  "description": "Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applications with 21+ providers: OpenAI, Anthropic, Google AI Studio, Google Vertex, AWS Bedrock, Azure OpenAI, Mistral, LiteLLM, SageMaker, Hugging Face, Ollama, OpenAI-compatible, OpenRouter, DeepSeek, NVIDIA NIM, LM Studio, llama.cpp, plus voice (OpenAI TTS, ElevenLabs, Deepgram, Azure Speech).",
6
6
  "author": {