mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
11 lines
341 B
TypeScript
11 lines
341 B
TypeScript
import { listLocalSpeechModels } from "../src/server/speech/providers/local/models.js";
|
|
|
|
const models = listLocalSpeechModels()
|
|
.slice()
|
|
.sort((a, b) => a.kind.localeCompare(b.kind) || a.id.localeCompare(b.id));
|
|
|
|
for (const m of models) {
|
|
// eslint-disable-next-line no-console
|
|
console.log(`${m.kind}\t${m.id}\t${m.description}`);
|
|
}
|