From 789f5fee88622661468c62ed36f393afdab25336 Mon Sep 17 00:00:00 2001 From: MikeGarciaAGM Date: Sun, 31 May 2026 08:56:46 -0500 Subject: [PATCH] feat(blog): add post from issue #269 --- posts.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/posts.json b/posts.json index 9ad7a6f..7cd7987 100644 --- a/posts.json +++ b/posts.json @@ -571,5 +571,18 @@ "tags": [], "date": "2026-04-04", "order": 52 + }, + { + "id": "7e63e67d", + "title": "Server-Sent Events pour streaming LLM", + "url": "https://github.com/khalilbenaz/khalilbenaz.github.io/issues/269", + "excerpt": "## Pourquoi SSE pour LLM Streaming LLM responses (token-by-token) améliore l'UX énormément. User voit la réponse arriver en temps réel plutôt que d'attendre 5s. Options techniques : - **WebSocket** : bidirectionnel, mais overhead inutile pour streaming server→client. - **SSE (Server-Sent Events)** : unidirectionnel server→client, HTTP/2 natif. SSE est le bon outil pour streaming LLM. ## Implémentation côté serveur ``", + "tags": [ + "BLOG", + "AI", + "ARCHITECTURE" + ], + "date": "2026-05-23", + "order": 53 } -] \ No newline at end of file +]