namespace AxCopilot.Services.Agent;
///
/// 세션 내 자동 수집된 학습 항목.
///
internal sealed record SessionLearning(
/// 카테고리: build_config, code_location, project_structure, error_pattern, dependency
string Category,
/// 학습 내용 텍스트
string Content,
/// 추출 시점
DateTime ExtractedAt,
/// 출처 도구명
string SourceTool
);