refactor(core): rename MultiModelOptions and MultiModelResult to OpenSessionOptions and OpenSessionResult

This commit is contained in:
2026-03-23 18:59:44 +05:30
parent b3a9ccc848
commit 2cc01f5faa
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ export interface MultiModelSettings {
/**
* Options for launching a multi-model tmux session.
*/
export interface MultiModelOptions {
export interface OpenSessionOptions {
/** Name for the tmux session. */
sessionName: string;
/** List of model ids to launch. */
@@ -24,7 +24,7 @@ export interface MultiModelOptions {
/**
* Result returned after attempting to launch a multi-model session.
*/
export interface MultiModelResult {
export interface OpenSessionResult {
/** Whether the launch succeeded. */
success: boolean;
/** The session name used. */