maomaobj commited on
Commit
61142df
·
verified ·
1 Parent(s): c517ab5

画一张体现“智能知识服务三大支柱”的图示,用三根并列的纵向支柱或分层卡片表示三大支柱,分别命名为: 1. 数据资产构建 2. 智能认知引擎 3. 场景化智能体应用 每个支柱下方附简洁的子模块,使用图标或小方块表示能力项: - 数据资产构建包括:多源采集器、非结构化治理、质量评估、数据可追溯 - 智能认知引擎包括:私有大模型、知识图谱构建、多模态理解、语义推理 - 场景化智能体包括:合同Agent、综述Agent、预警Agent、无代码工作流 底部统一连接到“智能闭环”一条横线,标注:数据 → 知识 → 智能 → 决策 整体风格为现代科技感,配色以蓝白灰为主,图形简洁干净,适合PPT展示 - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +171 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: K2
3
- emoji: 📉
4
- colorFrom: pink
5
  colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: k2
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
  colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,171 @@
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="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Intelligent Knowledge Services</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .pillar {
11
+ transition: all 0.3s ease;
12
+ }
13
+ .pillar:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
16
+ }
17
+ .capability-item {
18
+ transition: all 0.2s ease;
19
+ }
20
+ .capability-item:hover {
21
+ transform: scale(1.05);
22
+ }
23
+ @media (max-width: 768px) {
24
+ .pillars-container {
25
+ flex-direction: column;
26
+ align-items: center;
27
+ }
28
+ .pillar {
29
+ width: 90%;
30
+ margin-bottom: 1.5rem;
31
+ }
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="bg-gray-50 min-h-screen flex flex-col items-center justify-center p-4">
36
+ <div class="max-w-6xl w-full">
37
+ <h1 class="text-3xl md:text-4xl font-bold text-center text-gray-800 mb-2">智能知识服务三大支柱</h1>
38
+ <p class="text-center text-gray-600 mb-10">Three Pillars of Intelligent Knowledge Services</p>
39
+
40
+ <div class="pillars-container flex flex-col md:flex-row justify-between items-stretch gap-6 mb-10">
41
+ <!-- Pillar 1: Data Asset Construction -->
42
+ <div class="pillar flex-1 bg-white rounded-xl shadow-md overflow-hidden border-t-4 border-blue-500">
43
+ <div class="p-6">
44
+ <div class="flex justify-center mb-4">
45
+ <div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center">
46
+ <i class="fas fa-database text-blue-600 text-2xl"></i>
47
+ </div>
48
+ </div>
49
+ <h2 class="text-xl font-bold text-center text-gray-800 mb-4">数据资产构建<br>Data Asset Construction</h2>
50
+ <div class="flex flex-wrap justify-center gap-3">
51
+ <div class="capability-item bg-blue-50 text-blue-800 px-3 py-2 rounded-lg text-sm flex items-center">
52
+ <i class="fas fa-cloud-download-alt mr-2"></i> 多源采集器
53
+ </div>
54
+ <div class="capability-item bg-blue-50 text-blue-800 px-3 py-2 rounded-lg text-sm flex items-center">
55
+ <i class="fas fa-project-diagram mr-2"></i> 非结构化治理
56
+ </div>
57
+ <div class="capability-item bg-blue-50 text-blue-800 px-3 py-2 rounded-lg text-sm flex items-center">
58
+ <i class="fas fa-check-circle mr-2"></i> 质量评估
59
+ </div>
60
+ <div class="capability-item bg-blue-50 text-blue-800 px-3 py-2 rounded-lg text-sm flex items-center">
61
+ <i class="fas fa-search mr-2"></i> 数据可追溯
62
+ </div>
63
+ </div>
64
+ </div>
65
+ </div>
66
+
67
+ <!-- Pillar 2: Intelligent Cognitive Engine -->
68
+ <div class="pillar flex-1 bg-white rounded-xl shadow-md overflow-hidden border-t-4 border-indigo-500">
69
+ <div class="p-6">
70
+ <div class="flex justify-center mb-4">
71
+ <div class="w-16 h-16 rounded-full bg-indigo-100 flex items-center justify-center">
72
+ <i class="fas fa-brain text-indigo-600 text-2xl"></i>
73
+ </div>
74
+ </div>
75
+ <h2 class="text-xl font-bold text-center text-gray-800 mb-4">智能认知引擎<br>Intelligent Cognitive Engine</h2>
76
+ <div class="flex flex-wrap justify-center gap-3">
77
+ <div class="capability-item bg-indigo-50 text-indigo-800 px-3 py-2 rounded-lg text-sm flex items-center">
78
+ <i class="fas fa-robot mr-2"></i> 私有大模型
79
+ </div>
80
+ <div class="capability-item bg-indigo-50 text-indigo-800 px-3 py-2 rounded-lg text-sm flex items-center">
81
+ <i class="fas fa-network-wired mr-2"></i> 知识图谱构建
82
+ </div>
83
+ <div class="capability-item bg-indigo-50 text-indigo-800 px-3 py-2 rounded-lg text-sm flex items-center">
84
+ <i class="fas fa-eye mr-2"></i> 多模态理解
85
+ </div>
86
+ <div class="capability-item bg-indigo-50 text-indigo-800 px-3 py-2 rounded-lg text-sm flex items-center">
87
+ <i class="fas fa-lightbulb mr-2"></i> 语义推理
88
+ </div>
89
+ </div>
90
+ </div>
91
+ </div>
92
+
93
+ <!-- Pillar 3: Scenario-based Intelligent Agents -->
94
+ <div class="pillar flex-1 bg-white rounded-xl shadow-md overflow-hidden border-t-4 border-teal-500">
95
+ <div class="p-6">
96
+ <div class="flex justify-center mb-4">
97
+ <div class="w-16 h-16 rounded-full bg-teal-100 flex items-center justify-center">
98
+ <i class="fas fa-cogs text-teal-600 text-2xl"></i>
99
+ </div>
100
+ </div>
101
+ <h2 class="text-xl font-bold text-center text-gray-800 mb-4">场景化智能体应用<br>Scenario-based Intelligent Agents</h2>
102
+ <div class="flex flex-wrap justify-center gap-3">
103
+ <div class="capability-item bg-teal-50 text-teal-800 px-3 py-2 rounded-lg text-sm flex items-center">
104
+ <i class="fas fa-file-signature mr-2"></i> 合同Agent
105
+ </div>
106
+ <div class="capability-item bg-teal-50 text-teal-800 px-3 py-2 rounded-lg text-sm flex items-center">
107
+ <i class="fas fa-book-open mr-2"></i> 综述Agent
108
+ </div>
109
+ <div class="capability-item bg-teal-50 text-teal-800 px-3 py-2 rounded-lg text-sm flex items-center">
110
+ <i class="fas fa-bell mr-2"></i> 预警Agent
111
+ </div>
112
+ <div class="capability-item bg-teal-50 text-teal-800 px-3 py-2 rounded-lg text-sm flex items-center">
113
+ <i class="fas fa-code mr-2"></i> 无代码工作流
114
+ </div>
115
+ </div>
116
+ </div>
117
+ </div>
118
+ </div>
119
+
120
+ <!-- Intelligent Closed Loop -->
121
+ <div class="relative">
122
+ <div class="absolute left-0 right-0 top-1/2 h-1 bg-gradient-to-r from-blue-500 via-indigo-500 to-teal-500 rounded-full"></div>
123
+ <div class="relative bg-white rounded-xl shadow-lg p-6 text-center max-w-2xl mx-auto border border-gray-100">
124
+ <h3 class="text-lg font-bold text-gray-800 mb-2">智能闭环 Intelligent Closed Loop</h3>
125
+ <div class="flex justify-between items-center">
126
+ <div class="flex flex-col items-center">
127
+ <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center mb-1">
128
+ <i class="fas fa-database text-blue-600"></i>
129
+ </div>
130
+ <span class="text-sm font-medium">数据 Data</span>
131
+ </div>
132
+ <i class="fas fa-arrow-right text-gray-400"></i>
133
+ <div class="flex flex-col items-center">
134
+ <div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mb-1">
135
+ <i class="fas fa-brain text-indigo-600"></i>
136
+ </div>
137
+ <span class="text-sm font-medium">知识 Knowledge</span>
138
+ </div>
139
+ <i class="fas fa-arrow-right text-gray-400"></i>
140
+ <div class="flex flex-col items-center">
141
+ <div class="w-10 h-10 rounded-full bg-teal-100 flex items-center justify-center mb-1">
142
+ <i class="fas fa-robot text-teal-600"></i>
143
+ </div>
144
+ <span class="text-sm font-medium">智能 Intelligence</span>
145
+ </div>
146
+ <i class="fas fa-arrow-right text-gray-400"></i>
147
+ <div class="flex flex-col items-center">
148
+ <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center mb-1">
149
+ <i class="fas fa-chart-line text-green-600"></i>
150
+ </div>
151
+ <span class="text-sm font-medium">决策 Decision</span>
152
+ </div>
153
+ </div>
154
+ </div>
155
+ </div>
156
+ </div>
157
+
158
+ <script>
159
+ // Add simple animation on load
160
+ document.addEventListener('DOMContentLoaded', () => {
161
+ const pillars = document.querySelectorAll('.pillar');
162
+ pillars.forEach((pillar, index) => {
163
+ setTimeout(() => {
164
+ pillar.style.opacity = '1';
165
+ pillar.style.transform = 'translateY(0)';
166
+ }, 200 * index);
167
+ });
168
+ });
169
+ </script>
170
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://deepsite.hf.co/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://deepsite.hf.co" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://deepsite.hf.co?remix=maomaobj/k2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
171
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ 画一张体现“智能知识服务三大支柱”的图示,用三根并列的纵向支柱或分层卡片表示三大支柱,分别命名为: 1. 数据资产构建 2. 智能认知引擎 3. 场景化智能体应用 每个支柱下方附简洁的子模块,使用图标或小方块表示能力项: - 数据资产构建包括:多源采集器、非结构化治理、质量评估、数据可追溯 - 智能认知引擎包括:私有大模型、知识图谱构建、多模态理解、语义推理 - 场景化智能体包括:合同Agent、综述Agent、预警Agent、无代码工作流 底部统一连接到“智能闭环”一条横线,标注:数据 → 知识 → 智能 → 决策 整体风格为现代科技感,配色以蓝白灰为主,图形简洁干净,适合PPT展示