refactor: rename launchMultiModel to openMultiModel

This commit is contained in:
2026-03-20 13:38:46 +05:30
parent 962c9a474f
commit 8a087275b3
5 changed files with 25 additions and 25 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env bun
import { Command } from "commander";
import { launchMultiModel } from "./core/open";
import { openMultiModel } from "./core/open";
import { closeMultiModel } from "./core/close";
import { getBinaryName } from "./core/utils";
@@ -21,7 +21,7 @@ program
try {
const binaryName = options.binary || getBinaryName();
const result = await launchMultiModel({
const result = await openMultiModel({
sessionName,
models: options.models,
binaryName,