1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation. All rights reserved. 3 * Licensed under the MIT License. See License.txt in the project root for license information. 4 *--------------------------------------------------------------------------------------------*/ 5 6export interface ParsedClaudeModelId { 7 readonly name: string; 8 readonly version: string; 9 readonly modifiers: string; 10 toSdkModelId(): string; 11 toEndpointModelId(): string; 12} 13 14