graph TD
User[User] <-->|Using-AI-Tools-Front| AI_Agent[AI Agent]
AI_Agent[AI Agent] -->|calls| ENTRY[System Entry]
subgraph fastapi-mcp
ENTRY --> 음성[영어 영상.mp4]
ENTRY --> 텍스트[영어 논문.pdf]
음성 --> whisperAI[whisperAI]
whisperAI -->|Speech to Text| 영어텍스트[영어 text]
텍스트 --> 영어텍스트
영어텍스트 --> PDFMathTranslate
PDFMathTranslate --> 한글텍스트[한글 자막 or 번역 논문]
end
한글텍스트 -->|output| AI_Agent
uvicorn app.main:app --host 127.0.0.1 --port 8000 --reload