Spaces:
Running
Running
File size: 653 Bytes
385b968 82efbf0 385b968 82efbf0 385b968 82efbf0 385b968 82efbf0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<html>
<head>
<title>Paraphrase AI Generated Content</title>
</head>
<body>
<h1>Paraphrase AI Generated Content</h1>
<form action="/" method="post">
<textarea name="text"></textarea><br>
<label for="library">Library:</label>
<select name="library">
<option value="transformers">Transformers</option>
<option value="parrot">Parrot</option>
</select><br>
<input type="submit" value="Paraphrase">
</form>
{% if original_text %}
<h2>Original Text</h2>
<p>{{ original_text }}</p>
<h2>Paraphrased Text</h2>
<p>{{ paraphrased_text }}</p>
{% endif %}
</body>
</html>
|