mulmocast 1.2.49 → 1.2.50

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,12 +35,12 @@ export const ttsOpenaiAgent = async ({ namedInputs, params, config, }) => {
35
35
  GraphAILogger.error(error);
36
36
  if (error instanceof AuthenticationError) {
37
37
  throw new Error("Failed to generate image: 401 Incorrect API key provided with OpenAI", {
38
- cause: agentIncorrectAPIKeyError("imageOpenaiAgent", audioAction, audioFileTarget),
38
+ cause: agentIncorrectAPIKeyError("ttsOpenaiAgent", audioAction, audioFileTarget),
39
39
  });
40
40
  }
41
41
  if (error instanceof RateLimitError) {
42
42
  throw new Error("You exceeded your current quota", {
43
- cause: agentAPIRateLimitError("imageOpenaiAgent", audioAction, audioFileTarget),
43
+ cause: agentAPIRateLimitError("ttsOpenaiAgent", audioAction, audioFileTarget),
44
44
  });
45
45
  }
46
46
  if (error && typeof error === "object" && "error" in error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mulmocast",
3
- "version": "1.2.49",
3
+ "version": "1.2.50",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "lib/index.node.js",
@@ -85,7 +85,7 @@
85
85
  "@modelcontextprotocol/sdk": "^1.19.1",
86
86
  "@mozilla/readability": "^0.6.0",
87
87
  "@tavily/core": "^0.5.11",
88
- "clipboardy": "^5.0.0",
88
+ "clipboardy": "^4.0.0",
89
89
  "dotenv": "^17.2.3",
90
90
  "fluent-ffmpeg": "^2.1.3",
91
91
  "graphai": "^2.0.16",