MaxHeadspace commited on
Commit
bc8bf96
·
verified ·
1 Parent(s): 39a7e9f

openagi.studio - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +455 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Openagi Studios
3
- emoji: 🔥
4
- colorFrom: purple
5
  colorTo: pink
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: openagi-studios
3
+ emoji: 🐳
4
+ colorFrom: gray
5
  colorTo: pink
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,455 @@
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>OpenAGI Studio - AI Development Platform</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
+ .card-hover: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
+ .animate-pulse-slow {
18
+ animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
19
+ }
20
+ @keyframes pulse {
21
+ 0%, 100% { opacity: 1; }
22
+ 50% { opacity: 0.5; }
23
+ }
24
+ .code-editor {
25
+ background-color: #1e293b;
26
+ border-radius: 0.5rem;
27
+ }
28
+ .terminal {
29
+ background-color: #0f172a;
30
+ border-radius: 0.5rem;
31
+ font-family: 'Courier New', monospace;
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="bg-gray-50 text-gray-800 font-sans">
36
+ <!-- Navigation -->
37
+ <nav class="bg-white shadow-sm">
38
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
39
+ <div class="flex justify-between h-16">
40
+ <div class="flex items-center">
41
+ <div class="flex-shrink-0 flex items-center">
42
+ <i class="fas fa-robot text-purple-600 text-2xl mr-2"></i>
43
+ <span class="text-xl font-bold text-gray-900">OpenAGI<span class="text-purple-600">Studio</span></span>
44
+ </div>
45
+ <div class="hidden sm:ml-6 sm:flex sm:space-x-8">
46
+ <a href="#" class="border-purple-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Dashboard</a>
47
+ <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Projects</a>
48
+ <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Models</a>
49
+ <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Docs</a>
50
+ </div>
51
+ </div>
52
+ <div class="hidden sm:ml-6 sm:flex sm:items-center">
53
+ <button class="bg-white p-1 rounded-full text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500">
54
+ <span class="sr-only">Notifications</span>
55
+ <i class="fas fa-bell h-6 w-6"></i>
56
+ </button>
57
+ <div class="ml-3 relative">
58
+ <div>
59
+ <button type="button" class="bg-white rounded-full flex text-sm focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500" id="user-menu-button">
60
+ <span class="sr-only">Open user menu</span>
61
+ <img class="h-8 w-8 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
62
+ </button>
63
+ </div>
64
+ </div>
65
+ </div>
66
+ <div class="-mr-2 flex items-center sm:hidden">
67
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-purple-500">
68
+ <span class="sr-only">Open main menu</span>
69
+ <i class="fas fa-bars h-6 w-6"></i>
70
+ </button>
71
+ </div>
72
+ </div>
73
+ </div>
74
+ </nav>
75
+
76
+ <!-- Hero Section -->
77
+ <div class="gradient-bg text-white">
78
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
79
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
80
+ <div class="mb-8 lg:mb-0">
81
+ <h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl mb-4">
82
+ Build the Next Generation of AI
83
+ </h1>
84
+ <p class="text-xl text-purple-100 max-w-3xl">
85
+ OpenAGI Studio provides the tools and infrastructure to develop, train, and deploy advanced AI models with ease.
86
+ </p>
87
+ <div class="mt-8 flex flex-col sm:flex-row gap-4">
88
+ <button class="bg-white text-purple-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium text-lg shadow-md transition duration-300 transform hover:scale-105">
89
+ <i class="fas fa-play mr-2"></i> Start Building
90
+ </button>
91
+ <button class="bg-transparent border-2 border-white text-white hover:bg-white hover:text-purple-600 px-6 py-3 rounded-lg font-medium text-lg shadow-md transition duration-300 transform hover:scale-105">
92
+ <i class="fas fa-book mr-2"></i> Documentation
93
+ </button>
94
+ </div>
95
+ </div>
96
+ <div class="relative">
97
+ <div class="code-editor p-4">
98
+ <div class="flex mb-4">
99
+ <div class="h-3 w-3 rounded-full bg-red-500 mr-2"></div>
100
+ <div class="h-3 w-3 rounded-full bg-yellow-500 mr-2"></div>
101
+ <div class="h-3 w-3 rounded-full bg-green-500"></div>
102
+ </div>
103
+ <pre class="text-green-400 overflow-x-auto"><code>from openagi import Agent
104
+
105
+ class MyAgent(Agent):
106
+ def __init__(self):
107
+ super().__init__(
108
+ name="SmartAssistant",
109
+ capabilities=["nlp", "memory"],
110
+ learning_rate=0.001
111
+ )
112
+
113
+ def respond(self, input):
114
+ # Your custom AI logic here
115
+ return self.generate_response(input)
116
+
117
+ agent = MyAgent()
118
+ response = agent.respond("Hello, how can I help?")
119
+ print(response)</code></pre>
120
+ </div>
121
+ <div class="terminal mt-4 p-4 text-green-300">
122
+ <div class="flex items-center mb-2">
123
+ <i class="fas fa-terminal mr-2"></i>
124
+ <span>Terminal</span>
125
+ </div>
126
+ <div class="animate-pulse-slow">
127
+ <span class="text-purple-300">$</span> python my_agent.py<br>
128
+ <span class="text-white">Hello! I'm SmartAssistant. I can help with various tasks.</span>
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </div>
133
+ </div>
134
+ </div>
135
+
136
+ <!-- Features Section -->
137
+ <div class="py-12 bg-white">
138
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
139
+ <div class="text-center mb-12">
140
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
141
+ Powerful Features for AI Development
142
+ </h2>
143
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
144
+ Everything you need to build, train, and deploy sophisticated AI models
145
+ </p>
146
+ </div>
147
+
148
+ <div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
149
+ <!-- Feature 1 -->
150
+ <div class="card-hover transition duration-300 bg-gray-50 rounded-lg shadow-md p-6">
151
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
152
+ <i class="fas fa-brain text-xl"></i>
153
+ </div>
154
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Modular Architecture</h3>
155
+ <p class="text-gray-500">
156
+ Build AI agents with reusable components that can be easily combined and extended.
157
+ </p>
158
+ </div>
159
+
160
+ <!-- Feature 2 -->
161
+ <div class="card-hover transition duration-300 bg-gray-50 rounded-lg shadow-md p-6">
162
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
163
+ <i class="fas fa-project-diagram text-xl"></i>
164
+ </div>
165
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Visual Workflow Builder</h3>
166
+ <p class="text-gray-500">
167
+ Design complex AI workflows with our intuitive drag-and-drop interface.
168
+ </p>
169
+ </div>
170
+
171
+ <!-- Feature 3 -->
172
+ <div class="card-hover transition duration-300 bg-gray-50 rounded-lg shadow-md p-6">
173
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
174
+ <i class="fas fa-cloud-upload-alt text-xl"></i>
175
+ </div>
176
+ <h3 class="text-lg font-medium text-gray-900 mb-2">One-Click Deployment</h3>
177
+ <p class="text-gray-500">
178
+ Deploy your models to production with a single click, no DevOps required.
179
+ </p>
180
+ </div>
181
+
182
+ <!-- Feature 4 -->
183
+ <div class="card-hover transition duration-300 bg-gray-50 rounded-lg shadow-md p-6">
184
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
185
+ <i class="fas fa-chart-line text-xl"></i>
186
+ </div>
187
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Real-time Monitoring</h3>
188
+ <p class="text-gray-500">
189
+ Track your model's performance with comprehensive analytics and dashboards.
190
+ </p>
191
+ </div>
192
+
193
+ <!-- Feature 5 -->
194
+ <div class="card-hover transition duration-300 bg-gray-50 rounded-lg shadow-md p-6">
195
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
196
+ <i class="fas fa-users text-xl"></i>
197
+ </div>
198
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Collaboration Tools</h3>
199
+ <p class="text-gray-500">
200
+ Work seamlessly with your team with built-in version control and sharing.
201
+ </p>
202
+ </div>
203
+
204
+ <!-- Feature 6 -->
205
+ <div class="card-hover transition duration-300 bg-gray-50 rounded-lg shadow-md p-6">
206
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
207
+ <i class="fas fa-shield-alt text-xl"></i>
208
+ </div>
209
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Enterprise Security</h3>
210
+ <p class="text-gray-500">
211
+ Your data and models are protected with industry-leading security measures.
212
+ </p>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Demo Section -->
219
+ <div class="py-16 bg-gray-50">
220
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
221
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
222
+ <div class="mb-8 lg:mb-0">
223
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl mb-4">
224
+ Interactive Playground
225
+ </h2>
226
+ <p class="text-lg text-gray-500 mb-6">
227
+ Try out OpenAGI Studio right in your browser. No setup required.
228
+ </p>
229
+ <div class="space-y-4">
230
+ <div>
231
+ <label for="agent-type" class="block text-sm font-medium text-gray-700 mb-1">Agent Type</label>
232
+ <select id="agent-type" class="block w-full rounded-md border-gray-300 shadow-sm focus:border-purple-500 focus:ring-purple-500">
233
+ <option>Conversational</option>
234
+ <option>Analytical</option>
235
+ <option>Creative</option>
236
+ <option>Custom</option>
237
+ </select>
238
+ </div>
239
+ <div>
240
+ <label for="agent-input" class="block text-sm font-medium text-gray-700 mb-1">Input</label>
241
+ <input type="text" id="agent-input" class="block w-full rounded-md border-gray-300 shadow-sm focus:border-purple-500 focus:ring-purple-500" placeholder="Type your message...">
242
+ </div>
243
+ <button id="run-agent" class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-md font-medium">
244
+ Run Agent
245
+ </button>
246
+ </div>
247
+ </div>
248
+ <div class="bg-white rounded-lg shadow-lg overflow-hidden">
249
+ <div class="p-4 border-b border-gray-200 bg-gray-50">
250
+ <div class="flex items-center">
251
+ <div class="h-3 w-3 rounded-full bg-red-500 mr-2"></div>
252
+ <div class="h-3 w-3 rounded-full bg-yellow-500 mr-2"></div>
253
+ <div class="h-3 w-3 rounded-full bg-green-500 mr-2"></div>
254
+ <span class="text-sm text-gray-500 ml-2">Agent Response</span>
255
+ </div>
256
+ </div>
257
+ <div id="agent-output" class="p-4 h-64 overflow-y-auto">
258
+ <p class="text-gray-500 italic">Agent response will appear here...</p>
259
+ </div>
260
+ </div>
261
+ </div>
262
+ </div>
263
+ </div>
264
+
265
+ <!-- Testimonials -->
266
+ <div class="py-16 bg-white">
267
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
268
+ <div class="text-center mb-12">
269
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
270
+ Trusted by AI Teams Worldwide
271
+ </h2>
272
+ </div>
273
+ <div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
274
+ <!-- Testimonial 1 -->
275
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
276
+ <div class="flex items-center mb-4">
277
+ <img class="h-10 w-10 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/44.jpg" alt="">
278
+ <div>
279
+ <h4 class="font-medium text-gray-900">Dr. Sarah Chen</h4>
280
+ <p class="text-purple-600">AI Research Lead, TechCorp</p>
281
+ </div>
282
+ </div>
283
+ <p class="text-gray-600">
284
+ "OpenAGI Studio has dramatically reduced our development time. What used to take weeks now takes days, allowing us to iterate faster and deliver better models."
285
+ </p>
286
+ <div class="mt-4 flex text-yellow-400">
287
+ <i class="fas fa-star"></i>
288
+ <i class="fas fa-star"></i>
289
+ <i class="fas fa-star"></i>
290
+ <i class="fas fa-star"></i>
291
+ <i class="fas fa-star"></i>
292
+ </div>
293
+ </div>
294
+
295
+ <!-- Testimonial 2 -->
296
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
297
+ <div class="flex items-center mb-4">
298
+ <img class="h-10 w-10 rounded-full mr-4" src="https://randomuser.me/api/portraits/men/32.jpg" alt="">
299
+ <div>
300
+ <h4 class="font-medium text-gray-900">James Rodriguez</h4>
301
+ <p class="text-purple-600">CTO, StartupAI</p>
302
+ </div>
303
+ </div>
304
+ <p class="text-gray-600">
305
+ "As a small team, we couldn't afford a dedicated AI infrastructure team. OpenAGI Studio gave us enterprise-grade tools without the overhead."
306
+ </p>
307
+ <div class="mt-4 flex text-yellow-400">
308
+ <i class="fas fa-star"></i>
309
+ <i class="fas fa-star"></i>
310
+ <i class="fas fa-star"></i>
311
+ <i class="fas fa-star"></i>
312
+ <i class="fas fa-star-half-alt"></i>
313
+ </div>
314
+ </div>
315
+
316
+ <!-- Testimonial 3 -->
317
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
318
+ <div class="flex items-center mb-4">
319
+ <img class="h-10 w-10 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/68.jpg" alt="">
320
+ <div>
321
+ <h4 class="font-medium text-gray-900">Priya Patel</h4>
322
+ <p class="text-purple-600">Senior ML Engineer, GlobalBank</p>
323
+ </div>
324
+ </div>
325
+ <p class="text-gray-600">
326
+ "The visual workflow builder is a game-changer. It's made AI development accessible to more members of our team, not just the PhDs."
327
+ </p>
328
+ <div class="mt-4 flex text-yellow-400">
329
+ <i class="fas fa-star"></i>
330
+ <i class="fas fa-star"></i>
331
+ <i class="fas fa-star"></i>
332
+ <i class="fas fa-star"></i>
333
+ <i class="fas fa-star"></i>
334
+ </div>
335
+ </div>
336
+ </div>
337
+ </div>
338
+ </div>
339
+
340
+ <!-- CTA Section -->
341
+ <div class="gradient-bg">
342
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
343
+ <div class="text-center">
344
+ <h2 class="text-3xl font-extrabold text-white sm:text-4xl mb-4">
345
+ Ready to build the future of AI?
346
+ </h2>
347
+ <p class="text-xl text-purple-100 max-w-3xl mx-auto mb-8">
348
+ Join thousands of developers and researchers pushing the boundaries of artificial intelligence.
349
+ </p>
350
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
351
+ <button class="bg-white text-purple-600 hover:bg-gray-100 px-8 py-4 rounded-lg font-medium text-lg shadow-lg transition duration-300 transform hover:scale-105">
352
+ <i class="fas fa-user-plus mr-2"></i> Create Free Account
353
+ </button>
354
+ <button class="bg-transparent border-2 border-white text-white hover:bg-white hover:text-purple-600 px-8 py-4 rounded-lg font-medium text-lg shadow-lg transition duration-300 transform hover:scale-105">
355
+ <i class="fas fa-play-circle mr-2"></i> Watch Demo
356
+ </button>
357
+ </div>
358
+ </div>
359
+ </div>
360
+ </div>
361
+
362
+ <!-- Footer -->
363
+ <footer class="bg-gray-800 text-gray-300">
364
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
365
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
366
+ <div>
367
+ <h3 class="text-white font-medium mb-4">Product</h3>
368
+ <ul class="space-y-2">
369
+ <li><a href="#" class="hover:text-white">Features</a></li>
370
+ <li><a href="#" class="hover:text-white">Pricing</a></li>
371
+ <li><a href="#" class="hover:text-white">Documentation</a></li>
372
+ <li><a href="#" class="hover:text-white">Releases</a></li>
373
+ </ul>
374
+ </div>
375
+ <div>
376
+ <h3 class="text-white font-medium mb-4">Company</h3>
377
+ <ul class="space-y-2">
378
+ <li><a href="#" class="hover:text-white">About</a></li>
379
+ <li><a href="#" class="hover:text-white">Blog</a></li>
380
+ <li><a href="#" class="hover:text-white">Careers</a></li>
381
+ <li><a href="#" class="hover:text-white">Contact</a></li>
382
+ </ul>
383
+ </div>
384
+ <div>
385
+ <h3 class="text-white font-medium mb-4">Resources</h3>
386
+ <ul class="space-y-2">
387
+ <li><a href="#" class="hover:text-white">Community</a></li>
388
+ <li><a href="#" class="hover:text-white">Tutorials</a></li>
389
+ <li><a href="#" class="hover:text-white">API Status</a></li>
390
+ <li><a href="#" class="hover:text-white">Webinars</a></li>
391
+ </ul>
392
+ </div>
393
+ <div>
394
+ <h3 class="text-white font-medium mb-4">Connect</h3>
395
+ <div class="flex space-x-4 mb-4">
396
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
397
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-github"></i></a>
398
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-discord"></i></a>
399
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin"></i></a>
400
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
401
+ </div>
402
+ <div class="text-sm text-gray-400">
403
+ <p>Subscribe to our newsletter</p>
404
+ <div class="mt-2 flex">
405
+ <input type="email" placeholder="Your email" class="bg-gray-700 text-white px-3 py-2 rounded-l-md focus:outline-none focus:ring-1 focus:ring-purple-500 w-full">
406
+ <button class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-r-md">
407
+ <i class="fas fa-paper-plane"></i>
408
+ </button>
409
+ </div>
410
+ </div>
411
+ </div>
412
+ </div>
413
+ <div class="mt-12 pt-8 border-t border-gray-700 flex flex-col md:flex-row justify-between items-center">
414
+ <div class="flex items-center mb-4 md:mb-0">
415
+ <i class="fas fa-robot text-purple-500 text-2xl mr-2"></i>
416
+ <span class="text-xl font-bold text-white">OpenAGI<span class="text-purple-400">Studio</span></span>
417
+ </div>
418
+ <div class="text-sm text-gray-400">
419
+ &copy; 2023 OpenAGI Studio. All rights reserved.
420
+ </div>
421
+ </div>
422
+ </div>
423
+ </footer>
424
+
425
+ <script>
426
+ // Simple interactive demo
427
+ document.getElementById('run-agent').addEventListener('click', function() {
428
+ const input = document.getElementById('agent-input').value;
429
+ const output = document.getElementById('agent-output');
430
+
431
+ if (!input) {
432
+ output.innerHTML = '<p class="text-red-400">Please enter some input for the agent</p>';
433
+ return;
434
+ }
435
+
436
+ output.innerHTML = '<div class="flex items-center"><div class="animate-spin rounded-full h-4 w-4 border-b-2 border-purple-500 mr-2"></div><p class="text-gray-500">Processing your request...</p></div>';
437
+
438
+ // Simulate API call delay
439
+ setTimeout(() => {
440
+ const responses = [
441
+ `I understand you're asking about "${input}". As an AI, I can help analyze this topic and provide insights.`,
442
+ `Interesting question about "${input}". Based on my training data, I can offer several perspectives on this.`,
443
+ `"${input}" is a fascinating topic. Would you like me to elaborate on this or provide specific examples?`,
444
+ `Regarding "${input}", I've found several relevant resources that might help answer your question.`
445
+ ];
446
+
447
+ const randomResponse = responses[Math.floor(Math.random() * responses.length)];
448
+ output.innerHTML = `<p class="text-gray-800">${randomResponse}</p>`;
449
+ }, 1500);
450
+ });
451
+
452
+ // Mobile menu toggle would go here in a real implementation
453
+ </script>
454
+ <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://enzostvs-deepsite.hf.space/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://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=MaxHeadspace/openagi-studios" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
455
+ </html>