Add 3 files
Browse files- README.md +7 -5
- index.html +139 -19
- prompts.txt +1 -0
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
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: new-shi
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: green
|
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,139 @@
|
|
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="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Super Agent Task Execution</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 |
+
.gradient-bg {
|
11 |
+
background: linear-gradient(135deg, #6e8efb, #a777e3);
|
12 |
+
}
|
13 |
+
.agent-card:hover {
|
14 |
+
transform: translateY(-5px);
|
15 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
16 |
+
}
|
17 |
+
.fade-in {
|
18 |
+
animation: fadeIn 0.5s ease-in-out;
|
19 |
+
}
|
20 |
+
@keyframes fadeIn {
|
21 |
+
from { opacity: 0; }
|
22 |
+
to { opacity: 1; }
|
23 |
+
}
|
24 |
+
.typing {
|
25 |
+
border-right: 2px solid;
|
26 |
+
animation: typing 1s steps(40, end), blink-caret .75s step-end infinite;
|
27 |
+
}
|
28 |
+
@keyframes typing {
|
29 |
+
from { width: 0 }
|
30 |
+
to { width: 100% }
|
31 |
+
}
|
32 |
+
@keyframes blink-caret {
|
33 |
+
from, to { border-color: transparent }
|
34 |
+
50% { border-color: #4f46e5; }
|
35 |
+
}
|
36 |
+
.task-progress {
|
37 |
+
height: 4px;
|
38 |
+
background-color: #e5e7eb;
|
39 |
+
border-radius: 2px;
|
40 |
+
overflow: hidden;
|
41 |
+
}
|
42 |
+
.task-progress-bar {
|
43 |
+
height: 100%;
|
44 |
+
background: linear-gradient(90deg, #4f46e5, #a855f7);
|
45 |
+
transition: width 0.3s ease;
|
46 |
+
}
|
47 |
+
.pulse {
|
48 |
+
animation: pulse 2s infinite;
|
49 |
+
}
|
50 |
+
@keyframes pulse {
|
51 |
+
0% { opacity: 1; }
|
52 |
+
50% { opacity: 0.5; }
|
53 |
+
100% { opacity: 1; }
|
54 |
+
}
|
55 |
+
</style>
|
56 |
+
</head>
|
57 |
+
<body class="bg-gray-50 min-h-screen">
|
58 |
+
<!-- Header -->
|
59 |
+
<header class="gradient-bg text-white shadow-lg">
|
60 |
+
<div class="container mx-auto px-4 py-6">
|
61 |
+
<div class="flex justify-between items-center">
|
62 |
+
<div class="flex items-center space-x-3">
|
63 |
+
<i class="fas fa-robot text-3xl"></i>
|
64 |
+
<h1 class="text-2xl font-bold">Super Agent Task Execution</h1>
|
65 |
+
<span class="bg-indigo-100 text-indigo-800 text-xs font-medium px-2.5 py-0.5 rounded-full">v0.3</span>
|
66 |
+
</div>
|
67 |
+
<div class="flex space-x-4">
|
68 |
+
<button class="bg-white/20 hover:bg-white/30 px-4 py-2 rounded-lg flex items-center space-x-2 transition">
|
69 |
+
<i class="fas fa-tasks"></i>
|
70 |
+
<span>Task Dashboard</span>
|
71 |
+
</button>
|
72 |
+
<button class="bg-white/20 hover:bg-white/30 px-4 py-2 rounded-lg flex items-center space-x-2 transition">
|
73 |
+
<i class="fas fa-cog"></i>
|
74 |
+
<span>Settings</span>
|
75 |
+
</button>
|
76 |
+
</div>
|
77 |
+
</div>
|
78 |
+
</div>
|
79 |
+
</header>
|
80 |
+
|
81 |
+
<!-- Main Content -->
|
82 |
+
<main class="container mx-auto px-4 py-8">
|
83 |
+
<div class="grid grid-cols-1 lg:grid-cols-4 gap-8">
|
84 |
+
<!-- Left Sidebar - Agent Selection -->
|
85 |
+
<div class="lg:col-span-1 space-y-6">
|
86 |
+
<div class="bg-white rounded-xl shadow-md p-6">
|
87 |
+
<h2 class="text-xl font-semibold mb-4 text-gray-800">Agent Task Queue</h2>
|
88 |
+
<div class="space-y-4">
|
89 |
+
<div class="bg-indigo-50 rounded-lg p-4">
|
90 |
+
<div class="flex justify-between items-center mb-2">
|
91 |
+
<h3 class="font-medium text-indigo-700">Pending Tasks</h3>
|
92 |
+
<span class="bg-indigo-100 text-indigo-800 text-xs font-medium px-2.5 py-0.5 rounded-full">3</span>
|
93 |
+
</div>
|
94 |
+
<div class="space-y-3">
|
95 |
+
<div class="bg-white p-3 rounded-lg border border-gray-200">
|
96 |
+
<div class="flex justify-between items-start">
|
97 |
+
<div>
|
98 |
+
<p class="text-sm font-medium">Plan trip to San Diego</p>
|
99 |
+
<p class="text-xs text-gray-500">Planner Agent</p>
|
100 |
+
</div>
|
101 |
+
<span class="bg-yellow-100 text-yellow-800 text-xs font-medium px-2 py-0.5 rounded-full">Queued</span>
|
102 |
+
</div>
|
103 |
+
</div>
|
104 |
+
<div class="bg-white p-3 rounded-lg border border-gray-200">
|
105 |
+
<div class="flex justify-between items-start">
|
106 |
+
<div>
|
107 |
+
<p class="text-sm font-medium">Make dinner reservation</p>
|
108 |
+
<p class="text-xs text-gray-500">Phone Agent</p>
|
109 |
+
</div>
|
110 |
+
<span class="bg-yellow-100 text-yellow-800 text-xs font-medium px-2 py-0.5 rounded-full">Queued</span>
|
111 |
+
</div>
|
112 |
+
</div>
|
113 |
+
<div class="bg-white p-3 rounded-lg border border-gray-200">
|
114 |
+
<div class="flex justify-between items-start">
|
115 |
+
<div>
|
116 |
+
<p class="text-sm font-medium">Research fusion energy</p>
|
117 |
+
<p class="text-xs text-gray-500">Research Agent</p>
|
118 |
+
</div>
|
119 |
+
<span class="bg-yellow-100 text-yellow-800 text-xs font-medium px-2 py-0.5 rounded-full">Queued</span>
|
120 |
+
</div>
|
121 |
+
</div>
|
122 |
+
</div>
|
123 |
+
</div>
|
124 |
+
<div class="bg-green-50 rounded-lg p-4">
|
125 |
+
<div class="flex justify-between items-center mb-2">
|
126 |
+
<h3 class="font-medium text-green-700">Active Tasks</h3>
|
127 |
+
<span class="bg-green-100 text-green-800 text-xs font-medium px-2.5 py-0.5 rounded-full">2</span>
|
128 |
+
</div>
|
129 |
+
<div class="space-y-3">
|
130 |
+
<div class="bg-white p-3 rounded-lg border border-gray-200">
|
131 |
+
<div class="flex justify-between items-start">
|
132 |
+
<div>
|
133 |
+
<p class="text-sm font-medium">Analyze sales data</p>
|
134 |
+
<p class="text-xs text-gray-500">Data Analysis Agent</p>
|
135 |
+
</div>
|
136 |
+
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2 py-0.5 rounded-full">Running</span>
|
137 |
+
</div>
|
138 |
+
<div class="
|
139 |
+
</html>
|
prompts.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Super agents now need to.perform the tasks there assigned to
|