暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index1.html 434B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Langchain QA</title>
  5. </head>
  6. <body>
  7. <h1>Langchain Question Answering</h1>
  8. <form method="POST">
  9. <label for="question">Enter your question:</label>
  10. <input type="text" name="question" id="question">
  11. <input type="submit" value="Ask">
  12. </form>
  13. {% if result %}
  14. <h2>Answer:</h2>
  15. <p>{{ result }}</p>
  16. {% endif %}
  17. </body>
  18. </html>