Path: blob/main/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.ts
4780 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { VSBuffer } from '../../../../../base/common/buffer.js';6import { localize } from '../../../../../nls.js';7import { IChatRequestVariableEntry } from '../../common/attachments/chatVariableEntries.js';89export const ScreenshotVariableId = 'screenshot-focused-window';1011export function convertBufferToScreenshotVariable(buffer: VSBuffer): IChatRequestVariableEntry {12return {13id: ScreenshotVariableId,14name: localize('screenshot', 'Screenshot'),15value: buffer.buffer,16kind: 'image'17};18}192021