1
- // test/models/all .test.ts
1
+ // test/cli/cli-models .test.ts
2
2
3
3
import test from 'node:test'
4
4
import { strictEqual } from 'node:assert/strict'
@@ -26,9 +26,6 @@ import { join } from 'node:path'
26
26
* The test will run all commands sequentially and check for file creation and renaming.
27
27
*/
28
28
29
- // -------------------------------
30
- // Assembly commands
31
- // -------------------------------
32
29
const assemblyCommands = [
33
30
{
34
31
// Process multiple YouTube videos from URLs with title prompts, Assembly default model, and ChatGPT default model.
@@ -52,9 +49,35 @@ const assemblyCommands = [
52
49
} ,
53
50
]
54
51
55
- // -------------------------------
56
- // ChatGPT commands
57
- // -------------------------------
52
+ const deepgramCommands = [
53
+ {
54
+ // Process multiple YouTube videos from URLs with title prompts, Deepgram default model, and ChatGPT default model.
55
+ cmd : 'npm run as -- --urls "content/example-urls.md" --prompt titles --deepgram --chatgpt' ,
56
+ expectedFiles : [
57
+ { file : '2024-09-24-ep1-fsjam-podcast-chatgpt-shownotes.md' , newName : '01-deepgram-default-chatgpt-default.md' } ,
58
+ { file : '2024-09-24-ep0-fsjam-podcast-chatgpt-shownotes.md' , newName : '02-deepgram-default-chatgpt-default.md' }
59
+ ]
60
+ } ,
61
+ {
62
+ // Process audio with Deepgram using NOVA_2 model.
63
+ cmd : 'npm run as -- --file "content/audio.mp3" --deepgram NOVA_2' ,
64
+ expectedFile : 'audio-prompt.md' ,
65
+ newName : '03-deepgram-nova-2.md'
66
+ } ,
67
+ {
68
+ // Process audio with Deepgram using BASE model.
69
+ cmd : 'npm run as -- --file "content/audio.mp3" --deepgram BASE' ,
70
+ expectedFile : 'audio-prompt.md' ,
71
+ newName : '04-deepgram-base.md'
72
+ } ,
73
+ {
74
+ // Process audio with Deepgram using ENHANCED model.
75
+ cmd : 'npm run as -- --file "content/audio.mp3" --deepgram ENHANCED' ,
76
+ expectedFile : 'audio-prompt.md' ,
77
+ newName : '05-deepgram-enhanced.md'
78
+ } ,
79
+ ]
80
+
58
81
/*
59
82
LLM_SERVICES_CONFIG.chatgpt.models:
60
83
- gpt-4.5-preview
@@ -68,11 +91,12 @@ const chatgptCommands = [
68
91
expectedFile : 'audio-chatgpt-shownotes.md' ,
69
92
newName : '01-chatgpt-default.md'
70
93
} ,
71
- {
72
- cmd : 'npm run as -- --file "content/audio.mp3" --chatgpt gpt-4.5-preview' ,
73
- expectedFile : 'audio-chatgpt-shownotes.md' ,
74
- newName : '02-chatgpt-gpt-4.5-preview.md'
75
- } ,
94
+ // TOO EXPENSIVE TO TEST FREQUENTLY COME ON SAM
95
+ // {
96
+ // cmd: 'npm run as -- --file "content/audio.mp3" --chatgpt gpt-4.5-preview',
97
+ // expectedFile: 'audio-chatgpt-shownotes.md',
98
+ // newName: '02-chatgpt-gpt-4.5-preview.md'
99
+ // },
76
100
{
77
101
cmd : 'npm run as -- --file "content/audio.mp3" --chatgpt gpt-4o' ,
78
102
expectedFile : 'audio-chatgpt-shownotes.md' ,
@@ -90,9 +114,6 @@ const chatgptCommands = [
90
114
} ,
91
115
]
92
116
93
- // -------------------------------
94
- // Claude commands
95
- // -------------------------------
96
117
/*
97
118
LLM_SERVICES_CONFIG.claude.models:
98
119
- claude-3-7-sonnet-latest
@@ -122,41 +143,6 @@ const claudeCommands = [
122
143
} ,
123
144
]
124
145
125
- // -------------------------------
126
- // Deepgram commands
127
- // -------------------------------
128
- const deepgramCommands = [
129
- {
130
- // Process multiple YouTube videos from URLs with title prompts, Deepgram default model, and ChatGPT default model.
131
- cmd : 'npm run as -- --urls "content/example-urls.md" --prompt titles --deepgram --chatgpt' ,
132
- expectedFiles : [
133
- { file : '2024-09-24-ep1-fsjam-podcast-chatgpt-shownotes.md' , newName : '01-deepgram-default-chatgpt-default.md' } ,
134
- { file : '2024-09-24-ep0-fsjam-podcast-chatgpt-shownotes.md' , newName : '02-deepgram-default-chatgpt-default.md' }
135
- ]
136
- } ,
137
- {
138
- // Process audio with Deepgram using NOVA_2 model.
139
- cmd : 'npm run as -- --file "content/audio.mp3" --deepgram NOVA_2' ,
140
- expectedFile : 'audio-prompt.md' ,
141
- newName : '03-deepgram-nova-2.md'
142
- } ,
143
- {
144
- // Process audio with Deepgram using BASE model.
145
- cmd : 'npm run as -- --file "content/audio.mp3" --deepgram BASE' ,
146
- expectedFile : 'audio-prompt.md' ,
147
- newName : '04-deepgram-base.md'
148
- } ,
149
- {
150
- // Process audio with Deepgram using ENHANCED model.
151
- cmd : 'npm run as -- --file "content/audio.mp3" --deepgram ENHANCED' ,
152
- expectedFile : 'audio-prompt.md' ,
153
- newName : '05-deepgram-enhanced.md'
154
- } ,
155
- ]
156
-
157
- // -------------------------------
158
- // DeepSeek commands
159
- // -------------------------------
160
146
/*
161
147
LLM_SERVICES_CONFIG.deepseek.models:
162
148
- deepseek-chat
@@ -180,9 +166,6 @@ const deepseekCommands = [
180
166
} ,
181
167
]
182
168
183
- // -------------------------------
184
- // Fireworks commands
185
- // -------------------------------
186
169
/*
187
170
LLM_SERVICES_CONFIG.fireworks.models:
188
171
- accounts/fireworks/models/llama-v3p1-405b-instruct
@@ -224,9 +207,6 @@ const fireworksCommands = [
224
207
} ,
225
208
]
226
209
227
- // -------------------------------
228
- // Gemini commands
229
- // -------------------------------
230
210
/*
231
211
LLM_SERVICES_CONFIG.gemini.models:
232
212
- gemini-1.5-pro
@@ -268,9 +248,6 @@ const geminiCommands = [
268
248
} ,
269
249
]
270
250
271
- // -------------------------------
272
- // Ollama commands
273
- // -------------------------------
274
251
/*
275
252
LLM_SERVICES_CONFIG.ollama.models:
276
253
- qwen2.5:0.5b
@@ -330,9 +307,6 @@ const ollamaCommands = [
330
307
} ,
331
308
]
332
309
333
- // -------------------------------
334
- // Together commands
335
- // -------------------------------
336
310
/*
337
311
LLM_SERVICES_CONFIG.together.models:
338
312
- meta-llama/Llama-3.2-3B-Instruct-Turbo
@@ -392,7 +366,6 @@ const togetherCommands = [
392
366
} ,
393
367
]
394
368
395
- // Combine all commands into a single array
396
369
const allCommands = [
397
370
...assemblyCommands ,
398
371
...chatgptCommands ,
@@ -407,12 +380,8 @@ const allCommands = [
407
380
408
381
test ( 'All Models Command Tests' , async ( t ) => {
409
382
for ( const [ index , command ] of allCommands . entries ( ) ) {
410
- // Provide a label for each subtest
411
383
await t . test ( `Command #${ index + 1 } : ${ command . cmd } ` , async ( ) => {
412
- // Run the command
413
384
execSync ( command . cmd , { stdio : 'inherit' } )
414
-
415
- // Check if the command expects multiple output files or just one
416
385
if ( Array . isArray ( command . expectedFile ) ) {
417
386
for ( const { file, newName } of command . expectedFile ) {
418
387
const filePath = join ( 'content' , file )
0 commit comments