forked from OpenBMB/ChatDev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevolution.html
159 lines (144 loc) · 4.48 KB
/
evolution.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Cache-Control" content="no-store">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/logo.png" />
<title>§3: Evolution</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/1.11.5/css/jquery.dataTables.min.css" />
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.datatables.net/1.11.5/js/jquery.dataTables.min.js"></script>
<style>
.table-container {
overflow-x: auto;
}
.paper-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
.paper-table th,
.paper-table td {
padding: 12px;
border: 1px solid #ddd;
text-align: left;
}
.paper-table th {
cursor: pointer;
background-color: #f4f4f4;
}
.paper-table th:hover {
background-color: #e0e0e0;
}
.sorting:after {
content: ' \25B2';
}
.sorting_asc:after {
content: ' \25B2';
}
.sorting_desc:after {
content: ' \25BC';
}
#interactiveBookContainer {
width: 1250px;
height: 850px;
margin: 0 auto;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<header>
<div class="container">
</div>
</header>
<section class="paper-list">
<div class="container">
<div class="container" style="display: flex; align-items: center; position: relative;">
<a href="index.html" class="btn clr3" style="position: absolute; left: 0; top: 50%; transform: translateY(-50%);">← Back Homepage</a>
<div style="flex: 1; text-align: center;">
<h2 class="section-heading" style="display: inline-block; margin: 0;">§3: Evolution</h2>
</div>
</div>
<p class="section-description text-center">
The evolution of multi-agent systems focuses on <b>cross-task experience accumulation</b>, enabling agents to enhance their capabilities and adapt to increasingly complex challenges. Click on the ebook below to read.
</p>
<div id="interactiveBookContainer">
<iframe src="./book_evolution_index.html"></iframe>
</div>
<br>
<br>
<br>
<br>
<div class="table-container">
<table id="paperTable" class="display paper-table">
<thead>
<tr>
<th>Title</th>
<th>Authors</th>
<th>Affiliations</th>
<th>Link</th>
<th>Date</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</section>
<!-- ATTRIBUTION -->
<div class="attribution">
<p>
Initiated by the <a href="https://github.com/OpenBMB/ChatDev" target="_blank">ChatDev</a> Group, Tsinghua
University
<br>Contact us via <a href="mailto:qianc62@gmail.com">qianc62@gmail.com</a>
</p>
</div>
<script>
$(document).ready(function () {
var keyword = "Evolution";
Papa.parse("papers.csv", {
download: true,
header: true,
complete: function (results) {
var data = results.data;
var filteredData = data
.filter(function (row) {
return row.AwesomeListCategory && row.AwesomeListCategory === keyword;
})
.map(function (row, index) {
row.originalIndex = index;
return row;
});
$('#paperTable').DataTable({
data: filteredData,
order: [],
columns: [
{ "data": "Title" },
{ "data": "Authors" },
{ "data": "Affiliation" },
{ "data": "Url", "render": function (data) { return `<a href="${data}">Link</a>`; } },
{ "data": "Date" },
],
rowCallback: function (row, data, index) {
$(row).attr('data-original-index', data.originalIndex);
}
});
}
});
});
</script>
</body>
</html>