Spaces:
Running
Running
| <html lang="ko"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>RM-DETECT ยท AI ํ ์คํธ ํ์ง</title> | |
| <link rel="stylesheet" href="/static/style.css"> | |
| </head> | |
| <body> | |
| <header class="topbar"> | |
| <div class="brand"> | |
| <span class="logo">RM<span class="dot">ยท</span>DETECT</span> | |
| <span class="tagline">AI ์์ฑ ํ ์คํธ ํ์ง ยท AI-vs-human text detector</span> | |
| </div> | |
| <div class="engine">perplexity + stylometry | KO / EN</div> | |
| </header> | |
| <main> | |
| <section class="input-pane"> | |
| <div class="pane-head"> | |
| <h2>ํ ์คํธ ์ ๋ ฅ <span class="sub">Paste text</span></h2> | |
| <div class="controls"> | |
| <label>์ธ์ด | |
| <select id="lang"> | |
| <option value="">์๋ (auto)</option> | |
| <option value="ko">ํ๊ตญ์ด</option> | |
| <option value="en">English</option> | |
| </select> | |
| </label> | |
| <button id="sampleBtn" class="ghost" type="button">์์ ๋ฃ๊ธฐ</button> | |
| <button id="clearBtn" class="ghost" type="button">์ง์ฐ๊ธฐ</button> | |
| </div> | |
| </div> | |
| <textarea id="text" placeholder="๊ฒ์ฌํ ๊ธ์ ๋ถ์ฌ๋ฃ์ผ์ธ์. ๋ฌธ๋จ์ ๋น ์ค๋ก ๊ตฌ๋ถ๋ฉ๋๋ค. Paste text here โ paragraphs are split on blank lines."></textarea> | |
| <div class="actionbar"> | |
| <span id="charcount" class="charcount">0 ์</span> | |
| <button id="analyzeBtn" class="primary" type="button">๋ถ์ํ๊ธฐ Analyze</button> | |
| </div> | |
| </section> | |
| <section class="result-pane" id="resultPane" hidden> | |
| <div class="summary"> | |
| <div class="gauge-wrap"> | |
| <svg viewBox="0 0 120 120" class="gauge" id="gauge"> | |
| <circle class="gauge-bg" cx="60" cy="60" r="52"></circle> | |
| <circle class="gauge-fg" cx="60" cy="60" r="52" id="gaugeFg"></circle> | |
| <text x="60" y="56" class="gauge-num" id="gaugeNum">0%</text> | |
| <text x="60" y="74" class="gauge-lbl">AI ํ๋ฅ </text> | |
| </svg> | |
| </div> | |
| <div class="summary-text"> | |
| <div class="verdict" id="verdict">โ</div> | |
| <div class="meta" id="meta"></div> | |
| <div class="signals" id="docSignals"></div> | |
| </div> | |
| </div> | |
| <div class="highlight-head"> | |
| <h2>๋ฌธ๋จ๋ณ ์์ฌ ์์ญ <span class="sub">Per-paragraph</span></h2> | |
| <div class="legend"> | |
| <span class="chip human">์ธ๊ฐ likely</span> | |
| <span class="chip mixed">ํผํฉ mixed</span> | |
| <span class="chip ai">AI ์์ฌ</span> | |
| </div> | |
| </div> | |
| <div id="paragraphs" class="paragraphs"></div> | |
| </section> | |
| <div id="error" class="error" hidden></div> | |
| </main> | |
| <footer> | |
| RM-DETECT MVP ยท ํ๋ฅ ๊ธฐ๋ฐ ์ถ์ ์ด๋ฉฐ ํ์์ ์ธ ์ธ๊ฐ ๊ธ์ ์คํ๋ ์ ์์ต๋๋ค (research prototype, not a definitive judgment). | |
| </footer> | |
| <script src="/static/app.js"></script> | |
| </body> | |
| </html> | |