This commit is contained in:
Ryan Huang
2024-04-23 16:45:08 -04:00
parent 188e44a874
commit 45de18c9de
3 changed files with 4 additions and 5 deletions

View File

@ -19,8 +19,7 @@ export async function createClient(logger: SimpleLogger) {
To start the server, run the following command: To start the server, run the following command:
${chalk.yellow("lms server start ")} ${chalk.yellow("lms server start ")}${"\n"}
`, `,
); );
process.exit(1); process.exit(1);

View File

@ -152,7 +152,7 @@ export const load = command({
Note, you need to provide the full model path. For example: Note, you need to provide the full model path. For example:
${chalk.yellowBright(`lms load --exact "${chalk.yellow(shortestName)}"`)}${"\n"} ${chalk.yellowBright(`lms load --exact "${chalk.yellow(shortestName)}"`)}
`, `,
).message, ).message,
); );
@ -205,7 +205,7 @@ export const load = command({
To select a model interactively, remove the ${chalk.yellowBright("--yes")} flag: To select a model interactively, remove the ${chalk.yellowBright("--yes")} flag:
${chalk.yellowBright("lms load")}${"\n"} ${chalk.yellowBright("lms load")}
`, `,
).message, ).message,
); );

View File

@ -83,7 +83,7 @@ export const unload = command({
To see a list of loaded models, run: To see a list of loaded models, run:
${chalk.yellowBright("lms ps")}${"\n"} ${chalk.yellowBright("lms ps")}
`, `,
).message, ).message,
); );