File size: 2,310 Bytes
d8c7e7a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>LAGENT - Multi-Agent System</title>
    <style>
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        .container {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        h1 {
            color: #2d3748;
            text-align: center;
            margin-bottom: 30px;
        }
        .feature {
            margin-bottom: 20px;
            padding: 15px;
            border-left: 4px solid #4a5568;
            background-color: #f8f9fa;
        }
        .feature h2 {
            color: #4a5568;
            margin-top: 0;
        }
        code {
            background-color: #edf2f7;
            padding: 2px 4px;
            border-radius: 4px;
            font-family: 'Courier New', Courier, monospace;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>🤖 LAGENT - Multi-Agent System</h1>
        
        <div class="feature">
            <h2>项目简介</h2>
            <p>LAGENT 是一个从零开始搭建的 Multi-Agent 系统,旨在帮助开发者理解和实现多智能体系统。</p>
        </div>

        <div class="feature">
            <h2>主要特性</h2>
            <ul>
                <li>多智能体协作框架</li>
                <li>灵活的任务分配机制</li>
                <li>可扩展的代理架构</li>
                <li>简单易用的 API 接口</li>
            </ul>
        </div>

        <div class="feature">
            <h2>快速开始</h2>
            <p>克隆仓库并安装依赖:</p>
            <code>git clone https://huggingface.co/spaces/xiaoxishui/LAGENT</code>
        </div>

        <div class="feature">
            <h2>文档</h2>
            <p>详细的文档和示例正在编写中,敬请期待...</p>
        </div>
    </div>
</body>
</html>