-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
191 lines (183 loc) · 8.04 KB
/
index.html
File metadata and controls
191 lines (183 loc) · 8.04 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PromptX: Cognitive Agent Platform with Long-term Memory | WWW '26</title>
<!-- SEO Meta Tags -->
<meta name="description" content="PromptX is a cognitive agent platform enabling AI agents to construct structured memory and develop reasoning over time through Activation-Diffusion Networks and the Agent Context Protocol." />
<meta name="keywords" content="PromptX, AI Agent, Long-term Memory, Cognitive Platform, LLM, RAG, Engram, PML, ACP, WWW 2026" />
<meta name="author" content="Binhao Wang, Jianglin Huang, Xiao Hu, Shan Jiang, Maolin Wang, Ching-ho Yang" />
<meta name="robots" content="index, follow" />
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website" />
<meta property="og:title" content="PromptX: Cognitive Agent Platform with Long-term Memory" />
<meta property="og:description" content="A cognitive agent platform enabling AI agents to construct structured memory through Activation-Diffusion Networks. Published at WWW Companion '26." />
<meta property="og:image" content="https://deepractice.github.io/Research/promptx-og.png" />
<meta property="og:url" content="https://deepractice.github.io/Research/" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="PromptX: Cognitive Agent Platform" />
<meta name="twitter:description" content="AI agents with long-term memory through Activation-Diffusion Networks. WWW '26." />
<!-- Favicon & App Icons -->
<link rel="icon" type="image/png" href="/promptx-logo.png" />
<link rel="apple-touch-icon" href="/promptx-logo.png" />
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#C5A059" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<!-- Preload Critical Resources -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://cdn.tailwindcss.com">
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap" as="style" />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<!-- JSON-LD Structured Data for Academic Paper -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ScholarlyArticle",
"name": "PromptX: A Cognitive Agent Platform with Long-term Memory",
"headline": "PromptX: A Cognitive Agent Platform with Long-term Memory",
"description": "A cognitive agent platform enabling AI agents to construct structured memory and develop reasoning over time through Activation-Diffusion Networks and the Agent Context Protocol.",
"author": [
{"@type": "Person", "name": "Binhao Wang", "affiliation": "City University of Hong Kong"},
{"@type": "Person", "name": "Jianglin Huang", "affiliation": "Deepractice AI Limited"},
{"@type": "Person", "name": "Xiao Hu", "affiliation": "Deepractice AI Limited"},
{"@type": "Person", "name": "Shan Jiang", "affiliation": "Deepractice AI Limited"},
{"@type": "Person", "name": "Maolin Wang", "affiliation": "City University of Hong Kong"},
{"@type": "Person", "name": "Ching-ho Yang", "affiliation": "Deepractice AI Limited"}
],
"publisher": {
"@type": "Organization",
"name": "ACM",
"url": "https://www.acm.org"
},
"datePublished": "2026",
"isPartOf": {
"@type": "PublicationEvent",
"name": "WWW Companion '26",
"location": "Dubai"
},
"keywords": ["AI Agent", "Long-term Memory", "Cognitive Platform", "LLM", "RAG", "Engram", "PML", "ACP"],
"url": "https://deepractice.github.io/Research/",
"mainEntityOfPage": "https://deepractice.github.io/Research/"
}
</script>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
serif: ['"Playfair Display"', 'serif'],
sans: ['"Inter"', 'sans-serif'],
},
colors: {
nobel: {
gold: '#C5A059',
dark: '#1c1917', // Stone 900
sand: '#f5f5f4', // Stone 100
dim: '#44403c', // Stone 700
}
},
animation: {
'fade-in': 'fadeIn 0.5s ease-out forwards',
'fade-in-up': 'fadeInUp 0.8s ease-out forwards',
'scale-up': 'scaleUp 0.3s ease-out forwards',
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
fadeInUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
scaleUp: {
'0%': { transform: 'scale(0.95)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
}
}
}
}
}
</script>
<style>
html {
scroll-behavior: smooth;
scroll-padding-top: 100px;
}
body {
background-color: #FAFAF9; /* Stone 50 */
color: #1c1917;
}
::selection {
background-color: #C5A059;
color: white;
}
/* Custom Scrollbar for Modal/Code Blocks */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f5f5f4;
}
::-webkit-scrollbar-thumb {
background: #d6d3d1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #a8a29e;
}
@media print {
nav, footer, button {
display: none !important;
}
}
</style>
<script type="importmap">
{
"imports": {
"react": "https://aistudiocdn.com/react@^19.2.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
"react/": "https://aistudiocdn.com/react@^19.2.0/",
"@react-three/fiber": "https://aistudiocdn.com/@react-three/fiber@^9.4.0",
"@react-three/drei": "https://aistudiocdn.com/@react-three/drei@^10.7.7",
"three": "https://aistudiocdn.com/three@^0.181.1",
"framer-motion": "https://aistudiocdn.com/framer-motion@^12.23.24",
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.553.0"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<!-- Loading Screen -->
<div id="loader" style="position:fixed;inset:0;background:#FAFAF9;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:9999;transition:opacity 0.5s;">
<div style="width:60px;height:60px;border:3px solid #e7e5e4;border-top-color:#C5A059;border-radius:50%;animation:spin 1s linear infinite;"></div>
<p style="margin-top:20px;font-family:Playfair Display,serif;color:#78716c;font-size:14px;letter-spacing:2px;">LOADING</p>
</div>
<style>
@keyframes spin { to { transform: rotate(360deg); } }
</style>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
<script>
// Hide loader when app is ready
window.addEventListener('load', () => {
setTimeout(() => {
const loader = document.getElementById('loader');
if (loader) {
loader.style.opacity = '0';
setTimeout(() => loader.remove(), 500);
}
}, 300);
});
</script>
</body>
</html>