8000 Fix typo (an language model call → a language model call) by Gallaecio · Pull Request #252202 · microsoft/vscode · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix typo (an language model call → a language model call) #252202

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

Merged
merged 1 commit into from
Jun 23, 2025
Merged
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
E3A3
Diff view
4 changes: 2 additions & 2 deletions src/vs/workbench/contrib/mcp/common/mcpSamplingService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export class McpSamplingService extends Disposable implements IMcpSamplingServic
const retry = await this._showContextual(
opts.isDuringToolCall,
localize('mcp.sampling.allowDuringChat.title', 'Allow MCP tools from "{0}" to make LLM requests?', opts.server.definition.label),
localize('mcp.sampling.allowDuringChat.desc', 'The MCP server "{0}" has issued a request to make an language model call. Do you want to allow it to make requests during chat?', opts.server.definition.label),
localize('mcp.sampling.allowDuringChat.desc', 'The MCP server "{0}" has issued a request to make a language model call. Do you want to allow it to make requests during chat?', opts.server.definition.label),
this.allowButtons(opts.server, 'allowedDuringChat')
);
if (retry) {
Expand All @@ -135,7 +135,7 @@ export class McpSamplingService extends Disposable implements IMcpSamplingServic
const retry = await this._showContextual(
opts.isDuringToolCall,
localize('mcp.sampling.allowOutsideChat.title', 'Allow MCP server "{0}" to make LLM requests?', opts.server.definition.label),
localize('mcp.sampling.allowOutsideChat.desc', 'The MCP server "{0}" has issued a request to make an language model call. Do you want to allow it to make requests, outside of tool calls during chat?', opts.server.definition.label),
localize('mcp.sampling.allowOutsideChat.desc', 'The MCP server "{0}" has issued a request to make a language model call. Do you want to allow it to make requests, outside of tool calls during chat?', opts.server.definition.label),
this.allowButtons(opts.server, 'allowedOutsideChat')
);
if (retry) {
Expand Down
Loading
0