77 lines
3.3 KiB
TypeScript
77 lines
3.3 KiB
TypeScript
async function getMemoryStats() {
|
|
try {
|
|
const res = await fetch("https://api.blackroad.io/memory/stats", { next: { revalidate: 60 } })
|
|
return res.ok ? res.json() : null
|
|
} catch { return null }
|
|
}
|
|
|
|
export default async function MemoryPage() {
|
|
const stats = await getMemoryStats()
|
|
|
|
const mockStats = {
|
|
sessions: 847,
|
|
journals: 12593,
|
|
facts: 4201,
|
|
sources: 89,
|
|
hash_chain_verified: true,
|
|
}
|
|
|
|
const data = stats ?? mockStats
|
|
|
|
return (
|
|
<div className="p-6 space-y-6">
|
|
<div>
|
|
<h1 className="text-2xl font-bold text-white">🧠 Memory</h1>
|
|
<p className="text-gray-400 mt-1">PS-SHA∞ hash-chain persistent memory system</p>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-2 gap-4">
|
|
{[
|
|
{ label: "Sessions", value: data.sessions, color: "text-blue-400" },
|
|
{ label: "Journal Entries", value: data.journals, color: "text-purple-400" },
|
|
{ label: "Verified Facts", value: data.facts, color: "text-green-400" },
|
|
{ label: "Trusted Sources", value: data.sources, color: "text-amber-400" },
|
|
].map((item) => (
|
|
<div key={item.label} className="bg-gray-900 border border-gray-700 rounded-lg p-4">
|
|
<div className="text-gray-400 text-sm">{item.label}</div>
|
|
<div className={`text-2xl font-bold mt-1 ${item.color}`}>
|
|
{typeof item.value === "number" ? item.value.toLocaleString() : item.value}
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
|
|
<div className="bg-gray-900 border border-gray-700 rounded-lg p-4">
|
|
<h2 className="text-sm font-semibold text-gray-400 mb-3 uppercase tracking-wider">Hash Chain Status</h2>
|
|
<div className="flex items-center gap-3">
|
|
<span className={`w-3 h-3 rounded-full ${data.hash_chain_verified ? "bg-green-400" : "bg-red-400"}`}></span>
|
|
<span className={data.hash_chain_verified ? "text-green-400" : "text-red-400"}>
|
|
{data.hash_chain_verified ? "Verified — chain integrity intact" : "Verification failed"}
|
|
</span>
|
|
</div>
|
|
<p className="text-gray-500 text-sm mt-2">All journal entries are cryptographically linked via PS-SHA∞</p>
|
|
</div>
|
|
|
|
<div className="bg-gray-900 border border-gray-700 rounded-lg p-4">
|
|
<h2 className="text-sm font-semibold text-gray-400 mb-3 uppercase tracking-wider">Memory Types</h2>
|
|
<div className="space-y-2 text-sm">
|
|
{[
|
|
{ type: "fact", desc: "Verified true/false claims with confidence scores", color: "bg-green-400" },
|
|
{ type: "observation", desc: "System observations logged during runtime", color: "bg-blue-400" },
|
|
{ type: "inference", desc: "Agent-inferred conclusions from pattern matching", color: "bg-purple-400" },
|
|
{ type: "commitment", desc: "Explicit agreements and action commitments", color: "bg-amber-400" },
|
|
].map((m) => (
|
|
<div key={m.type} className="flex items-start gap-3 py-2 border-b border-gray-800 last:border-0">
|
|
<span className={`w-2 h-2 rounded-full mt-1.5 ${m.color}`}></span>
|
|
<div>
|
|
<span className="text-white font-mono capitalize">{m.type}</span>
|
|
<span className="text-gray-500 ml-2">{m.desc}</span>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|