- ai-service: 챗봇 분석/요약 엔드포인트 추가 (chatbot.py, chatbot_service.py) - tkreport: 챗봇 신고 페이지 (chat-report.html/js/css), nginx ai-api 프록시 - tkreport: 이미지 업로드 서비스 개선, M-Project 연동 신고자 정보 전달 - system1: TBM 작업보고서 UI 개선 - TKQC: 관리함/수신함 기능 개선 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<title>AI 신고 도우미 | (주)테크니컬코리아</title>
|
|
<link rel="icon" type="image/png" href="/img/favicon.png">
|
|
<link rel="stylesheet" href="/css/chat-report.css?v=3">
|
|
<script src="/js/api-base.js?v=20260309"></script>
|
|
<script src="/js/app-init.js?v=20260309" defer></script>
|
|
</head>
|
|
<body>
|
|
<!-- Header -->
|
|
<div class="chat-header">
|
|
<button class="chat-header-back" onclick="history.back()" aria-label="뒤로가기">←</button>
|
|
<div>
|
|
<div class="chat-header-title">AI 신고 도우미</div>
|
|
<div class="chat-header-subtitle">대화형 신고 접수</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Chat Area -->
|
|
<div class="chat-area" id="chatArea"></div>
|
|
|
|
<!-- Input Bar -->
|
|
<div class="chat-input-bar">
|
|
<button class="chat-photo-btn" id="photoBtn" aria-label="사진 첨부">📎</button>
|
|
<textarea class="chat-text-input" id="textInput" rows="1" placeholder="문제 상황을 설명해주세요..." enterkeyhint="send"></textarea>
|
|
<button class="chat-send-btn" id="sendBtn" disabled aria-label="전송">➤</button>
|
|
</div>
|
|
|
|
<!-- Hidden file input -->
|
|
<input type="file" id="chatPhotoInput" accept="image/*" style="display:none">
|
|
|
|
<script src="/js/chat-report.js?v=3"></script>
|
|
</body>
|
|
</html>
|