Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/autonav/src/cli/nav-chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ export async function run(args: string[]): Promise<void> {
instructionsPath?: string;
relatedNavigators?: Array<{ name: string; description?: string }>;
sandbox?: { chat?: { enabled: boolean } };
harness?: { type?: string; model?: string };
};
let configContent: string;
try {
Expand Down Expand Up @@ -219,6 +220,7 @@ export async function run(args: string[]): Promise<void> {
mcpServers: Object.keys(mcpServers).length > 0 ? mcpServers : undefined,
sandboxEnabled: chatSandboxEnabled,
configJson: configContent,
model: config.harness?.model,
});

console.log("\n👋 Conversation ended.\n");
Expand Down
2 changes: 2 additions & 0 deletions packages/autonav/src/conversation/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ export interface ConversationOptions {
sandboxEnabled?: boolean;
/** Raw config.json content for config-aware prompts */
configJson?: string;
/** Model override for the harness. When undefined, the harness uses its own default. */
model?: string;
}

/**
Expand Down
Loading