Upload files to 'Supportgpt/templates'

这个提交包含在:
2024-01-08 04:53:11 +00:00
父节点 2e35cfddc1
当前提交 c5d5ea9a24
+20
查看文件
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Langchain QA</title>
</head>
<body>
<h1>Langchain Question Answering</h1>
<form method="POST">
<label for="question">Enter your question:</label>
<input type="text" name="question" id="question">
<input type="submit" value="Ask">
</form>
{% if result %}
<h2>Answer:</h2>
<p>{{ result }}</p>
{% endif %}
</body>
</html>