Spaces:
Build error
Build error
File size: 927 Bytes
a00c189 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Chatbot Demo</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Gradio Chatbot Demo</h1>
<div>Introduceți o întrebare și primiți un răspuns</div>
<form>
<input type="text" id="message" name="message" placeholder="Scrieți un mesaj...">
<button type="submit">Trimite</button>
<button type="reset">Resetați</button>
<button type="retry" style="display:none">Reîncercați</button>
<button type="deleteLast">Ștergeți ultimul mesaj</button>
</form>
<div class="gradio-chatbot">
</div>
<script src="https://cdn.gradio.app/js/chatbot/v1.0.0/chatbot.js"></script>
<script>
var chatbot = new GradioChatbot({
"type": "web",
"botId": "put your bot id here",
"serverName": "put your server name here"
});
</script>
</body>
</html>
|