Add 3 files
Browse files- README.md +7 -5
- index.html +55 -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: late-io
|
| 3 |
+
emoji: 🐳
|
| 4 |
+
colorFrom: red
|
| 5 |
+
colorTo: purple
|
| 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,55 @@
|
|
| 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" class="dark">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>LIQUIDITY AGENTIC TERRAFORMING</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
| 9 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 10 |
+
<style>
|
| 11 |
+
@keyframes pulse {
|
| 12 |
+
0%, 100% { opacity: 1; }
|
| 13 |
+
50% { opacity: 0.5; }
|
| 14 |
+
}
|
| 15 |
+
.animate-pulse-slow {
|
| 16 |
+
animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
| 17 |
+
}
|
| 18 |
+
.sidebar-item.active {
|
| 19 |
+
border-left: 4px solid #3b82f6;
|
| 20 |
+
background-color: rgba(59, 130, 246, 0.1);
|
| 21 |
+
}
|
| 22 |
+
.node {
|
| 23 |
+
transition: all 0.3s ease;
|
| 24 |
+
}
|
| 25 |
+
.node:hover {
|
| 26 |
+
transform: scale(1.1);
|
| 27 |
+
filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.7));
|
| 28 |
+
}
|
| 29 |
+
.connection {
|
| 30 |
+
stroke-dasharray: 5;
|
| 31 |
+
animation: dash 30s linear infinite;
|
| 32 |
+
}
|
| 33 |
+
@keyframes dash {
|
| 34 |
+
to {
|
| 35 |
+
stroke-dashoffset: 1000;
|
| 36 |
+
}
|
| 37 |
+
}
|
| 38 |
+
.log-entry {
|
| 39 |
+
border-left: 3px solid transparent;
|
| 40 |
+
transition: all 0.2s;
|
| 41 |
+
}
|
| 42 |
+
.log-entry:hover {
|
| 43 |
+
border-left-color: #3b82f6;
|
| 44 |
+
background-color: rgba(59, 130, 246, 0.05);
|
| 45 |
+
}
|
| 46 |
+
.dark .log-entry:hover {
|
| 47 |
+
background-color: rgba(59, 130, 246, 0.1);
|
| 48 |
+
}
|
| 49 |
+
</style>
|
| 50 |
+
</head>
|
| 51 |
+
<body class="bg-gray-50 dark:bg-gray-900 text-gray-800 dark:text-gray-200 min-h-screen transition-colors duration-300">
|
| 52 |
+
<!-- Top Navbar -->
|
| 53 |
+
<nav class="bg-white dark:bg-gray-800 shadow-md fixed top-0 left-0 right-0 z-50">
|
| 54 |
+
<div class="max
|
| 55 |
+
</html>
|
prompts.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
### **[FINAL VERIFIED PROMPT: Hugging Face DeepSite Angular Agentic Dashboard]** **Deploy a fully interactive Agentic Orchestration Web App** using **Angular 17**, **Tailwind CSS**, and **SVG visualizations** on Hugging Face Spaces (`deepsite.com`). This interface manages live agent modules, DIGS memory processing, and backend integration using file uploads, visual logs, and action triggers. ### **CORE TECHNOLOGIES** - **Frontend**: Angular 17 (CLI, Lazy-loaded Routes, Forms) - **Styling**: Tailwind CSS 3.x (Dark Mode + Animated Utility Classes) - **Graphics**: SVG (Interactive, dynamic node visualization) - **Encoding**: UTF-8 - **Deployment Target**: Hugging Face `deepsite.com` (CDN: Google APIs, Cloudflare CDNJS) - **Assets**: PNG, SVG, HTML5 ### **LAYOUT STRUCTURE** #### 1. **Top NavBar** - Brand: `LIQUIDITY AGENTIC TERRAFORMING` - Status indicator zones: DIGS Live, Backend Running, Auth Linked - Theme toggle: Dark/Light (if desired) #### 2. **Sidebar Menu (Vertical, Fixed)** **18 Function Buttons**, each linked to an Angular Component Route: ``
|