export function getDefaultNewChatSessionType(
chatSessionsService: Pick<IChatSessionsService, 'getChatSessionContribution' | 'getAllChatSessionContributions'>,
storageService: IStorageService,
workspace: IWorkspace,
agentHostEnabled: boolean,
options?: IDefaultNewChatSessionTypeOptions
): string {
if (options?.explicitOverride) {
return options.explicitOverride;
}