relation-api / static /index.html
alaajabari's picture
Update static/index.html
ad240b0 verified
raw
history blame contribute delete
656 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Arabic IE System (NER + RE)</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
<h2>Arabic Information Extraction</h2>
<textarea id="text" placeholder="Enter Arabic text..."></textarea>
<div class="buttons">
<button class="ner" onclick="runNER()">Extract NER</button>
<button class="re" onclick="runRE()">Extract Relations</button>
</div>
<div class="output-box">
<h3>Output</h3>
<pre id="output">Results will appear here...</pre>
</div>
</div>
<script src="/static/script.js"></script>
</body>
</html>