Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <title>AI Deal Sentiment</title> | |
| <link rel="stylesheet" href="/static/style.css" /> | |
| </head> | |
| <body> | |
| <div class="wrap"> | |
| <header> | |
| <h1>AI Deal Sentiment</h1> | |
| <p class="lead">Paste customer chat or email text to get sentiment.</p> | |
| </header> | |
| <textarea id="inputText" placeholder="Paste customer chat here..."></textarea> | |
| <div class="actions"> | |
| <button id="analyzeBtn">Analyze</button> | |
| <span id="status" class="muted"></span> | |
| </div> | |
| <div id="result" class="panel" style="display:none;"> | |
| <div class="score" id="label">Label: --</div> | |
| <p id="score" class="muted"></p> | |
| <p id="reason"></p> | |
| </div> | |
| </div> | |
| <script src="/static/main.js"></script> | |
| </body> | |
| </html> | |