惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
小众软件
小众软件
I
InfoQ
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Martin Fowler
Martin Fowler
月光博客
月光博客
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
V
Visual Studio Blog
博客园 - 叶小钗
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
P
Proofpoint News Feed
Apple Machine Learning Research
Apple Machine Learning Research

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
monitor/packages at master · BetterDB-inc/monitor
kaliades · 2026-06-26 · via Hacker News - Newest: "AI"

This directory contains the open-source packages that make up the BetterDB ecosystem. All packages are designed to work with Valkey (and Redis) and integrate with BetterDB Monitor for observability and self-tuning.

Caching

Package Language Registry Description
semantic-cache TypeScript npm: @betterdb/semantic-cache Semantic cache for LLM applications backed by Valkey vector search. Embeddings-based similarity matching with reranking, LLM-as-judge, embedding caching, cost tracking, and OpenTelemetry/Prometheus instrumentation.
semantic-cache-py Python PyPI: betterdb-semantic-cache Python counterpart to @betterdb/semantic-cache. Same Valkey data format — a TypeScript app and a Python app can share the same cache index.
agent-cache TypeScript npm: @betterdb/agent-cache Multi-tier exact-match cache for AI agent workloads. Caches LLM responses, tool results, and session state with per-tool TTL policies and cost tracking.
agent-cache-py Python PyPI: betterdb-agent-cache Python counterpart to @betterdb/agent-cache.

Retrieval & memory

Package Language Registry Description
valkey-search-kit TypeScript npm: @betterdb/valkey-search-kit Shared low-level helpers for Valkey Search (FT.*): vector byte encoding, FT.SEARCH/FT.INFO reply parsing, TAG filter escaping, and error classification. No runtime dependencies. Foundation for the retrieval and agent-memory packages.
valkey-search-kit-py Python PyPI: betterdb-valkey-search-kit Python counterpart to @betterdb/valkey-search-kit.
retrieval TypeScript npm: @betterdb/retrieval Developer-facing retrieval SDK over Valkey Search. Typed index schema, idempotent index lifecycle, upsert/delete, and vector + filtered + hybrid query. Built on @betterdb/valkey-search-kit.
retrieval-py Python PyPI: betterdb-retrieval Python counterpart to @betterdb/retrieval. Same Valkey data format — a TypeScript app and a Python app can share the same index.
agent-memory TypeScript npm: @betterdb/agent-memory Long-term semantic memory for AI agents backed by Valkey Search, plus the short-term cache tiers from @betterdb/agent-cache. remember()/recall() with similarity blended with recency and importance, capacity eviction, and consolidation.
agent-memory-py Python PyPI: betterdb-agent-memory Python counterpart to @betterdb/agent-memory.

Tools

Package Language Registry Description
cli TypeScript npm: @betterdb/monitor CLI for monitoring and observing Valkey/Redis databases. Connects to BetterDB Monitor for real-time metrics, slowlog analysis, and client inspection.
mcp TypeScript npm: @betterdb/mcp MCP server for Valkey/Redis observability. Integrates with Claude Code and other MCP-compatible AI assistants to query database health, latency, memory, and cache metrics.
agent TypeScript npm: @betterdb/agent Remote monitoring agent that connects a Valkey/Redis instance to BetterDB Monitor Cloud. Runs as a sidecar or standalone container.

Benchmarking

Package Language Registry Description
cache-benchmark Python — (not published) Replay harness for benchmarking semantic cache implementations (BetterDB, RedisVL, GPTCache) against labeled query-pair datasets. Supports STSb, SICK, SemBenchmarkLmArena, and PAWS-Wiki.

Internal

Package Language Description
shared TypeScript Shared types, constants, and utilities used across the API, CLI, MCP server, and cache proposal system. Not intended for direct consumption.