ccfdac1286
2. fastAPI로 프로젝트 구조 실습 1. 랭체인 이미지 인식 후 처리 마무리 2. fastAPI로 프로젝트 구조 실습
19 lines
414 B
HTML
19 lines
414 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<h1>HOME</h1>
|
|
<ul>
|
|
<a href="/rag">RAG</a>
|
|
</ul>
|
|
<div>
|
|
<input type="text" name="question" id="question">
|
|
<button type="submit">질문</button>
|
|
</div>
|
|
<div id="answer"></div>
|
|
<script src="{{ url_for('static', path='js/index.js')}}"></script>
|
|
</body>
|
|
</html> |