Path: blob/main/src/vs/sessions/contrib/chat/common/builtinPromptsStorage.ts
13401 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 { URI } from '../../../../base/common/uri.js';6import { PromptsType } from '../../../../workbench/contrib/chat/common/promptSyntax/promptTypes.js';7import { AICustomizationPromptsStorage } from '../../../../workbench/contrib/chat/common/aiCustomizationWorkspaceService.js';89// Re-export from common for backward compatibility10export type { AICustomizationPromptsStorage } from '../../../../workbench/contrib/chat/common/aiCustomizationWorkspaceService.js';11export { BUILTIN_STORAGE } from '../../../../workbench/contrib/chat/common/aiCustomizationWorkspaceService.js';1213/**14* Prompt path for built-in prompts bundled with the Agents app.15*/16export interface IBuiltinPromptPath {17readonly uri: URI;18readonly storage: AICustomizationPromptsStorage;19readonly type: PromptsType;20readonly name?: string;21readonly description?: string;22}232425