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>