coerce useLanggraph to boolean (#4084)

* coerce useLanggraph to boolean
This commit is contained in:
evan-danswer 2025-02-21 09:43:46 -08:00 committed by GitHub
parent 158bccc3fc
commit ba21bacbbf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -236,7 +236,7 @@ export async function* sendMessage({
}
: null,
use_existing_user_message: useExistingUserMessage,
use_agentic_search: useLanggraph,
use_agentic_search: useLanggraph ?? false,
});
const response = await fetch(`/api/chat/send-message`, {