06eb3c57ab
- Chart.js - pdf, csv 파일 업로드 후 데이터 정제하여 llm으로 처리 후 결과 도출 - sqlite로 데이터 저장 - ORM - SQLAlchemy
23 lines
535 B
HTML
23 lines
535 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<h2>RAG</h2>
|
|
<div>
|
|
<input type="file" name="file" id="file">
|
|
<button id="uploadBtn">업로드</button>
|
|
</div>
|
|
<hr>
|
|
<div id="result"></div>
|
|
<hr>
|
|
<div>
|
|
<input type="text" name="question" id="question">
|
|
<button id="askBtn">질문</button>
|
|
</div>
|
|
<div id="answer_result"></div>
|
|
<script src="{{ url_for('static', path='js/index.js')}}"></script>
|
|
</body>
|
|
</html> |