Spaces:
Running
Running
xiaoxishui
commited on
Commit
·
1dcbac4
1
Parent(s):
d1bc62d
Add index.html with project introduction
Browse files- index.html +76 -19
index.html
CHANGED
@@ -1,19 +1,76 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="zh">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>LAGENT - Multi-Agent System</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
10 |
+
line-height: 1.6;
|
11 |
+
max-width: 800px;
|
12 |
+
margin: 0 auto;
|
13 |
+
padding: 20px;
|
14 |
+
background-color: #f5f5f5;
|
15 |
+
}
|
16 |
+
.container {
|
17 |
+
background-color: white;
|
18 |
+
padding: 30px;
|
19 |
+
border-radius: 10px;
|
20 |
+
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
21 |
+
}
|
22 |
+
h1 {
|
23 |
+
color: #2d3748;
|
24 |
+
text-align: center;
|
25 |
+
margin-bottom: 30px;
|
26 |
+
}
|
27 |
+
.feature {
|
28 |
+
margin-bottom: 20px;
|
29 |
+
padding: 15px;
|
30 |
+
border-left: 4px solid #4a5568;
|
31 |
+
background-color: #f8f9fa;
|
32 |
+
}
|
33 |
+
.feature h2 {
|
34 |
+
color: #4a5568;
|
35 |
+
margin-top: 0;
|
36 |
+
}
|
37 |
+
code {
|
38 |
+
background-color: #edf2f7;
|
39 |
+
padding: 2px 4px;
|
40 |
+
border-radius: 4px;
|
41 |
+
font-family: 'Courier New', Courier, monospace;
|
42 |
+
}
|
43 |
+
</style>
|
44 |
+
</head>
|
45 |
+
<body>
|
46 |
+
<div class="container">
|
47 |
+
<h1>🤖 LAGENT - Multi-Agent System</h1>
|
48 |
+
|
49 |
+
<div class="feature">
|
50 |
+
<h2>项目简介</h2>
|
51 |
+
<p>LAGENT 是一个从零开始搭建的 Multi-Agent 系统,旨在帮助开发者理解和实现多智能体系统。</p>
|
52 |
+
</div>
|
53 |
+
|
54 |
+
<div class="feature">
|
55 |
+
<h2>主要特性</h2>
|
56 |
+
<ul>
|
57 |
+
<li>多智能体协作框架</li>
|
58 |
+
<li>灵活的任务分配机制</li>
|
59 |
+
<li>可扩展的代理架构</li>
|
60 |
+
<li>简单易用的 API 接口</li>
|
61 |
+
</ul>
|
62 |
+
</div>
|
63 |
+
|
64 |
+
<div class="feature">
|
65 |
+
<h2>快速开始</h2>
|
66 |
+
<p>克隆仓库并安装依赖:</p>
|
67 |
+
<code>git clone https://huggingface.co/spaces/xiaoxishui/LAGENT</code>
|
68 |
+
</div>
|
69 |
+
|
70 |
+
<div class="feature">
|
71 |
+
<h2>文档</h2>
|
72 |
+
<p>详细的文档和示例正在编写中,敬请期待...</p>
|
73 |
+
</div>
|
74 |
+
</div>
|
75 |
+
</body>
|
76 |
+
</html>
|