-
Notifications
You must be signed in to change notification settings - Fork 4
Refact str to list #130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refact str to list #130
Conversation
|
Caution Review failedThe pull request is closed. Walkthrough
Sequence Diagram(s)sequenceDiagram
participant Client
participant Route as aiSummaryRoutes
participant Service as AiSummaryService
participant LLM as Claude API
Client->>Route: POST /api/ai/summary
Route->>Service: generateChatSummary(request)
Service->>LLM: 요청 전송
LLM-->>Service: 원문 응답(요약/감정 텍스트)
Service->>Service: parseEmotionText(텍스트→EmotionItem[])
alt 파싱 실패 또는 빈 결과
Service->>Service: 기본 EmotionItem[] 적용
end
Service-->>Route: { topicSummary, emotionAnalysis: EmotionItem[] }
Route-->>Client: 응답(JSON + Swagger 스키마 반영)
sequenceDiagram
participant Service as AiSummaryService
participant LLM as Claude API
Service->>LLM: 요청
LLM-->>Service: 오류/실패
Service-->>Service: emotionAnalysis=[{분석 불가,100}]
Service-->>Caller: DTO 반환
Estimated code review effort🎯 4 (Complex) | ⏱️ ~60 minutes Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. 📜 Recent review detailsConfiguration used: CodeRabbit UI 💡 Knowledge Base configuration:
You can enable these sources in your CodeRabbit configuration. 📒 Files selected for processing (3)
✨ Finishing Touches
🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
ai summary bedrock return type: str -> list
Summary by CodeRabbit
신기능
문서