Spaces:
Sleeping
Sleeping
File size: 13,860 Bytes
7d3b88b f7dede2 7d3b88b f7dede2 7d3b88b f7dede2 7d3b88b f7dede2 7d3b88b f7dede2 7d3b88b f7dede2 7d3b88b f7dede2 7d3b88b f7dede2 7d3b88b | 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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 | import { useState, useRef, useEffect, useCallback } from 'react'
import { motion, AnimatePresence } from 'framer-motion'
import AgentPanel from './AgentPanel'
import MemoryManager from '../services/memoryManager'
/* ββ Slide-up ease ββββββββββββββββββββββββββββββββββββββββ */
const EASE_OUT = [0.25, 0.46, 0.45, 0.94]
/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Typing dots
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
function TypingIndicator() {
return (
<motion.div
className="flex items-start gap-3"
initial={{ opacity: 0, y: 10 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0, y: -6 }}
transition={{ duration: 0.35, ease: EASE_OUT }}
>
<div className="w-7 h-7 rounded-full bg-accent flex items-center justify-center
text-[11px] text-white shrink-0">
β¦
</div>
<div className="card rounded-2xl rounded-tl-md px-4 py-3.5 flex items-center gap-1.5">
{[0, 1, 2].map((i) => (
<motion.span
key={i}
className="w-[5px] h-[5px] rounded-full bg-text-dim"
animate={{ opacity: [0.25, 0.7, 0.25], y: [0, -2.5, 0] }}
transition={{
duration: 1.3,
repeat: Infinity,
delay: i * 0.16,
ease: 'easeInOut',
}}
/>
))}
</div>
</motion.div>
)
}
/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Message bubble
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
function Message({ message, index, onViewInsights }) {
const isUser = message.role === 'user'
return (
<motion.div
className={`flex items-start gap-3 ${isUser ? 'flex-row-reverse' : ''}`}
initial={{ opacity: 0, y: 16 }}
animate={{ opacity: 1, y: 0 }}
transition={{
duration: 0.5,
ease: EASE_OUT,
delay: Math.min(index * 0.03, 0.12),
}}
>
{/* Avatar */}
<div
className={`w-7 h-7 rounded-full flex items-center justify-center text-[11px] shrink-0 mt-0.5 ${
isUser
? 'bg-surface-warm text-text-muted'
: 'bg-accent text-white'
}`}
>
{isUser ? 'βΊ' : 'β¦'}
</div>
{/* Content column */}
<div className={`flex flex-col gap-1.5 ${isUser ? 'items-end' : 'items-start'} max-w-[75%]`}>
<div
className={`rounded-3xl px-6 py-4 text-[14px] leading-relaxed ${
isUser
? 'bubble-user text-text-primary rounded-tr-lg'
: 'bubble-agent text-text-primary rounded-tl-lg'
}`}
>
<div className="message-content whitespace-pre-wrap">
{message.content}
</div>
</div>
{/* Insights link */}
{!isUser && message.metadata && (
<motion.button
onClick={() => onViewInsights(message.metadata)}
className="flex items-center gap-1.5 px-2 py-0.5 rounded-md
text-[10px] text-text-dim hover:text-text-muted
transition-colors duration-250 group"
whileHover={{ x: 1.5 }}
>
<span className="w-[5px] h-[5px] rounded-full bg-accent opacity-50
group-hover:opacity-100 transition-opacity duration-300" />
insights
{message.metadata.confidence && (
<span
className={`w-[5px] h-[5px] rounded-full ${
message.metadata.confidence === 'high'
? 'bg-emerald'
: message.metadata.confidence === 'medium'
? 'bg-amber'
: 'bg-rose'
}`}
/>
)}
</motion.button>
)}
</div>
</motion.div>
)
}
/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Empty state
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
function EmptyState({ onPromptClick }) {
const prompts = [
'Latest AI breakthroughs',
'Explain quantum computing',
'Compare React vs Vue',
]
return (
<motion.div
className="flex flex-col items-center justify-center h-full gap-6 pb-20"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
transition={{ duration: 0.6, ease: EASE_OUT }}
>
{/* Logo */}
<motion.div
className="w-14 h-14 rounded-2xl bg-accent flex items-center justify-center
text-xl text-white shadow-lg shadow-accent/10"
animate={{ y: [0, -5, 0] }}
transition={{ duration: 6, repeat: Infinity, ease: 'easeInOut' }}
>
β¦
</motion.div>
<div className="text-center space-y-2">
<h2 className="text-lg font-semibold text-text-primary tracking-tight">
What can I help you with?
</h2>
<p className="text-[13px] text-text-muted max-w-xs leading-relaxed">
Search the web, reason through topics,
and build on past conversations.
</p>
</div>
{/* Quick prompts */}
<div className="flex flex-wrap justify-center gap-3 mt-2 max-w-lg">
{prompts.map((prompt) => (
<motion.button
key={prompt}
className="card rounded-xl px-5 py-2.5 text-[12.5px] text-text-muted
hover:text-text-secondary hover:shadow-md
transition-all duration-300 whitespace-nowrap"
whileHover={{ y: -2, scale: 1.02 }}
whileTap={{ scale: 0.98 }}
onClick={() => onPromptClick(prompt)}
>
{prompt}
</motion.button>
))}
</div>
</motion.div>
)
}
/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Chat UI β main component
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
export default function ChatUI() {
const [messages, setMessages] = useState([])
const [input, setInput] = useState('')
const [isLoading, setIsLoading] = useState(false)
const [panelOpen, setPanelOpen] = useState(false)
const [panelMeta, setPanelMeta] = useState(null)
const messagesEndRef = useRef(null)
const inputRef = useRef(null)
useEffect(() => {
messagesEndRef.current?.scrollIntoView({ behavior: 'smooth' })
}, [messages, isLoading])
useEffect(() => {
inputRef.current?.focus()
}, [])
const handleViewInsights = useCallback((metadata) => {
setPanelMeta(metadata)
setPanelOpen(true)
}, [])
const handlePromptClick = useCallback((prompt) => {
setInput(prompt)
inputRef.current?.focus()
}, [])
const handleSubmit = async (e) => {
e.preventDefault()
const query = input.trim()
if (!query || isLoading) return
setMessages((prev) => [...prev, { role: 'user', content: query }])
setInput('')
setIsLoading(true)
try {
// Inject stored memory context into the request
const profileContext = MemoryManager.getProfileForInjection()
const sessionContext = MemoryManager.getSessionForInjection()
const API_BASE = import.meta.env.VITE_API_URL || '/api'
const res = await fetch(`${API_BASE}/chat`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
query,
profile_context: profileContext.length > 0 ? profileContext : null,
session_context: sessionContext.length > 0 ? sessionContext : null,
}),
})
if (!res.ok) throw new Error(`HTTP ${res.status}`)
const data = await res.json()
// Process memory extraction from the response
if (data.memory_extraction) {
MemoryManager.processExtraction(data.memory_extraction)
}
setMessages((prev) => [
...prev,
{
role: 'agent',
content: data.response,
metadata: {
source: data.source,
tools_used: data.tools_used,
steps_taken: data.steps_taken,
plan: data.plan,
confidence: data.confidence,
refinements: data.refinements,
memory_used: data.memory_used,
memory_hits: data.memory_hits,
decision: data.decision,
llm_calls: data.llm_calls,
steps_skipped: data.steps_skipped,
early_stopped: data.early_stopped,
cache_hits: data.cache_hits,
},
},
])
} catch (err) {
setMessages((prev) => [
...prev,
{
role: 'agent',
content: `Something went wrong β ${err.message}. Make sure the backend is running.`,
metadata: null,
},
])
} finally {
setIsLoading(false)
inputRef.current?.focus()
}
}
const isEmpty = messages.length === 0 && !isLoading
return (
<>
<div className="relative w-full flex flex-col h-dvh max-w-2xl mx-auto" style={{ zIndex: 10 }}>
{/* ββ Header ββ */}
<header className="header-glass flex items-center justify-between px-6 py-4 shrink-0">
<div className="flex items-center gap-3">
<div className="w-8 h-8 rounded-xl bg-accent flex items-center justify-center
text-sm text-white shadow-sm shadow-accent/15">
β¦
</div>
<div>
<h1 className="text-[14px] font-semibold text-text-primary tracking-tight">
Agent
</h1>
<p className="text-[11px] text-text-dim leading-none mt-0.5">
Autonomous assistant
</p>
</div>
</div>
<div className="flex items-center gap-2">
<motion.div
className="w-[6px] h-[6px] rounded-full bg-emerald"
animate={{ opacity: [1, 0.3, 1] }}
transition={{ duration: 2.5, repeat: Infinity, ease: 'easeInOut' }}
/>
<span className="text-[11px] text-text-dim">Online</span>
</div>
</header>
{/* ββ Messages ββ */}
<div className="flex-1 overflow-y-auto px-6 py-6">
<AnimatePresence>
{isEmpty && <EmptyState onPromptClick={handlePromptClick} />}
</AnimatePresence>
<div className="space-y-5">
{messages.map((msg, i) => (
<Message
key={i}
message={msg}
index={i}
onViewInsights={handleViewInsights}
/>
))}
</div>
<AnimatePresence>
{isLoading && (
<div className="mt-5">
<TypingIndicator />
</div>
)}
</AnimatePresence>
<div ref={messagesEndRef} />
</div>
{/* ββ Input area ββ */}
<div className="shrink-0 px-6 pb-5 pt-2">
<form onSubmit={handleSubmit}>
<div className="input-glass rounded-2xl flex items-center gap-3 px-5 py-2.5">
<input
ref={inputRef}
id="chat-input"
type="text"
value={input}
onChange={(e) => setInput(e.target.value)}
placeholder="Ask anythingβ¦"
disabled={isLoading}
className="flex-1 bg-transparent text-[14px] text-text-primary
placeholder:text-text-ghost outline-none py-2.5
disabled:opacity-40"
autoComplete="off"
/>
<motion.button
type="submit"
disabled={!input.trim() || isLoading}
className="w-9 h-9 rounded-xl bg-accent flex items-center justify-center
text-white disabled:opacity-20 disabled:cursor-not-allowed
transition-opacity duration-200 shadow-sm shadow-accent/15"
whileHover={{ scale: 1.06 }}
whileTap={{ scale: 0.92 }}
>
<svg width="15" height="15" viewBox="0 0 24 24" fill="none"
stroke="currentColor" strokeWidth="2.5"
strokeLinecap="round" strokeLinejoin="round">
<line x1="12" y1="19" x2="12" y2="5" />
<polyline points="5 12 12 5 19 12" />
</svg>
</motion.button>
</div>
</form>
<p className="text-center text-[10px] text-text-ghost mt-3 tracking-wide">
Groq Β· llama-3.1-8b-instant
</p>
</div>
</div>
<AgentPanel
isOpen={panelOpen}
onClose={() => setPanelOpen(false)}
metadata={panelMeta}
/>
</>
)
}
|