mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 13:46:24 +00:00
- ClaudeService에 analyze_suggestions 메서드 추가 - 개선된 제안사항 추출 프롬프트 생성 (구체적이고 실행 가능한 제안사항) - API 경로 수정: /api/v1/ai/suggestions → /api/ai/suggestions - 프론트엔드 HTML API 경로 업데이트 (v1 제거) - RealtimeSuggestionsResponse 모델 export 추가 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
431 B
Python
23 lines
431 B
Python
"""Data Models"""
|
|
from .transcript import (
|
|
ConsolidateRequest,
|
|
ConsolidateResponse,
|
|
AgendaSummary,
|
|
ParticipantMinutes,
|
|
ExtractedTodo
|
|
)
|
|
from .response import (
|
|
SimpleSuggestion,
|
|
RealtimeSuggestionsResponse
|
|
)
|
|
|
|
__all__ = [
|
|
"ConsolidateRequest",
|
|
"ConsolidateResponse",
|
|
"AgendaSummary",
|
|
"ParticipantMinutes",
|
|
"ExtractedTodo",
|
|
"SimpleSuggestion",
|
|
"RealtimeSuggestionsResponse",
|
|
]
|