Files
wehub-resource-sync 979fb22d7c
CI / test (20, macos-latest) (push) Waiting to run
CI / test (20, ubuntu-latest) (push) Waiting to run
CI / test (22, macos-latest) (push) Waiting to run
CI / test (22, ubuntu-latest) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:01:18 +08:00

49 lines
1.7 KiB
TypeScript

import styles from "./Compare.module.css";
const ROWS = [
["RETRIEVAL R@5", "95.2%", "81.4%", "73.8%", "78.1%"],
["EXTERNAL DEPS", "0", "2 (Qdrant, Neo4j)", "1 (Postgres)", "1 (Neo4j)"],
["REST ENDPOINTS", "121", "—", "—", "—"],
["MCP TOOLS", "51", "12", "18", "9"],
["AUTO-HOOKS", "12", "0", "0", "0"],
["NATIVE PLUGINS", "6", "—", "—", "—"],
["OPEN SOURCE", "YES (APACHE-2.0)", "YES", "YES", "YES"],
];
export function Compare() {
return (
<section className={styles.compare} id="compare" aria-labelledby="cmp-title">
<header className="section-head">
<span className="section-eyebrow">VS.</span>
<h2 id="cmp-title" className="section-title">
VS. THE FIELD.
</h2>
<p className="section-lede">
NUMBERS STRAIGHT FROM THE LONGMEMEVAL-S BENCHMARK AND EACH PROJECT&apos;S
OWN DOCS. SHIP WHAT YOU WANT WE JUST PICKED THE ONE WITH RECEIPTS.
</p>
</header>
<div className={styles.table} role="table" aria-label="Comparison">
<div className={`${styles.row} ${styles.head}`} role="row">
<span role="columnheader" />
<span role="columnheader" className={styles.mine}>
AGENTMEMORY
</span>
<span role="columnheader">MEM0</span>
<span role="columnheader">LETTA</span>
<span role="columnheader">COGNEE</span>
</div>
{ROWS.map((r) => (
<div key={r[0]} className={styles.row} role="row">
<span role="rowheader">{r[0]}</span>
<span className={styles.mine}>{r[1]}</span>
<span>{r[2]}</span>
<span>{r[3]}</span>
<span>{r[4]}</span>
</div>
))}
</div>
</section>
);
}