mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 10:05:14 +00:00
639 lines
21 KiB
TypeScript
639 lines
21 KiB
TypeScript
/**
|
|
* Main entry point for the coding agent CLI.
|
|
*
|
|
* This file handles CLI argument parsing and translates them into
|
|
* createAgentSession() options. The SDK does the heavy lifting.
|
|
*/
|
|
|
|
import { type ImageContent, modelsAreEqual, supportsXhigh } from "@mariozechner/pi-ai";
|
|
import chalk from "chalk";
|
|
import { createInterface } from "readline";
|
|
import { type Args, parseArgs, printHelp } from "./cli/args.js";
|
|
import { processFileArguments } from "./cli/file-processor.js";
|
|
import { listModels } from "./cli/list-models.js";
|
|
import { selectSession } from "./cli/session-picker.js";
|
|
import { getAgentDir, getModelsPath, VERSION } from "./config.js";
|
|
import { AuthStorage } from "./core/auth-storage.js";
|
|
import { exportFromFile } from "./core/export-html/index.js";
|
|
import type { LoadExtensionsResult } from "./core/extensions/index.js";
|
|
import { KeybindingsManager } from "./core/keybindings.js";
|
|
import { ModelRegistry } from "./core/model-registry.js";
|
|
import { resolveModelScope, type ScopedModel } from "./core/model-resolver.js";
|
|
import { DefaultPackageManager } from "./core/package-manager.js";
|
|
import { DefaultResourceLoader } from "./core/resource-loader.js";
|
|
import { type CreateAgentSessionOptions, createAgentSession } from "./core/sdk.js";
|
|
import { SessionManager } from "./core/session-manager.js";
|
|
import { type PackageSource, SettingsManager } from "./core/settings-manager.js";
|
|
import { printTimings, time } from "./core/timings.js";
|
|
import { allTools } from "./core/tools/index.js";
|
|
import { runMigrations, showDeprecationWarnings } from "./migrations.js";
|
|
import { InteractiveMode, runPrintMode, runRpcMode } from "./modes/index.js";
|
|
import { initTheme, stopThemeWatcher } from "./modes/interactive/theme/theme.js";
|
|
|
|
/**
|
|
* Read all content from piped stdin.
|
|
* Returns undefined if stdin is a TTY (interactive terminal).
|
|
*/
|
|
async function readPipedStdin(): Promise<string | undefined> {
|
|
// If stdin is a TTY, we're running interactively - don't read stdin
|
|
if (process.stdin.isTTY) {
|
|
return undefined;
|
|
}
|
|
|
|
return new Promise((resolve) => {
|
|
let data = "";
|
|
process.stdin.setEncoding("utf8");
|
|
process.stdin.on("data", (chunk) => {
|
|
data += chunk;
|
|
});
|
|
process.stdin.on("end", () => {
|
|
resolve(data.trim() || undefined);
|
|
});
|
|
process.stdin.resume();
|
|
});
|
|
}
|
|
|
|
type PackageCommand = "install" | "remove" | "update" | "list";
|
|
|
|
interface PackageCommandOptions {
|
|
command: PackageCommand;
|
|
source?: string;
|
|
local: boolean;
|
|
}
|
|
|
|
function parsePackageCommand(args: string[]): PackageCommandOptions | undefined {
|
|
const [command, ...rest] = args;
|
|
if (command !== "install" && command !== "remove" && command !== "update" && command !== "list") {
|
|
return undefined;
|
|
}
|
|
|
|
let local = false;
|
|
const sources: string[] = [];
|
|
for (const arg of rest) {
|
|
if (arg === "-l" || arg === "--local") {
|
|
local = true;
|
|
continue;
|
|
}
|
|
sources.push(arg);
|
|
}
|
|
|
|
return { command, source: sources[0], local };
|
|
}
|
|
|
|
function normalizeExtensionSource(source: string): { type: "npm" | "git" | "local"; key: string } {
|
|
if (source.startsWith("npm:")) {
|
|
const spec = source.slice("npm:".length).trim();
|
|
const match = spec.match(/^(@?[^@]+(?:\/[^@]+)?)(?:@.+)?$/);
|
|
return { type: "npm", key: match?.[1] ?? spec };
|
|
}
|
|
if (source.startsWith("git:")) {
|
|
const repo = source.slice("git:".length).trim().split("@")[0] ?? "";
|
|
return { type: "git", key: repo.replace(/^https?:\/\//, "").replace(/\.git$/, "") };
|
|
}
|
|
// Raw git URLs
|
|
if (source.startsWith("https://") || source.startsWith("http://")) {
|
|
const repo = source.split("@")[0] ?? "";
|
|
return { type: "git", key: repo.replace(/^https?:\/\//, "").replace(/\.git$/, "") };
|
|
}
|
|
return { type: "local", key: source };
|
|
}
|
|
|
|
function sourcesMatch(a: string, b: string): boolean {
|
|
const left = normalizeExtensionSource(a);
|
|
const right = normalizeExtensionSource(b);
|
|
return left.type === right.type && left.key === right.key;
|
|
}
|
|
|
|
function getPackageSourceString(pkg: PackageSource): string {
|
|
return typeof pkg === "string" ? pkg : pkg.source;
|
|
}
|
|
|
|
function packageSourcesMatch(a: PackageSource, b: string): boolean {
|
|
const aSource = getPackageSourceString(a);
|
|
return sourcesMatch(aSource, b);
|
|
}
|
|
|
|
function updatePackageSources(
|
|
settingsManager: SettingsManager,
|
|
source: string,
|
|
local: boolean,
|
|
action: "add" | "remove",
|
|
): void {
|
|
const currentSettings = local ? settingsManager.getProjectSettings() : settingsManager.getGlobalSettings();
|
|
const currentPackages = currentSettings.packages ?? [];
|
|
|
|
let nextPackages: PackageSource[];
|
|
if (action === "add") {
|
|
const exists = currentPackages.some((existing) => packageSourcesMatch(existing, source));
|
|
nextPackages = exists ? currentPackages : [...currentPackages, source];
|
|
} else {
|
|
nextPackages = currentPackages.filter((existing) => !packageSourcesMatch(existing, source));
|
|
}
|
|
|
|
if (local) {
|
|
settingsManager.setProjectPackages(nextPackages);
|
|
} else {
|
|
settingsManager.setPackages(nextPackages);
|
|
}
|
|
}
|
|
|
|
async function handlePackageCommand(args: string[]): Promise<boolean> {
|
|
const options = parsePackageCommand(args);
|
|
if (!options) {
|
|
return false;
|
|
}
|
|
|
|
const cwd = process.cwd();
|
|
const agentDir = getAgentDir();
|
|
const settingsManager = SettingsManager.create(cwd, agentDir);
|
|
const packageManager = new DefaultPackageManager({ cwd, agentDir, settingsManager });
|
|
|
|
// Set up progress callback for CLI feedback
|
|
packageManager.setProgressCallback((event) => {
|
|
if (event.type === "start") {
|
|
process.stdout.write(chalk.dim(`${event.message}\n`));
|
|
} else if (event.type === "error") {
|
|
console.error(chalk.red(`Error: ${event.message}`));
|
|
}
|
|
});
|
|
|
|
if (options.command === "install") {
|
|
if (!options.source) {
|
|
console.error(chalk.red("Missing install source."));
|
|
process.exit(1);
|
|
}
|
|
await packageManager.install(options.source, { local: options.local });
|
|
updatePackageSources(settingsManager, options.source, options.local, "add");
|
|
console.log(chalk.green(`Installed ${options.source}`));
|
|
return true;
|
|
}
|
|
|
|
if (options.command === "remove") {
|
|
if (!options.source) {
|
|
console.error(chalk.red("Missing remove source."));
|
|
process.exit(1);
|
|
}
|
|
await packageManager.remove(options.source, { local: options.local });
|
|
updatePackageSources(settingsManager, options.source, options.local, "remove");
|
|
console.log(chalk.green(`Removed ${options.source}`));
|
|
return true;
|
|
}
|
|
|
|
if (options.command === "list") {
|
|
const globalSettings = settingsManager.getGlobalSettings();
|
|
const projectSettings = settingsManager.getProjectSettings();
|
|
const globalPackages = globalSettings.packages ?? [];
|
|
const projectPackages = projectSettings.packages ?? [];
|
|
|
|
if (globalPackages.length === 0 && projectPackages.length === 0) {
|
|
console.log(chalk.dim("No packages installed."));
|
|
return true;
|
|
}
|
|
|
|
const formatPackage = (pkg: (typeof globalPackages)[number], scope: "user" | "project") => {
|
|
const source = typeof pkg === "string" ? pkg : pkg.source;
|
|
const filtered = typeof pkg === "object";
|
|
const display = filtered ? `${source} (filtered)` : source;
|
|
console.log(` ${display}`);
|
|
// Show resolved path
|
|
const path = packageManager.getInstalledPath(source, scope);
|
|
if (path) {
|
|
console.log(chalk.dim(` ${path}`));
|
|
}
|
|
};
|
|
|
|
if (globalPackages.length > 0) {
|
|
console.log(chalk.bold("User packages:"));
|
|
for (const pkg of globalPackages) {
|
|
formatPackage(pkg, "user");
|
|
}
|
|
}
|
|
|
|
if (projectPackages.length > 0) {
|
|
if (globalPackages.length > 0) console.log();
|
|
console.log(chalk.bold("Project packages:"));
|
|
for (const pkg of projectPackages) {
|
|
formatPackage(pkg, "project");
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
await packageManager.update(options.source);
|
|
if (options.source) {
|
|
console.log(chalk.green(`Updated ${options.source}`));
|
|
} else {
|
|
console.log(chalk.green("Updated packages"));
|
|
}
|
|
return true;
|
|
}
|
|
|
|
async function prepareInitialMessage(
|
|
parsed: Args,
|
|
autoResizeImages: boolean,
|
|
): Promise<{
|
|
initialMessage?: string;
|
|
initialImages?: ImageContent[];
|
|
}> {
|
|
if (parsed.fileArgs.length === 0) {
|
|
return {};
|
|
}
|
|
|
|
const { text, images } = await processFileArguments(parsed.fileArgs, { autoResizeImages });
|
|
|
|
let initialMessage: string;
|
|
if (parsed.messages.length > 0) {
|
|
initialMessage = text + parsed.messages[0];
|
|
parsed.messages.shift();
|
|
} else {
|
|
initialMessage = text;
|
|
}
|
|
|
|
return {
|
|
initialMessage,
|
|
initialImages: images.length > 0 ? images : undefined,
|
|
};
|
|
}
|
|
|
|
/** Result from resolving a session argument */
|
|
type ResolvedSession =
|
|
| { type: "path"; path: string } // Direct file path
|
|
| { type: "local"; path: string } // Found in current project
|
|
| { type: "global"; path: string; cwd: string } // Found in different project
|
|
| { type: "not_found"; arg: string }; // Not found anywhere
|
|
|
|
/**
|
|
* Resolve a session argument to a file path.
|
|
* If it looks like a path, use as-is. Otherwise try to match as session ID prefix.
|
|
*/
|
|
async function resolveSessionPath(sessionArg: string, cwd: string, sessionDir?: string): Promise<ResolvedSession> {
|
|
// If it looks like a file path, use as-is
|
|
if (sessionArg.includes("/") || sessionArg.includes("\\") || sessionArg.endsWith(".jsonl")) {
|
|
return { type: "path", path: sessionArg };
|
|
}
|
|
|
|
// Try to match as session ID in current project first
|
|
const localSessions = await SessionManager.list(cwd, sessionDir);
|
|
const localMatches = localSessions.filter((s) => s.id.startsWith(sessionArg));
|
|
|
|
if (localMatches.length >= 1) {
|
|
return { type: "local", path: localMatches[0].path };
|
|
}
|
|
|
|
// Try global search across all projects
|
|
const allSessions = await SessionManager.listAll();
|
|
const globalMatches = allSessions.filter((s) => s.id.startsWith(sessionArg));
|
|
|
|
if (globalMatches.length >= 1) {
|
|
const match = globalMatches[0];
|
|
return { type: "global", path: match.path, cwd: match.cwd };
|
|
}
|
|
|
|
// Not found anywhere
|
|
return { type: "not_found", arg: sessionArg };
|
|
}
|
|
|
|
/** Prompt user for yes/no confirmation */
|
|
async function promptConfirm(message: string): Promise<boolean> {
|
|
return new Promise((resolve) => {
|
|
const rl = createInterface({
|
|
input: process.stdin,
|
|
output: process.stdout,
|
|
});
|
|
rl.question(`${message} [y/N] `, (answer) => {
|
|
rl.close();
|
|
resolve(answer.toLowerCase() === "y" || answer.toLowerCase() === "yes");
|
|
});
|
|
});
|
|
}
|
|
|
|
async function createSessionManager(parsed: Args, cwd: string): Promise<SessionManager | undefined> {
|
|
if (parsed.noSession) {
|
|
return SessionManager.inMemory();
|
|
}
|
|
if (parsed.session) {
|
|
const resolved = await resolveSessionPath(parsed.session, cwd, parsed.sessionDir);
|
|
|
|
switch (resolved.type) {
|
|
case "path":
|
|
case "local":
|
|
return SessionManager.open(resolved.path, parsed.sessionDir);
|
|
|
|
case "global": {
|
|
// Session found in different project - ask user if they want to fork
|
|
console.log(chalk.yellow(`Session found in different project: ${resolved.cwd}`));
|
|
const shouldFork = await promptConfirm("Fork this session into current directory?");
|
|
if (!shouldFork) {
|
|
console.log(chalk.dim("Aborted."));
|
|
process.exit(0);
|
|
}
|
|
return SessionManager.forkFrom(resolved.path, cwd, parsed.sessionDir);
|
|
}
|
|
|
|
case "not_found":
|
|
console.error(chalk.red(`No session found matching '${resolved.arg}'`));
|
|
process.exit(1);
|
|
}
|
|
}
|
|
if (parsed.continue) {
|
|
return SessionManager.continueRecent(cwd, parsed.sessionDir);
|
|
}
|
|
// --resume is handled separately (needs picker UI)
|
|
// If --session-dir provided without --continue/--resume, create new session there
|
|
if (parsed.sessionDir) {
|
|
return SessionManager.create(cwd, parsed.sessionDir);
|
|
}
|
|
// Default case (new session) returns undefined, SDK will create one
|
|
return undefined;
|
|
}
|
|
|
|
function buildSessionOptions(
|
|
parsed: Args,
|
|
scopedModels: ScopedModel[],
|
|
sessionManager: SessionManager | undefined,
|
|
modelRegistry: ModelRegistry,
|
|
settingsManager: SettingsManager,
|
|
): CreateAgentSessionOptions {
|
|
const options: CreateAgentSessionOptions = {};
|
|
|
|
if (sessionManager) {
|
|
options.sessionManager = sessionManager;
|
|
}
|
|
|
|
// Model from CLI
|
|
if (parsed.provider && parsed.model) {
|
|
const model = modelRegistry.find(parsed.provider, parsed.model);
|
|
if (!model) {
|
|
console.error(chalk.red(`Model ${parsed.provider}/${parsed.model} not found`));
|
|
process.exit(1);
|
|
}
|
|
options.model = model;
|
|
} else if (scopedModels.length > 0 && !parsed.continue && !parsed.resume) {
|
|
// Check if saved default is in scoped models - use it if so, otherwise first scoped model
|
|
const savedProvider = settingsManager.getDefaultProvider();
|
|
const savedModelId = settingsManager.getDefaultModel();
|
|
const savedModel = savedProvider && savedModelId ? modelRegistry.find(savedProvider, savedModelId) : undefined;
|
|
const savedInScope = savedModel ? scopedModels.find((sm) => modelsAreEqual(sm.model, savedModel)) : undefined;
|
|
|
|
if (savedInScope) {
|
|
options.model = savedInScope.model;
|
|
// Use thinking level from scoped model config if explicitly set
|
|
if (!parsed.thinking && savedInScope.thinkingLevel) {
|
|
options.thinkingLevel = savedInScope.thinkingLevel;
|
|
}
|
|
} else {
|
|
options.model = scopedModels[0].model;
|
|
// Use thinking level from first scoped model if explicitly set
|
|
if (!parsed.thinking && scopedModels[0].thinkingLevel) {
|
|
options.thinkingLevel = scopedModels[0].thinkingLevel;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Thinking level from CLI (takes precedence over scoped model thinking levels set above)
|
|
if (parsed.thinking) {
|
|
options.thinkingLevel = parsed.thinking;
|
|
}
|
|
|
|
// Scoped models for Ctrl+P cycling - fill in default thinking level for models without explicit level
|
|
if (scopedModels.length > 0) {
|
|
const defaultThinkingLevel = settingsManager.getDefaultThinkingLevel() ?? "off";
|
|
options.scopedModels = scopedModels.map((sm) => ({
|
|
model: sm.model,
|
|
thinkingLevel: sm.thinkingLevel ?? defaultThinkingLevel,
|
|
}));
|
|
}
|
|
|
|
// API key from CLI - set in authStorage
|
|
// (handled by caller before createAgentSession)
|
|
|
|
// Tools
|
|
if (parsed.noTools) {
|
|
// --no-tools: start with no built-in tools
|
|
// --tools can still add specific ones back
|
|
if (parsed.tools && parsed.tools.length > 0) {
|
|
options.tools = parsed.tools.map((name) => allTools[name]);
|
|
} else {
|
|
options.tools = [];
|
|
}
|
|
} else if (parsed.tools) {
|
|
options.tools = parsed.tools.map((name) => allTools[name]);
|
|
}
|
|
|
|
return options;
|
|
}
|
|
|
|
export async function main(args: string[]) {
|
|
if (await handlePackageCommand(args)) {
|
|
return;
|
|
}
|
|
|
|
// Run migrations (pass cwd for project-local migrations)
|
|
const { migratedAuthProviders: migratedProviders, deprecationWarnings } = runMigrations(process.cwd());
|
|
|
|
// Create AuthStorage and ModelRegistry upfront
|
|
const authStorage = new AuthStorage();
|
|
const modelRegistry = new ModelRegistry(authStorage);
|
|
|
|
// First pass: parse args to get --extension paths
|
|
const firstPass = parseArgs(args);
|
|
|
|
// Early load extensions to discover their CLI flags
|
|
const cwd = process.cwd();
|
|
const agentDir = getAgentDir();
|
|
const settingsManager = SettingsManager.create(cwd, agentDir);
|
|
|
|
const resourceLoader = new DefaultResourceLoader({
|
|
cwd,
|
|
agentDir,
|
|
settingsManager,
|
|
additionalExtensionPaths: firstPass.extensions,
|
|
additionalSkillPaths: firstPass.skills,
|
|
additionalPromptTemplatePaths: firstPass.promptTemplates,
|
|
additionalThemePaths: firstPass.themes,
|
|
noExtensions: firstPass.noExtensions,
|
|
noSkills: firstPass.noSkills,
|
|
noPromptTemplates: firstPass.noPromptTemplates,
|
|
noThemes: firstPass.noThemes,
|
|
systemPrompt: firstPass.systemPrompt,
|
|
appendSystemPrompt: firstPass.appendSystemPrompt,
|
|
});
|
|
await resourceLoader.reload();
|
|
time("resourceLoader.reload");
|
|
|
|
const extensionsResult: LoadExtensionsResult = resourceLoader.getExtensions();
|
|
for (const { path, error } of extensionsResult.errors) {
|
|
console.error(chalk.red(`Failed to load extension "${path}": ${error}`));
|
|
}
|
|
|
|
const extensionFlags = new Map<string, { type: "boolean" | "string" }>();
|
|
for (const ext of extensionsResult.extensions) {
|
|
for (const [name, flag] of ext.flags) {
|
|
extensionFlags.set(name, { type: flag.type });
|
|
}
|
|
}
|
|
|
|
// Second pass: parse args with extension flags
|
|
const parsed = parseArgs(args, extensionFlags);
|
|
|
|
// Pass flag values to extensions via runtime
|
|
for (const [name, value] of parsed.unknownFlags) {
|
|
extensionsResult.runtime.flagValues.set(name, value);
|
|
}
|
|
|
|
if (parsed.version) {
|
|
console.log(VERSION);
|
|
return;
|
|
}
|
|
|
|
if (parsed.help) {
|
|
printHelp();
|
|
return;
|
|
}
|
|
|
|
if (parsed.listModels !== undefined) {
|
|
const searchPattern = typeof parsed.listModels === "string" ? parsed.listModels : undefined;
|
|
await listModels(modelRegistry, searchPattern);
|
|
return;
|
|
}
|
|
|
|
// Read piped stdin content (if any) - skip for RPC mode which uses stdin for JSON-RPC
|
|
if (parsed.mode !== "rpc") {
|
|
const stdinContent = await readPipedStdin();
|
|
if (stdinContent !== undefined) {
|
|
// Force print mode since interactive mode requires a TTY for keyboard input
|
|
parsed.print = true;
|
|
// Prepend stdin content to messages
|
|
parsed.messages.unshift(stdinContent);
|
|
}
|
|
}
|
|
|
|
if (parsed.export) {
|
|
try {
|
|
const outputPath = parsed.messages.length > 0 ? parsed.messages[0] : undefined;
|
|
const result = await exportFromFile(parsed.export, outputPath);
|
|
console.log(`Exported to: ${result}`);
|
|
return;
|
|
} catch (error: unknown) {
|
|
const message = error instanceof Error ? error.message : "Failed to export session";
|
|
console.error(chalk.red(`Error: ${message}`));
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
if (parsed.mode === "rpc" && parsed.fileArgs.length > 0) {
|
|
console.error(chalk.red("Error: @file arguments are not supported in RPC mode"));
|
|
process.exit(1);
|
|
}
|
|
|
|
const { initialMessage, initialImages } = await prepareInitialMessage(parsed, settingsManager.getImageAutoResize());
|
|
const isInteractive = !parsed.print && parsed.mode === undefined;
|
|
const mode = parsed.mode || "text";
|
|
initTheme(settingsManager.getTheme(), isInteractive);
|
|
|
|
// Show deprecation warnings in interactive mode
|
|
if (isInteractive && deprecationWarnings.length > 0) {
|
|
await showDeprecationWarnings(deprecationWarnings);
|
|
}
|
|
|
|
let scopedModels: ScopedModel[] = [];
|
|
const modelPatterns = parsed.models ?? settingsManager.getEnabledModels();
|
|
if (modelPatterns && modelPatterns.length > 0) {
|
|
scopedModels = await resolveModelScope(modelPatterns, modelRegistry);
|
|
}
|
|
|
|
// Create session manager based on CLI flags
|
|
let sessionManager = await createSessionManager(parsed, cwd);
|
|
|
|
// Handle --resume: show session picker
|
|
if (parsed.resume) {
|
|
// Initialize keybindings so session picker respects user config
|
|
KeybindingsManager.create();
|
|
|
|
const selectedPath = await selectSession(
|
|
(onProgress) => SessionManager.list(cwd, parsed.sessionDir, onProgress),
|
|
SessionManager.listAll,
|
|
);
|
|
if (!selectedPath) {
|
|
console.log(chalk.dim("No session selected"));
|
|
stopThemeWatcher();
|
|
process.exit(0);
|
|
}
|
|
sessionManager = SessionManager.open(selectedPath);
|
|
}
|
|
|
|
const sessionOptions = buildSessionOptions(parsed, scopedModels, sessionManager, modelRegistry, settingsManager);
|
|
sessionOptions.authStorage = authStorage;
|
|
sessionOptions.modelRegistry = modelRegistry;
|
|
sessionOptions.resourceLoader = resourceLoader;
|
|
|
|
// Handle CLI --api-key as runtime override (not persisted)
|
|
if (parsed.apiKey) {
|
|
if (!sessionOptions.model) {
|
|
console.error(chalk.red("--api-key requires a model to be specified via --provider/--model or -m/--models"));
|
|
process.exit(1);
|
|
}
|
|
authStorage.setRuntimeApiKey(sessionOptions.model.provider, parsed.apiKey);
|
|
}
|
|
|
|
const { session, modelFallbackMessage } = await createAgentSession(sessionOptions);
|
|
|
|
if (!isInteractive && !session.model) {
|
|
console.error(chalk.red("No models available."));
|
|
console.error(chalk.yellow("\nSet an API key environment variable:"));
|
|
console.error(" ANTHROPIC_API_KEY, OPENAI_API_KEY, GEMINI_API_KEY, etc.");
|
|
console.error(chalk.yellow(`\nOr create ${getModelsPath()}`));
|
|
process.exit(1);
|
|
}
|
|
|
|
// Clamp thinking level to model capabilities (for CLI override case)
|
|
if (session.model && parsed.thinking) {
|
|
let effectiveThinking = parsed.thinking;
|
|
if (!session.model.reasoning) {
|
|
effectiveThinking = "off";
|
|
} else if (effectiveThinking === "xhigh" && !supportsXhigh(session.model)) {
|
|
effectiveThinking = "high";
|
|
}
|
|
if (effectiveThinking !== session.thinkingLevel) {
|
|
session.setThinkingLevel(effectiveThinking);
|
|
}
|
|
}
|
|
|
|
if (mode === "rpc") {
|
|
await runRpcMode(session);
|
|
} else if (isInteractive) {
|
|
if (scopedModels.length > 0 && (parsed.verbose || !settingsManager.getQuietStartup())) {
|
|
const modelList = scopedModels
|
|
.map((sm) => {
|
|
const thinkingStr = sm.thinkingLevel ? `:${sm.thinkingLevel}` : "";
|
|
return `${sm.model.id}${thinkingStr}`;
|
|
})
|
|
.join(", ");
|
|
console.log(chalk.dim(`Model scope: ${modelList} ${chalk.gray("(Ctrl+P to cycle)")}`));
|
|
}
|
|
|
|
printTimings();
|
|
const mode = new InteractiveMode(session, {
|
|
migratedProviders,
|
|
modelFallbackMessage,
|
|
initialMessage,
|
|
initialImages,
|
|
initialMessages: parsed.messages,
|
|
verbose: parsed.verbose,
|
|
});
|
|
await mode.run();
|
|
} else {
|
|
await runPrintMode(session, {
|
|
mode,
|
|
messages: parsed.messages,
|
|
initialMessage,
|
|
initialImages,
|
|
});
|
|
stopThemeWatcher();
|
|
if (process.stdout.writableLength > 0) {
|
|
await new Promise<void>((resolve) => process.stdout.once("drain", resolve));
|
|
}
|
|
process.exit(0);
|
|
}
|
|
}
|