Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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>