From e236e4ac17b4b7a468340e3b691e10d4500a95e6 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Tue, 21 Oct 2025 15:47:52 -0300 Subject: [PATCH] changed default api to be langflow on chat streaming --- frontend/src/hooks/useChatStreaming.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/hooks/useChatStreaming.ts b/frontend/src/hooks/useChatStreaming.ts index df8f4aa6..6a7202e8 100644 --- a/frontend/src/hooks/useChatStreaming.ts +++ b/frontend/src/hooks/useChatStreaming.ts @@ -16,7 +16,7 @@ interface SendMessageOptions { } export function useChatStreaming({ - endpoint = "/api/chat", + endpoint = "/api/langflow", onComplete, onError, }: UseChatStreamingOptions = {}) {