xiaoxishui commited on
Commit
1dcbac4
·
1 Parent(s): d1bc62d

Add index.html with project introduction

Browse files
Files changed (1) hide show
  1. index.html +76 -19
index.html CHANGED
@@ -1,19 +1,76 @@
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 your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>