Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Agent preview -> experimental #239121

Merged
merged 1 commit into from
Jan 29, 2025
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
3 changes: 2 additions & 1 deletion src/vs/workbench/contrib/chat/browser/chatSetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,8 @@ export class ChatSetupContribution extends Disposable implements IWorkbenchContr
'chat.agent.maxRequests': {
type: 'number',
description: localize('chat.agent.maxRequests', "The maximum number of requests to allow Copilot Edits to use in agent mode."),
default: context.state.entitlement === ChatEntitlement.Limited ? 5 : 15
default: context.state.entitlement === ChatEntitlement.Limited ? 5 : 15,
tags: ['experimental']
},
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export class ChatViewWelcomePart extends Disposable {
// Override welcome message for the agent. Sort of a hack, should it come from the participant? This case is different because the welcome content typically doesn't change per ChatWidget
content.message = new MarkdownString('Ask Copilot to edit your files in agent mode. Copilot will automatically use multiple requests to pick files to edit, run terminal commands, and iterate on errors.\n\nCopilot is powered by AI, so mistakes are possible. Review output carefully before use.');
const featureIndicator = dom.append(this.element, $('.chat-welcome-view-indicator'));
featureIndicator.textContent = localize('preview', "PREVIEW");
featureIndicator.textContent = localize('experimental', "EXPERIMENTAL");
}

// Message
Expand Down
Loading