|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8" /> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|
<title>Fast API 🤗 Space served with Uvicorn</title> |
|
<link rel="stylesheet" href="style.css" /> |
|
<script type="module" src="script.js"></script> |
|
</head> |
|
<body> |
|
<main> |
|
<section id="text-gen"> |
|
<h1>常规病理抽取</h1> |
|
<form class="text-gen-form"> |
|
<label for="text-gen-input">Text</label> |
|
<input |
|
id="text-gen-input" |
|
type="text" |
|
class="text-input" |
|
value="(左肺下叶后基底段)腺泡型85%浸润性腺癌,伴微乳头型15% 成分,大小2.2*1.8*1.6cm。(左肺下叶后基底段)切缘(F19-8611)见癌累及。 " |
|
/> |
|
<button id="text-gen-submit">Submit</button> |
|
<p class="text-gen-output"></p> |
|
</form> |
|
</section> |
|
</main> |
|
</body> |
|
</html> |