adhoc-multi-agent / index.html
yasserrmd's picture
Update index.html
6d596f4 verified
raw
history blame contribute delete
No virus
2.08 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Static Space</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script>window.huggingface={variables:{}};</script>
</head>
<body>
<div class="container mt-5">
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-body">
<h1 class="card-title">Welcome to Adhoc Multi Agent</h1>
<p class="card-text">You can define the agent’s work on an ad-hoc basis.</p>
<code>
agent1: generate the outline of the website<br>
agent2: generate list of pages based on the agent1 generated<br>
agent3: generate HTML for each page from the list generated by agent2<br>
agent4: nothing<br>
agent5: nothing<br><br>
generate a website for simple technical community site
</code>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<flowise-fullchatbot></flowise-fullchatbot>
<script type="module">
import Chatbot from "https://cdn.jsdelivr.net/npm/flowise-embed/dist/web.js"
Chatbot.initFull({
chatflowid: "5d751ac2-eed2-4ccc-a34e-da29e9aed246",
apiHost: "https://nakheeltech.com:8030",
})
</script>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>