Chatbot / app.py
Cartof's picture
Update app.py
a00c189
raw
history blame
927 Bytes
<!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>