yasserrmd commited on
Commit
a44e0ad
1 Parent(s): d56ac50

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +46 -33
index.html CHANGED
@@ -1,34 +1,47 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to Adhoc Multi Agent</h1>
12
- <p>You can define the agent’s work on an ad-hoc basis. </p>
13
- <code>
14
- agent1: generate the outline of the website<br>
15
- agent2: generate list of pages based on the agent1 generated<br>
16
- agent3: generate HTML for each page from the list generated by agent2<br>
17
- agent4: nothing<br>
18
- agent5: nothing<br><br>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
- generate a website for ecommerce site
21
- </code>
22
-
23
- </div>
24
- <flowise-fullchatbot></flowise-fullchatbot>
25
- <script type="module">
26
- import Chatbot from "https://cdn.jsdelivr.net/npm/flowise-embed/dist/web.js"
27
- Chatbot.initFull({
28
- chatflowid: "d3548124-f646-4d6f-bc92-918a19023186",
29
- apiHost: "https://nakheeltech.com:8030",
30
- })
31
- </script>
32
-
33
- </body>
34
- </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>My Static Space</title>
7
+ <link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
8
+ <link rel="stylesheet" href="style.css">
9
+ <script>window.huggingface={variables:{}};</script>
10
+ </head>
11
+ <body>
12
+ <div class="container mt-5">
13
+ <div class="row">
14
+ <div class="col-md-6">
15
+ <div class="card">
16
+ <div class="card-body">
17
+ <h1 class="card-title">Welcome to Adhoc Multi Agent</h1>
18
+ <p class="card-text">You can define the agent’s work on an ad-hoc basis.</p>
19
+ <code>
20
+ agent1: generate the outline of the website<br>
21
+ agent2: generate list of pages based on the agent1 generated<br>
22
+ agent3: generate HTML for each page from the list generated by agent2<br>
23
+ agent4: nothing<br>
24
+ agent5: nothing<br><br>
25
+ generate a website for ecommerce site
26
+ </code>
27
+ </div>
28
+ </div>
29
+ </div>
30
+ <div class="col-md-6">
31
+ <flowise-fullchatbot></flowise-fullchatbot>
32
+ <script type="module">
33
+ import Chatbot from "https://cdn.jsdelivr.net/npm/flowise-embed/dist/web.js";
34
+ Chatbot.initFull({
35
+ chatflowid: "d3548124-f646-4d6f-bc92-918a19023186",
36
+ apiHost: "https://nakheeltech.com:8030",
37
+ });
38
+ </script>
39
+ </div>
40
+ </div>
41
+ </div>
42
 
43
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
44
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
45
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
46
+ </body>
47
+ </html>