@mux/ai 0.3.0 → 0.4.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.
- package/README.md +5 -5
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/workflows/index.js +7 -1
- package/dist/workflows/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -83,12 +83,12 @@ S3_SECRET_ACCESS_KEY=your-secret-key
|
|
|
83
83
|
|
|
84
84
|
| Workflow | Description | Providers | Default Models | Mux Asset Requirements | Cloud Infrastructure Requirements |
|
|
85
85
|
| ------------------------------------------------------------------------ | ----------------------------------------------------------------- | ------------------------- | ------------------------------------------------------------------ | ---------------------- | --------------------------------- |
|
|
86
|
-
| [`getSummaryAndTags`](./docs/WORKFLOWS.md#video-summarization)<br/>[API](./docs/API.md#getsummaryandtagsassetid-options) · [Source](./src/workflows/summarization.ts) | Generate titles, descriptions, and tags for an asset | OpenAI, Anthropic, Google | `gpt-5.1` (OpenAI), `claude-sonnet-4-5` (Anthropic), `gemini-
|
|
86
|
+
| [`getSummaryAndTags`](./docs/WORKFLOWS.md#video-summarization)<br/>[API](./docs/API.md#getsummaryandtagsassetid-options) · [Source](./src/workflows/summarization.ts) | Generate titles, descriptions, and tags for an asset | OpenAI, Anthropic, Google | `gpt-5.1` (OpenAI), `claude-sonnet-4-5` (Anthropic), `gemini-3-flash-preview` (Google) | Video (required), Captions (optional) | None |
|
|
87
87
|
| [`getModerationScores`](./docs/WORKFLOWS.md#content-moderation)<br/>[API](./docs/API.md#getmoderationscoresassetid-options) · [Source](./src/workflows/moderation.ts) | Detect inappropriate (sexual or violent) content in an asset | OpenAI, Hive | `omni-moderation-latest` (OpenAI) or Hive visual moderation task | Video (required) | None |
|
|
88
|
-
| [`hasBurnedInCaptions`](./docs/WORKFLOWS.md#burned-in-caption-detection)<br/>[API](./docs/API.md#hasburnedincaptionsassetid-options) · [Source](./src/workflows/burned-in-captions.ts) | Detect burned-in captions (hardcoded subtitles) in an asset | OpenAI, Anthropic, Google | `gpt-5.1` (OpenAI), `claude-sonnet-4-5` (Anthropic), `gemini-
|
|
89
|
-
| [`generateChapters`](./docs/WORKFLOWS.md#chapter-generation)<br/>[API](./docs/API.md#generatechaptersassetid-languagecode-options) · [Source](./src/workflows/chapters.ts) | Generate chapter markers for an asset using the transcript | OpenAI, Anthropic, Google | `gpt-5.1` (OpenAI), `claude-sonnet-4-5` (Anthropic), `gemini-
|
|
88
|
+
| [`hasBurnedInCaptions`](./docs/WORKFLOWS.md#burned-in-caption-detection)<br/>[API](./docs/API.md#hasburnedincaptionsassetid-options) · [Source](./src/workflows/burned-in-captions.ts) | Detect burned-in captions (hardcoded subtitles) in an asset | OpenAI, Anthropic, Google | `gpt-5.1` (OpenAI), `claude-sonnet-4-5` (Anthropic), `gemini-3-flash-preview` (Google) | Video (required) | None |
|
|
89
|
+
| [`generateChapters`](./docs/WORKFLOWS.md#chapter-generation)<br/>[API](./docs/API.md#generatechaptersassetid-languagecode-options) · [Source](./src/workflows/chapters.ts) | Generate chapter markers for an asset using the transcript | OpenAI, Anthropic, Google | `gpt-5.1` (OpenAI), `claude-sonnet-4-5` (Anthropic), `gemini-3-flash-preview` (Google) | Video (required), Captions (required) | None |
|
|
90
90
|
| [`generateVideoEmbeddings`](./docs/WORKFLOWS.md#video-embeddings)<br/>[API](./docs/API.md#generatevideoembeddingsassetid-options) · [Source](./src/workflows/embeddings.ts) | Generate vector embeddings for an asset's transcript chunks | OpenAI, Google | `text-embedding-3-small` (OpenAI), `gemini-embedding-001` (Google) | Video (required), Captions (required) | None |
|
|
91
|
-
| [`translateCaptions`](./docs/WORKFLOWS.md#caption-translation)<br/>[API](./docs/API.md#translatecaptionsassetid-fromlanguagecode-tolanguagecode-options) · [Source](./src/workflows/translate-captions.ts) | Translate an asset's captions into different languages | OpenAI, Anthropic, Google | `gpt-5.1` (OpenAI), `claude-sonnet-4-5` (Anthropic), `gemini-
|
|
91
|
+
| [`translateCaptions`](./docs/WORKFLOWS.md#caption-translation)<br/>[API](./docs/API.md#translatecaptionsassetid-fromlanguagecode-tolanguagecode-options) · [Source](./src/workflows/translate-captions.ts) | Translate an asset's captions into different languages | OpenAI, Anthropic, Google | `gpt-5.1` (OpenAI), `claude-sonnet-4-5` (Anthropic), `gemini-3-flash-preview` (Google) | Video (required), Captions (required) | AWS S3 (if `uploadToMux=true`) |
|
|
92
92
|
| [`translateAudio`](./docs/WORKFLOWS.md#audio-dubbing)<br/>[API](./docs/API.md#translateaudioassetid-tolanguagecode-options) · [Source](./src/workflows/translate-audio.ts) | Create AI-dubbed audio tracks in different languages for an asset | ElevenLabs only | ElevenLabs Dubbing API | Video (required), Audio (required) | AWS S3 (if `uploadToMux=true`) |
|
|
93
93
|
|
|
94
94
|
## Compatability with Workflow DevKit
|
|
@@ -233,7 +233,7 @@ for (const chunk of result.chunks) {
|
|
|
233
233
|
|
|
234
234
|
# Key Features
|
|
235
235
|
|
|
236
|
-
- **Cost-Effective by Default**: Uses affordable frontier models like `gpt-5.1`, `claude-sonnet-4-5`, and `gemini-
|
|
236
|
+
- **Cost-Effective by Default**: Uses affordable frontier models like `gpt-5.1`, `claude-sonnet-4-5`, and `gemini-3-flash-preview` to keep analysis costs low while maintaining high quality results
|
|
237
237
|
- **Multi-modal Analysis**: Combines storyboard images with video transcripts for richer understanding
|
|
238
238
|
- **Tone Control**: Choose between neutral, playful, or professional analysis styles for summarization
|
|
239
239
|
- **Prompt Customization**: Override specific prompt sections to tune workflows to your exact use case
|
package/dist/index.js
CHANGED
|
@@ -404,7 +404,7 @@ import { createOpenAI } from "@ai-sdk/openai";
|
|
|
404
404
|
var DEFAULT_LANGUAGE_MODELS = {
|
|
405
405
|
openai: "gpt-5.1",
|
|
406
406
|
anthropic: "claude-sonnet-4-5",
|
|
407
|
-
google: "gemini-
|
|
407
|
+
google: "gemini-3-flash-preview"
|
|
408
408
|
};
|
|
409
409
|
var DEFAULT_EMBEDDING_MODELS = {
|
|
410
410
|
openai: "text-embedding-3-small",
|
|
@@ -1526,6 +1526,7 @@ var summarySchema = z4.object({
|
|
|
1526
1526
|
title: z4.string(),
|
|
1527
1527
|
description: z4.string()
|
|
1528
1528
|
});
|
|
1529
|
+
var VALID_TONES = ["neutral", "playful", "professional"];
|
|
1529
1530
|
var TONE_INSTRUCTIONS = {
|
|
1530
1531
|
neutral: "Provide a clear, straightforward analysis.",
|
|
1531
1532
|
playful: "Channel your inner diva! Answer with maximum sass, wit, and playful attitude. Don't hold back - be cheeky, clever, and delightfully snarky. Make it pop!",
|
|
@@ -1711,6 +1712,11 @@ async function getSummaryAndTags(assetId, options) {
|
|
|
1711
1712
|
abortSignal: _abortSignal,
|
|
1712
1713
|
promptOverrides
|
|
1713
1714
|
} = options ?? {};
|
|
1715
|
+
if (!VALID_TONES.includes(tone)) {
|
|
1716
|
+
throw new Error(
|
|
1717
|
+
`Invalid tone "${tone}". Valid tones are: ${VALID_TONES.join(", ")}`
|
|
1718
|
+
);
|
|
1719
|
+
}
|
|
1714
1720
|
const config = await createWorkflowConfig(
|
|
1715
1721
|
{ ...options, model },
|
|
1716
1722
|
provider
|