AX Agent 메시지 액션과 응답 메타 표시 개선\n\n- assistant 메시지에 응답시간과 토큰 수를 저장하는 메타 필드 추가\n- 응답 커밋 시 토큰 사용량과 경과 시간을 메시지 모델에 함께 기록하도록 엔진과 전송 경로 보강\n- 사용자/assistant 메시지 액션 바를 기본 저강도 노출과 hover 강조 방식으로 바꿔 복사 편집 재생성 좋아요 싫어요가 보이도록 정리\n- README와 DEVELOPMENT 문서에 메시지 액션 및 응답 메타 개선 이력 반영\n- 검증: dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\\verify\\ -p:IntermediateOutputPath=obj\\verify\\ (경고 0 / 오류 0)
Some checks failed
Release Gate / gate (push) Has been cancelled

This commit is contained in:
2026-04-05 21:54:15 +09:00
parent ac4aada0af
commit 53965083e3
5 changed files with 107 additions and 11 deletions

View File

@@ -262,6 +262,15 @@ public class ChatMessage
[JsonPropertyName("feedback")]
public string? Feedback { get; set; }
[JsonPropertyName("responseElapsedMs")]
public long? ResponseElapsedMs { get; set; }
[JsonPropertyName("promptTokens")]
public int PromptTokens { get; set; }
[JsonPropertyName("completionTokens")]
public int CompletionTokens { get; set; }
/// <summary>첨부된 파일 경로 목록.</summary>
[JsonPropertyName("attachedFiles")]
public List<string>? AttachedFiles { get; set; }