Skip to content

Commit 58bfe7f

Browse files
GeneAIGeneAI
authored andcommitted
fix: Update FAQ with current version and fix blog markdown
- Update FAQ with v2.2.4 and 2,321 tests (was v1.7.0 with outdated test counts) - Fix HTML entities in Redis blog post (&lt; → <) for proper rendering - Remove stale coverage percentages, focus on comprehensive testing Addresses code review findings from CODE_REVIEW_REPORT_DEC_15_2025.md
1 parent 8c3fd24 commit 58bfe7f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

website/app/faq/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const faqData = [
5151
},
5252
{
5353
question: 'How is the framework tested?',
54-
answer: 'Empathy has 553 tests with 83.13% overall coverage and 95%+ coverage on core modules. It includes comprehensive unit tests, integration tests, and cross-platform compatibility testing.',
54+
answer: 'Empathy has 2,321 comprehensive tests covering unit tests, integration tests, and cross-platform compatibility. Core modules maintain high coverage with rigorous testing of security, memory systems, and wizard functionality.',
5555
},
5656
{
5757
question: 'What platforms are supported?',
@@ -72,7 +72,7 @@ const faqData = [
7272
},
7373
{
7474
question: 'Is the framework production-ready?',
75-
answer: 'Yes! The framework is v1.7.0 Production/Stable with 1,489 tests (90.71% coverage), comprehensive documentation, and is being used in production applications including medical wizards dashboards and software development tools.',
75+
answer: 'Yes! The framework is v2.2.4 Production/Stable with 2,321 comprehensive tests, extensive documentation, and is being used in production applications including medical wizards dashboards and software development tools.',
7676
},
7777
],
7878
},

website/content/blog/building-ai-memory-with-redis.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ We evaluated several options for real-time AI memory:
3030
|--------|---------|------------|---------|---------|
3131
| PostgreSQL | ~10ms | Medium | No | Too slow for real-time |
3232
| MongoDB | ~5ms | Medium | Change streams | Possible, but complex |
33-
| SQLite | &lt;1ms | High | No | No coordination |
34-
| **Redis** | **&lt;1ms** | **High** | **Yes** | **Perfect fit** |
33+
| SQLite | <1ms | High | No | No coordination |
34+
| **Redis** | **<1ms** | **High** | **Yes** | **Perfect fit** |
3535

3636
Redis won because:
3737

@@ -70,7 +70,7 @@ redis_client.hset(
7070
redis_client.expire(f"session:{session_id}", 3600) # 1 hour
7171
```
7272

73-
Why Redis? We need instant access (&lt;1ms) and automatic expiration. Sessions are ephemeral—they shouldn't clutter persistent storage.
73+
Why Redis? We need instant access (<1ms) and automatic expiration. Sessions are ephemeral—they shouldn't clutter persistent storage.
7474

7575
### 2. Multi-Agent Coordination
7676

@@ -146,7 +146,7 @@ context = [json.loads(m) for m in recent]
146146
```
147147

148148
This provides:
149-
- **Fast retrieval** — Context ready in &lt;1ms
149+
- **Fast retrieval** Context ready in <1ms
150150
- **Automatic pruning** Old messages fall off
151151
- **Per-user isolation** Each user has their own memory
152152

@@ -161,7 +161,7 @@ We benchmarked our Redis integration:
161161
| Pub/sub message | 0.1ms | 50,000/sec |
162162
| Memory context retrieval | 0.5ms | 6,000/sec |
163163

164-
**Key insight:** Redis is fast enough that memory lookups don't impact AI response latency. The LLM call (100-2000ms) dominates; Redis adds &lt;1ms overhead.
164+
**Key insight:** Redis is fast enough that memory lookups don't impact AI response latency. The LLM call (100-2000ms) dominates; Redis adds <1ms overhead.
165165

166166
## Lessons Learned
167167

0 commit comments

Comments
 (0)