export async function projectFromCopilotContext(context: ICopilotSessionContext | undefined, gitService: IAgentHostGitService): Promise<IAgentSessionProjectInfo | undefined> {
const workingDirectory = typeof context?.cwd === 'string'
: typeof context?.gitRoot === 'string'
? URI.file(context.gitRoot)