From 4b77325f637ff7f95ddee27f60910bf8783e20f0 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Sat, 24 Aug 2024 19:57:49 -0700 Subject: [PATCH] Default to infinite distance when using the search API --- src/khoj/routers/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/khoj/routers/api.py b/src/khoj/routers/api.py index 2baf6838..5fc79bcd 100644 --- a/src/khoj/routers/api.py +++ b/src/khoj/routers/api.py @@ -83,7 +83,7 @@ async def search( n=n, t=t, r=r, - max_distance=max_distance, + max_distance=max_distance or math.inf, dedupe=dedupe, )