chore(vscode-ide-companion): wip

This commit is contained in:
yiliang114
2025-12-13 21:39:41 +08:00
parent b073b2db79
commit 44fef93399
2 changed files with 0 additions and 6 deletions

View File

@@ -34,9 +34,6 @@ export type { ChatMessage, PlanEntry, ToolCallUpdateData };
*
* Coordinates various modules and provides unified interface
*/
interface AgentConnectOptions {
autoAuthenticate?: boolean;
}
interface AgentSessionOptions {
autoAuthenticate?: boolean;
}
@@ -192,14 +189,12 @@ export class QwenAgentManager {
async connect(
workingDir: string,
cliEntryPath: string,
options?: AgentConnectOptions,
): Promise<QwenConnectionResult> {
this.currentWorkingDir = workingDir;
return this.connectionHandler.connect(
this.connection,
workingDir,
cliEntryPath,
options,
);
}

View File

@@ -576,7 +576,6 @@ export class WebViewProvider {
const connectResult = await this.agentManager.connect(
workingDir,
bundledCliEntry,
options,
);
console.log('[WebViewProvider] Agent connected successfully');
this.agentInitialized = true;