khoj 1.20.4.dev13__py3-none-any.whl → 1.20.5.dev15__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- khoj/configure.py +1 -0
- khoj/database/adapters/__init__.py +15 -8
- khoj/database/admin.py +11 -1
- khoj/database/migrations/0056_searchmodelconfig_cross_encoder_model_config.py +17 -0
- khoj/database/models/__init__.py +2 -0
- khoj/interface/compiled/404/index.html +1 -1
- khoj/interface/compiled/_next/static/chunks/app/agents/{page-922694b75f1fb67b.js → page-6ade083d5e27a023.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/automations/{page-d7972645ccb80df1.js → page-559111e9b97f158d.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/chat/{page-51ab7c4b766ff344.js → page-37ff98d93e65b5a4.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/factchecker/{page-60be5e3295e2c0bc.js → page-6ca723a9ff0dfd70.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/{page-ef4e7248d37fae41.js → page-a7e6517e91dde51a.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/search/{page-dcd385f03255ef36.js → page-fa15807b1ad7e30b.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/settings/{page-e83f6fa32691ca64.js → page-b0fae6e054ca311e.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/share/chat/{page-699b364dc6fbf139.js → page-0ae8f5b868af65c1.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/{webpack-c6008e79c8ef349d.js → webpack-072d1cbdec7e1782.js} +1 -1
- khoj/interface/compiled/_next/static/css/2bfe35fbe2c97a56.css +1 -0
- khoj/interface/compiled/_next/static/css/592ca99f5122e75a.css +1 -0
- khoj/interface/compiled/agents/index.html +1 -1
- khoj/interface/compiled/agents/index.txt +2 -2
- khoj/interface/compiled/automations/index.html +1 -1
- khoj/interface/compiled/automations/index.txt +2 -2
- khoj/interface/compiled/chat/index.html +1 -1
- khoj/interface/compiled/chat/index.txt +2 -2
- khoj/interface/compiled/factchecker/index.html +1 -1
- khoj/interface/compiled/factchecker/index.txt +2 -2
- khoj/interface/compiled/index.html +1 -1
- khoj/interface/compiled/index.txt +2 -2
- khoj/interface/compiled/search/index.html +1 -1
- khoj/interface/compiled/search/index.txt +2 -2
- khoj/interface/compiled/settings/index.html +1 -1
- khoj/interface/compiled/settings/index.txt +2 -2
- khoj/interface/compiled/share/chat/index.html +1 -1
- khoj/interface/compiled/share/chat/index.txt +2 -2
- khoj/processor/conversation/anthropic/anthropic_chat.py +6 -2
- khoj/processor/conversation/offline/chat_model.py +15 -3
- khoj/processor/conversation/openai/gpt.py +6 -3
- khoj/processor/conversation/openai/utils.py +1 -1
- khoj/processor/conversation/prompts.py +20 -0
- khoj/processor/embeddings.py +3 -1
- khoj/processor/tools/online_search.py +9 -3
- khoj/routers/api.py +3 -1
- khoj/routers/api_chat.py +2 -2
- khoj/routers/helpers.py +10 -2
- khoj/search_filter/file_filter.py +5 -2
- {khoj-1.20.4.dev13.dist-info → khoj-1.20.5.dev15.dist-info}/METADATA +1 -1
- {khoj-1.20.4.dev13.dist-info → khoj-1.20.5.dev15.dist-info}/RECORD +54 -53
- khoj/interface/compiled/_next/static/css/4cae6c0e5c72fb2d.css +0 -1
- khoj/interface/compiled/_next/static/css/df6f4c34ec280d53.css +0 -1
- /khoj/interface/compiled/_next/static/{EuaXDNeXisAc9H0EHd10x → K0mF1QxJRVM2LVZZQ_Edc}/_buildManifest.js +0 -0
- /khoj/interface/compiled/_next/static/{EuaXDNeXisAc9H0EHd10x → K0mF1QxJRVM2LVZZQ_Edc}/_ssgManifest.js +0 -0
- /khoj/interface/compiled/_next/static/chunks/{8423-132ea64eac83fd43.js → 8423-898d821eaab634af.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{9178-5a1fa2b9023249af.js → 9178-ef3257c08d8973c8.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{9417-2e54c6fd056982d8.js → 9417-5d14ac74aaab2c66.js} +0 -0
- {khoj-1.20.4.dev13.dist-info → khoj-1.20.5.dev15.dist-info}/WHEEL +0 -0
- {khoj-1.20.4.dev13.dist-info → khoj-1.20.5.dev15.dist-info}/entry_points.txt +0 -0
- {khoj-1.20.4.dev13.dist-info → khoj-1.20.5.dev15.dist-info}/licenses/LICENSE +0 -0
|
@@ -10,6 +10,7 @@ import aiohttp
|
|
|
10
10
|
from bs4 import BeautifulSoup
|
|
11
11
|
from markdownify import markdownify
|
|
12
12
|
|
|
13
|
+
from khoj.database.models import KhojUser
|
|
13
14
|
from khoj.routers.helpers import (
|
|
14
15
|
ChatEvent,
|
|
15
16
|
extract_relevant_info,
|
|
@@ -51,6 +52,7 @@ async def search_online(
|
|
|
51
52
|
query: str,
|
|
52
53
|
conversation_history: dict,
|
|
53
54
|
location: LocationData,
|
|
55
|
+
user: KhojUser,
|
|
54
56
|
send_status_func: Optional[Callable] = None,
|
|
55
57
|
custom_filters: List[str] = [],
|
|
56
58
|
):
|
|
@@ -61,7 +63,7 @@ async def search_online(
|
|
|
61
63
|
return
|
|
62
64
|
|
|
63
65
|
# Breakdown the query into subqueries to get the correct answer
|
|
64
|
-
subqueries = await generate_online_subqueries(query, conversation_history, location)
|
|
66
|
+
subqueries = await generate_online_subqueries(query, conversation_history, location, user)
|
|
65
67
|
response_dict = {}
|
|
66
68
|
|
|
67
69
|
if subqueries:
|
|
@@ -126,14 +128,18 @@ async def search_with_google(query: str) -> Tuple[str, Dict[str, List[Dict]]]:
|
|
|
126
128
|
|
|
127
129
|
|
|
128
130
|
async def read_webpages(
|
|
129
|
-
query: str,
|
|
131
|
+
query: str,
|
|
132
|
+
conversation_history: dict,
|
|
133
|
+
location: LocationData,
|
|
134
|
+
user: KhojUser,
|
|
135
|
+
send_status_func: Optional[Callable] = None,
|
|
130
136
|
):
|
|
131
137
|
"Infer web pages to read from the query and extract relevant information from them"
|
|
132
138
|
logger.info(f"Inferring web pages to read")
|
|
133
139
|
if send_status_func:
|
|
134
140
|
async for event in send_status_func(f"**Inferring web pages to read**"):
|
|
135
141
|
yield {ChatEvent.STATUS: event}
|
|
136
|
-
urls = await infer_webpage_urls(query, conversation_history, location)
|
|
142
|
+
urls = await infer_webpage_urls(query, conversation_history, location, user)
|
|
137
143
|
|
|
138
144
|
logger.info(f"Reading web pages at: {urls}")
|
|
139
145
|
if send_status_func:
|
khoj/routers/api.py
CHANGED
|
@@ -388,6 +388,7 @@ async def extract_references_and_questions(
|
|
|
388
388
|
conversation_log=meta_log,
|
|
389
389
|
should_extract_questions=True,
|
|
390
390
|
location_data=location_data,
|
|
391
|
+
user=user,
|
|
391
392
|
max_prompt_size=conversation_config.max_prompt_size,
|
|
392
393
|
)
|
|
393
394
|
elif conversation_config.model_type == ChatModelOptions.ModelType.OPENAI:
|
|
@@ -402,7 +403,7 @@ async def extract_references_and_questions(
|
|
|
402
403
|
api_base_url=base_url,
|
|
403
404
|
conversation_log=meta_log,
|
|
404
405
|
location_data=location_data,
|
|
405
|
-
|
|
406
|
+
user=user,
|
|
406
407
|
)
|
|
407
408
|
elif conversation_config.model_type == ChatModelOptions.ModelType.ANTHROPIC:
|
|
408
409
|
api_key = conversation_config.openai_config.api_key
|
|
@@ -413,6 +414,7 @@ async def extract_references_and_questions(
|
|
|
413
414
|
api_key=api_key,
|
|
414
415
|
conversation_log=meta_log,
|
|
415
416
|
location_data=location_data,
|
|
417
|
+
user=user,
|
|
416
418
|
)
|
|
417
419
|
|
|
418
420
|
# Collate search results as context for GPT
|
khoj/routers/api_chat.py
CHANGED
|
@@ -792,7 +792,7 @@ async def chat(
|
|
|
792
792
|
if ConversationCommand.Online in conversation_commands:
|
|
793
793
|
try:
|
|
794
794
|
async for result in search_online(
|
|
795
|
-
defiltered_query, meta_log, location, partial(send_event, ChatEvent.STATUS), custom_filters
|
|
795
|
+
defiltered_query, meta_log, location, user, partial(send_event, ChatEvent.STATUS), custom_filters
|
|
796
796
|
):
|
|
797
797
|
if isinstance(result, dict) and ChatEvent.STATUS in result:
|
|
798
798
|
yield result[ChatEvent.STATUS]
|
|
@@ -809,7 +809,7 @@ async def chat(
|
|
|
809
809
|
if ConversationCommand.Webpage in conversation_commands:
|
|
810
810
|
try:
|
|
811
811
|
async for result in read_webpages(
|
|
812
|
-
defiltered_query, meta_log, location, partial(send_event, ChatEvent.STATUS)
|
|
812
|
+
defiltered_query, meta_log, location, user, partial(send_event, ChatEvent.STATUS)
|
|
813
813
|
):
|
|
814
814
|
if isinstance(result, dict) and ChatEvent.STATUS in result:
|
|
815
815
|
yield result[ChatEvent.STATUS]
|
khoj/routers/helpers.py
CHANGED
|
@@ -340,11 +340,14 @@ async def aget_relevant_output_modes(query: str, conversation_history: dict, is_
|
|
|
340
340
|
return ConversationCommand.Text
|
|
341
341
|
|
|
342
342
|
|
|
343
|
-
async def infer_webpage_urls(
|
|
343
|
+
async def infer_webpage_urls(
|
|
344
|
+
q: str, conversation_history: dict, location_data: LocationData, user: KhojUser
|
|
345
|
+
) -> List[str]:
|
|
344
346
|
"""
|
|
345
347
|
Infer webpage links from the given query
|
|
346
348
|
"""
|
|
347
349
|
location = f"{location_data.city}, {location_data.region}, {location_data.country}" if location_data else "Unknown"
|
|
350
|
+
username = prompts.user_name.format(name=user.get_full_name()) if user.get_full_name() else ""
|
|
348
351
|
chat_history = construct_chat_history(conversation_history)
|
|
349
352
|
|
|
350
353
|
utc_date = datetime.utcnow().strftime("%Y-%m-%d")
|
|
@@ -353,6 +356,7 @@ async def infer_webpage_urls(q: str, conversation_history: dict, location_data:
|
|
|
353
356
|
query=q,
|
|
354
357
|
chat_history=chat_history,
|
|
355
358
|
location=location,
|
|
359
|
+
username=username,
|
|
356
360
|
)
|
|
357
361
|
|
|
358
362
|
with timer("Chat actor: Infer webpage urls to read", logger):
|
|
@@ -370,11 +374,14 @@ async def infer_webpage_urls(q: str, conversation_history: dict, location_data:
|
|
|
370
374
|
raise ValueError(f"Invalid list of urls: {response}")
|
|
371
375
|
|
|
372
376
|
|
|
373
|
-
async def generate_online_subqueries(
|
|
377
|
+
async def generate_online_subqueries(
|
|
378
|
+
q: str, conversation_history: dict, location_data: LocationData, user: KhojUser
|
|
379
|
+
) -> List[str]:
|
|
374
380
|
"""
|
|
375
381
|
Generate subqueries from the given query
|
|
376
382
|
"""
|
|
377
383
|
location = f"{location_data.city}, {location_data.region}, {location_data.country}" if location_data else "Unknown"
|
|
384
|
+
username = prompts.user_name.format(name=user.get_full_name()) if user.get_full_name() else ""
|
|
378
385
|
chat_history = construct_chat_history(conversation_history)
|
|
379
386
|
|
|
380
387
|
utc_date = datetime.utcnow().strftime("%Y-%m-%d")
|
|
@@ -383,6 +390,7 @@ async def generate_online_subqueries(q: str, conversation_history: dict, locatio
|
|
|
383
390
|
query=q,
|
|
384
391
|
chat_history=chat_history,
|
|
385
392
|
location=location,
|
|
393
|
+
username=username,
|
|
386
394
|
)
|
|
387
395
|
|
|
388
396
|
with timer("Chat actor: Generate online search subqueries", logger):
|
|
@@ -11,7 +11,8 @@ logger = logging.getLogger(__name__)
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class FileFilter(BaseFilter):
|
|
14
|
-
file_filter_regex = r'file:"(.+?)" ?'
|
|
14
|
+
file_filter_regex = r'(?<!-)file:"(.+?)" ?'
|
|
15
|
+
excluded_file_filter_regex = r'-file:"(.+?)" ?'
|
|
15
16
|
|
|
16
17
|
def __init__(self, entry_key="file"):
|
|
17
18
|
self.entry_key = entry_key
|
|
@@ -20,7 +21,9 @@ class FileFilter(BaseFilter):
|
|
|
20
21
|
|
|
21
22
|
def get_filter_terms(self, query: str) -> List[str]:
|
|
22
23
|
"Get all filter terms in query"
|
|
23
|
-
|
|
24
|
+
required_files = [f"{required_file}" for required_file in re.findall(self.file_filter_regex, query)]
|
|
25
|
+
excluded_files = [f"-{excluded_file}" for excluded_file in re.findall(self.excluded_file_filter_regex, query)]
|
|
26
|
+
return required_files + excluded_files
|
|
24
27
|
|
|
25
28
|
def convert_to_regex(self, file_filter: str) -> str:
|
|
26
29
|
"Convert file filter to regex"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
khoj/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
khoj/configure.py,sha256=
|
|
2
|
+
khoj/configure.py,sha256=PMK7yNTK20NXTNsvmtrTw_eup53IEBiQBnftqOGtv3k,18466
|
|
3
3
|
khoj/main.py,sha256=58Rssq2H5AM69dA2UyGHye3vPAMp5RRS6xLcGkB_G_w,8147
|
|
4
4
|
khoj/manage.py,sha256=njo6uLxGaMamTPesHjFEOIBJbpIUrz39e1V59zKj544,664
|
|
5
5
|
khoj/app/README.md,sha256=PSQjKCdpU2hgszLVF8yEhV7TWhbEEb-1aYLTRuuAsKI,2832
|
|
@@ -8,10 +8,10 @@ khoj/app/asgi.py,sha256=soh3C1xazlgHt_bDgKzrfzo2TKXbNYJsckcXNEgTip8,388
|
|
|
8
8
|
khoj/app/settings.py,sha256=M6sQUu_AdeKl3eruecBaifRBhYOBIait0KA2NPizcBM,6198
|
|
9
9
|
khoj/app/urls.py,sha256=7ECnusoAPAfbO_H_b5FUzYGvnb4LLdWaRDyKNvYuBvg,869
|
|
10
10
|
khoj/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
khoj/database/admin.py,sha256=
|
|
11
|
+
khoj/database/admin.py,sha256=3V23Fzl9bNPlvhu08GtGH7dwJpQdaYQxGxuUpNGQQOA,9098
|
|
12
12
|
khoj/database/apps.py,sha256=pM4tkX5Odw4YW_hLLKK8Nd5kqGddf1en0oMCea44RZw,153
|
|
13
13
|
khoj/database/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
|
|
14
|
-
khoj/database/adapters/__init__.py,sha256=
|
|
14
|
+
khoj/database/adapters/__init__.py,sha256=PsE5cCNIcO4NW9IJ45KQ05ZB17EjPa_fg3Oibn2kjtM,51141
|
|
15
15
|
khoj/database/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
khoj/database/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
khoj/database/management/commands/change_generated_images_url.py,sha256=w52FwRlyOL4YRpp9O6jJUjSIuGLxVhaS2w1D7gtQgOE,2644
|
|
@@ -80,25 +80,26 @@ khoj/database/migrations/0052_alter_searchmodelconfig_bi_encoder_docs_encode_con
|
|
|
80
80
|
khoj/database/migrations/0053_agent_style_color_agent_style_icon.py,sha256=j30FqSaRJYiDXlFdip7Nslw3OZZWkymQbcV4yie1hbk,2054
|
|
81
81
|
khoj/database/migrations/0054_alter_agent_style_color.py,sha256=f6RnyvEMR0-Y4R2CtNWfVYHxI_y_nADnD-7o_FoISb4,1151
|
|
82
82
|
khoj/database/migrations/0055_alter_agent_style_icon.py,sha256=0lkxmyDmOW_3CsnLl8iEsCI6qHi2YS9wfdFfDMNbZ4k,1218
|
|
83
|
+
khoj/database/migrations/0056_searchmodelconfig_cross_encoder_model_config.py,sha256=RuR5lyAp6T_bRg2gxhOGS4dfXOWBBEQ3bAvKf4ru5Gw,430
|
|
83
84
|
khoj/database/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
84
|
-
khoj/database/models/__init__.py,sha256=
|
|
85
|
+
khoj/database/models/__init__.py,sha256=ObqIHUCRsmw8gvJfxIEBuY4x5rbn2Q1W-M4yd32SHHs,19003
|
|
85
86
|
khoj/interface/compiled/agents.svg,sha256=yFCRwIM-Qawa0C5ggAo3ekb-Q1ElmotBOKIGhtfIQqM,1722
|
|
86
87
|
khoj/interface/compiled/automation.svg,sha256=o7L2XYwJWRSMvl8h6TBv6Pt28RTRVMHqF04EPY0AFj0,1467
|
|
87
88
|
khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvtM3A,2424
|
|
88
89
|
khoj/interface/compiled/close.svg,sha256=hQ2iFLkNzHk0_iyTrSbwnWAeXYlgA-c2Eof2Iqh76n4,417
|
|
89
90
|
khoj/interface/compiled/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
|
|
90
91
|
khoj/interface/compiled/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
|
|
91
|
-
khoj/interface/compiled/index.html,sha256=
|
|
92
|
-
khoj/interface/compiled/index.txt,sha256=
|
|
92
|
+
khoj/interface/compiled/index.html,sha256=lJY4dGt357Fht7jALAA5UH1l51ABaQ9wC3afxnq8Xxc,11912
|
|
93
|
+
khoj/interface/compiled/index.txt,sha256=hFiomc7dWGRt9s322DYvvZwabGBdiG0jHq96qVXvqRQ,5515
|
|
93
94
|
khoj/interface/compiled/khoj.webmanifest,sha256=lsknYkvEdMbRTOUYKXPM_8krN2gamJmM4u3qj8u9lrU,1682
|
|
94
95
|
khoj/interface/compiled/logo.svg,sha256=_QCKVYM4WT2Qhcf7aVFImjq_s5CwjynGXYAOgI7yf8w,8059
|
|
95
96
|
khoj/interface/compiled/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
|
|
96
97
|
khoj/interface/compiled/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
|
|
97
98
|
khoj/interface/compiled/thumbs-down.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
|
|
98
99
|
khoj/interface/compiled/thumbs-up.svg,sha256=yS1wxTRtiztkN-6nZciLoYQUB_KTYNPV8xFRwH2TQFw,1036
|
|
99
|
-
khoj/interface/compiled/404/index.html,sha256=
|
|
100
|
-
khoj/interface/compiled/_next/static/
|
|
101
|
-
khoj/interface/compiled/_next/static/
|
|
100
|
+
khoj/interface/compiled/404/index.html,sha256=oKh618dPf6jgjIqqEv19UovbiNsJNn4ZR_2lotqNIF0,11947
|
|
101
|
+
khoj/interface/compiled/_next/static/K0mF1QxJRVM2LVZZQ_Edc/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
|
|
102
|
+
khoj/interface/compiled/_next/static/K0mF1QxJRVM2LVZZQ_Edc/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
102
103
|
khoj/interface/compiled/_next/static/chunks/1603-fb2d80ae73990df3.js,sha256=CCbOXifiixbhMf7lgTG96225tP1Pou72Wb0Zh6KC1Rs,71007
|
|
103
104
|
khoj/interface/compiled/_next/static/chunks/2614-7cf01576d4457a75.js,sha256=aUjhjyxNPrZr4bLKzGkGgHH8K4J6g9dfiRjabnmvSDc,1104737
|
|
104
105
|
khoj/interface/compiled/_next/static/chunks/3062-a42d847c919a9ea4.js,sha256=9UDsx_sY4b4x6jjR_A0AymC9rjBCoCcEpGR4U-0Ej3g,256170
|
|
@@ -109,11 +110,11 @@ khoj/interface/compiled/_next/static/chunks/6648-ff677e51f1b2bcf1.js,sha256=9bJl
|
|
|
109
110
|
khoj/interface/compiled/_next/static/chunks/7023-52c1be60135eb057.js,sha256=CI8R2DdZNEt3nACmiXUG1NnKhnal1ImzXglW-xDuxcI,123657
|
|
110
111
|
khoj/interface/compiled/_next/static/chunks/7071-b4711cecca6619a8.js,sha256=z-KSur3LbIFPg_90wN0EMhV0et9cJVfG_MR9POVmdCQ,7801
|
|
111
112
|
khoj/interface/compiled/_next/static/chunks/743-1a64254447cda71f.js,sha256=YH4bEkjmttcOGzAzXKaDCJ-C68jk2qy1cQJP2ljjoAA,100834
|
|
112
|
-
khoj/interface/compiled/_next/static/chunks/8423-
|
|
113
|
+
khoj/interface/compiled/_next/static/chunks/8423-898d821eaab634af.js,sha256=W8aFQibnAqcbhPYoD_WzHKoMwaWt3jXdan7n_LoY4t4,10327
|
|
113
114
|
khoj/interface/compiled/_next/static/chunks/9001-acbca3e19b1a5ddf.js,sha256=M2hBSe8WTnjEmUlOiOgt_zDJtv3sc4ghnubhkZyMvVA,35460
|
|
114
115
|
khoj/interface/compiled/_next/static/chunks/9162-4a6d0d0dc5e27618.js,sha256=2csnvP4rJcL4oZlBAEkzeSxBJy4gwYxzAnqzeWbe9fw,149225
|
|
115
|
-
khoj/interface/compiled/_next/static/chunks/9178-
|
|
116
|
-
khoj/interface/compiled/_next/static/chunks/9417-
|
|
116
|
+
khoj/interface/compiled/_next/static/chunks/9178-ef3257c08d8973c8.js,sha256=2wBw6-Bg4NGBNwXOEmfnlVh-lO29bg85b9sirLSxSic,17645
|
|
117
|
+
khoj/interface/compiled/_next/static/chunks/9417-5d14ac74aaab2c66.js,sha256=FZ8xOLMdzrlVmwtcyuQSy8bBwd8_UZ1hH3FlL4DwXpA,17252
|
|
117
118
|
khoj/interface/compiled/_next/static/chunks/9693-91b03052c5cabded.js,sha256=htVs3WyaR5jF7tXL_VBwqtPcQ53T3s9jWRazqz7DU-c,28957
|
|
118
119
|
khoj/interface/compiled/_next/static/chunks/d3ac728e-a9e3522eef9b6b28.js,sha256=wK1TsLdl56xtbQG6HMRDpylzTOYXQaAnnn2xobFnX40,267216
|
|
119
120
|
khoj/interface/compiled/_next/static/chunks/fd9d1056-2b978342deb60015.js,sha256=2lquiZSfbI-gX4j4TW4JSMLL_D5ShqwydgWpFyXrTy8,172834
|
|
@@ -121,35 +122,35 @@ khoj/interface/compiled/_next/static/chunks/framework-8e0e0f4a6b83a956.js,sha256
|
|
|
121
122
|
khoj/interface/compiled/_next/static/chunks/main-175c164f5e0f026c.js,sha256=hlUnjERudON4V4kUKprrFz1e9JRtSp4A9i7vnM-1bzA,110324
|
|
122
123
|
khoj/interface/compiled/_next/static/chunks/main-app-6d6ee3495efe03d4.js,sha256=i52E7sWOcSq1G8eYZL3mtTxbUbwRNxcAbSWQ6uWpMsY,475
|
|
123
124
|
khoj/interface/compiled/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
|
124
|
-
khoj/interface/compiled/_next/static/chunks/webpack-
|
|
125
|
+
khoj/interface/compiled/_next/static/chunks/webpack-072d1cbdec7e1782.js,sha256=iKJsw2a9B84T-qyE2Vmk7EL3zvShBdfBLes8a0ytjUg,3724
|
|
125
126
|
khoj/interface/compiled/_next/static/chunks/app/layout-f3e40d346da53112.js,sha256=nekGSUVbvB81OfqGgJa2UoDmbxPhNwFwtc4o11O_1jI,442
|
|
126
|
-
khoj/interface/compiled/_next/static/chunks/app/page-
|
|
127
|
+
khoj/interface/compiled/_next/static/chunks/app/page-a7e6517e91dde51a.js,sha256=YUwVwaYzboELj6m928tR0hn5SL8BiUiVCFe1c0k-h-k,28602
|
|
127
128
|
khoj/interface/compiled/_next/static/chunks/app/_not-found/page-07ff4ab42b07845e.js,sha256=3mCUnxfMxyK44eqk21TVBrC6u--WSbvx31fTmQuOvMQ,1755
|
|
128
129
|
khoj/interface/compiled/_next/static/chunks/app/agents/layout-e71c8e913cccf792.js,sha256=VyIMrkvntFObMzXF-elNtngJ8mBdjg8XrOGfboJ2f_4,372
|
|
129
|
-
khoj/interface/compiled/_next/static/chunks/app/agents/page-
|
|
130
|
+
khoj/interface/compiled/_next/static/chunks/app/agents/page-6ade083d5e27a023.js,sha256=8tp_0cKBkscDxbQcd5hwQPOI7sZHZeHy0S4zEiVFkl8,18092
|
|
130
131
|
khoj/interface/compiled/_next/static/chunks/app/automations/layout-27c28e923c9b1ff0.js,sha256=d2vJ_lVB0pfeFXNUPzHAe1ca5NzdNowHPh___SPqugM,5143
|
|
131
|
-
khoj/interface/compiled/_next/static/chunks/app/automations/page-
|
|
132
|
+
khoj/interface/compiled/_next/static/chunks/app/automations/page-559111e9b97f158d.js,sha256=N1QwonT08ZsX2okhC0121yNaFe2lHhvjy1I29rf1ssY,33986
|
|
132
133
|
khoj/interface/compiled/_next/static/chunks/app/chat/layout-8102549127db3067.js,sha256=YIoA3fqOBt8nKWw5iQAwA_avg2t1Q5Afn65IA5PBOz4,374
|
|
133
|
-
khoj/interface/compiled/_next/static/chunks/app/chat/page-
|
|
134
|
+
khoj/interface/compiled/_next/static/chunks/app/chat/page-37ff98d93e65b5a4.js,sha256=_FzCaSZxsbEjhWg09tPBR00KTyd5dLhJuXBj0dnhfq8,10163
|
|
134
135
|
khoj/interface/compiled/_next/static/chunks/app/factchecker/layout-7b30c541c05fb904.js,sha256=yub2AuBKHKSCqrHRFnkZv9JXLmLJLOB99iiaD3DtZQM,170
|
|
135
|
-
khoj/interface/compiled/_next/static/chunks/app/factchecker/page-
|
|
136
|
+
khoj/interface/compiled/_next/static/chunks/app/factchecker/page-6ca723a9ff0dfd70.js,sha256=haLJ9WVP9f8IEdmUiFaoVEV6nax1d2pKHArqzQxTecw,13988
|
|
136
137
|
khoj/interface/compiled/_next/static/chunks/app/search/layout-3720f1362310bebb.js,sha256=Smpa4MQaw5ItashtspsDKsOvRa6sOXH_lv4jIfWIbNI,170
|
|
137
|
-
khoj/interface/compiled/_next/static/chunks/app/search/page-
|
|
138
|
+
khoj/interface/compiled/_next/static/chunks/app/search/page-fa15807b1ad7e30b.js,sha256=st3BmeRoT8a_lJrTrUhOTVUuaZQJjC60_lE_GmreLeQ,6954
|
|
138
139
|
khoj/interface/compiled/_next/static/chunks/app/settings/layout-6f9314b0d7a26046.js,sha256=ikl3vCXnp81sa24uPSuRbgvgDtpHGWfhxEs4OAOYXIM,5347
|
|
139
|
-
khoj/interface/compiled/_next/static/chunks/app/settings/page-
|
|
140
|
+
khoj/interface/compiled/_next/static/chunks/app/settings/page-b0fae6e054ca311e.js,sha256=AXnv2j64la18kzxbzLWmKNp0VHHP9ovHJXjL0IV4Rj8,31742
|
|
140
141
|
khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-39f03f9e32399f0f.js,sha256=ClS8wrj6HOsRL4VX8DMiqX_MlQDsi_3CA-AQt4m7vuA,373
|
|
141
|
-
khoj/interface/compiled/_next/static/chunks/app/share/chat/page-
|
|
142
|
+
khoj/interface/compiled/_next/static/chunks/app/share/chat/page-0ae8f5b868af65c1.js,sha256=jBRWhFfU0GMqlh1MKHZiyG_sv__d6eO8-WuNnwCKm5M,10147
|
|
142
143
|
khoj/interface/compiled/_next/static/chunks/pages/_app-f870474a17b7f2fd.js,sha256=eqdFPAN_XFyMUzZ9qwFk-_rhMWZrU7lgNVt1foVUANo,286
|
|
143
144
|
khoj/interface/compiled/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
|
|
144
145
|
khoj/interface/compiled/_next/static/css/1538cedb321e3a97.css,sha256=-qLZhPN-wA3kcrVODVTaG1sN0pmuzRCqNH12gs5_qYc,2569
|
|
145
146
|
khoj/interface/compiled/_next/static/css/2272c73fc7a3b571.css,sha256=1fHKFd8zLOHosAHx-kxv4b9lVSqHag_E71WkV3dXx2Y,26940
|
|
146
|
-
khoj/interface/compiled/_next/static/css/
|
|
147
|
+
khoj/interface/compiled/_next/static/css/2bfe35fbe2c97a56.css,sha256=ll38Skm4kA29LtqLUkDtUMT-6ua0ihpXJUJZh-HppCI,7371
|
|
147
148
|
khoj/interface/compiled/_next/static/css/553f9cdcc7a2bcd6.css,sha256=JpjOOwmqP9Hba-w_8Lx9jWW0ZD0kD3wR0HvdPGDyUPo,2134
|
|
149
|
+
khoj/interface/compiled/_next/static/css/592ca99f5122e75a.css,sha256=BSqRkeb9vBh0phx5GkAlZirTFZintbyggGaUkuOBfaU,914
|
|
148
150
|
khoj/interface/compiled/_next/static/css/9d5b867ec04494a6.css,sha256=X2BihvGWIRM1KI7iFgwUf6QAQh-_M_gBbcR-ZS66nEs,1880998
|
|
149
151
|
khoj/interface/compiled/_next/static/css/a22d83f18a32957e.css,sha256=kgAD2DQYH2WF2wqL759i62nR093yU_UfFClMKkAue6U,17709
|
|
150
152
|
khoj/interface/compiled/_next/static/css/a3530ec58b0b660f.css,sha256=2fpX695nzJ6sNaNZbX_3Z0o-IA5kRlyN0ByIIXRgmtg,1570
|
|
151
153
|
khoj/interface/compiled/_next/static/css/b81e909d403fb2df.css,sha256=bbu108v2_T74MIyokVmUz0A_oFCIHJpzHdYExXFYgjs,1913
|
|
152
|
-
khoj/interface/compiled/_next/static/css/df6f4c34ec280d53.css,sha256=lAIK7HFwb0PaJpMfHmkUSValOSSCdbW-c_L7Lgn_ki8,7751
|
|
153
154
|
khoj/interface/compiled/_next/static/media/0e790e04fd40ad16-s.p.woff2,sha256=41ewITd0G1ZAoB62BTHMW58a1q8Hl6vSbTQkkHP7EbI,39372
|
|
154
155
|
khoj/interface/compiled/_next/static/media/4221e1667cd19c7d-s.woff2,sha256=_Y3g0keA8P6nZnFfm_VO5o2Sne1iST3v9xz4fBo3fwM,75532
|
|
155
156
|
khoj/interface/compiled/_next/static/media/6c276159aa0eb14b-s.woff2,sha256=i9Ibzi_O7y5KpImujj2rEdOZf96lpNYxYzVvCryW5Uc,140408
|
|
@@ -222,8 +223,8 @@ khoj/interface/compiled/_next/static/media/flags.3afdda2f.webp,sha256=M2AW_HLpBn
|
|
|
222
223
|
khoj/interface/compiled/_next/static/media/flags@2x.5fbe9fc1.webp,sha256=BBeRPBZkxY3-aKkMnYv5TSkxmbeMbyUH4VRIPfrWg1E,137406
|
|
223
224
|
khoj/interface/compiled/_next/static/media/globe.98e105ca.webp,sha256=g3ofb8-W9GM75zIhlvQhaS8I2py9TtrovOKR3_7Jf04,514
|
|
224
225
|
khoj/interface/compiled/_next/static/media/globe@2x.974df6f8.webp,sha256=I_N7Yke3IOoS-0CC6XD8o0IUWG8PdPbrHmf6lpgWlZY,1380
|
|
225
|
-
khoj/interface/compiled/agents/index.html,sha256=
|
|
226
|
-
khoj/interface/compiled/agents/index.txt,sha256=
|
|
226
|
+
khoj/interface/compiled/agents/index.html,sha256=6upW-KAzeKcBr5QLsg3PteJnTwwwNegnZj6S10CvGaQ,12699
|
|
227
|
+
khoj/interface/compiled/agents/index.txt,sha256=SFLyYLSfMN-Ara3Es49cL0JQf4CdJpgOtu_cclXuxKE,6075
|
|
227
228
|
khoj/interface/compiled/assets/icons/khoj_lantern.ico,sha256=eggu-B_v3z1R53EjOFhIqqPnICBGdoaw1xnc0NrzHck,174144
|
|
228
229
|
khoj/interface/compiled/assets/icons/khoj_lantern_128x128.png,sha256=aTxivDb3CYyThkVZWz8A19xl_dNut5DbkXhODWF3A9Q,5640
|
|
229
230
|
khoj/interface/compiled/assets/icons/khoj_lantern_256x256.png,sha256=xPCMLHiaL7lYOdQLZrKwWE-Qjn5ZaysSZB0ScYv4UZU,12312
|
|
@@ -234,18 +235,18 @@ khoj/interface/compiled/assets/samples/desktop-remember-plan-sample.png,sha256=i
|
|
|
234
235
|
khoj/interface/compiled/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
|
|
235
236
|
khoj/interface/compiled/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
|
|
236
237
|
khoj/interface/compiled/assets/samples/phone-remember-plan-sample.png,sha256=Ma3blirRmq3X4oYSsDbbT7MDn29rymDrjwmUfA9BMuM,236285
|
|
237
|
-
khoj/interface/compiled/automations/index.html,sha256=
|
|
238
|
-
khoj/interface/compiled/automations/index.txt,sha256=
|
|
239
|
-
khoj/interface/compiled/chat/index.html,sha256=
|
|
240
|
-
khoj/interface/compiled/chat/index.txt,sha256=
|
|
241
|
-
khoj/interface/compiled/factchecker/index.html,sha256=
|
|
242
|
-
khoj/interface/compiled/factchecker/index.txt,sha256=
|
|
243
|
-
khoj/interface/compiled/search/index.html,sha256=
|
|
244
|
-
khoj/interface/compiled/search/index.txt,sha256=
|
|
245
|
-
khoj/interface/compiled/settings/index.html,sha256=
|
|
246
|
-
khoj/interface/compiled/settings/index.txt,sha256=
|
|
247
|
-
khoj/interface/compiled/share/chat/index.html,sha256=
|
|
248
|
-
khoj/interface/compiled/share/chat/index.txt,sha256=
|
|
238
|
+
khoj/interface/compiled/automations/index.html,sha256=chIJwGeHu2vvSRdsQT0hEQXSPpmu9nFtRDEw-fRwfK8,30500
|
|
239
|
+
khoj/interface/compiled/automations/index.txt,sha256=XblegzZBZDnQywYqrU5pC_O3SnindLa8tl2Ii1EypoI,5447
|
|
240
|
+
khoj/interface/compiled/chat/index.html,sha256=9eNRABzaU4dHCOgGbbVWh1QI8vffvI6vHZ9jSkbO65A,13566
|
|
241
|
+
khoj/interface/compiled/chat/index.txt,sha256=ELNzbuEcXO9-08TedJdwHsXFjsEb_2ZeG1mv55zqONo,6421
|
|
242
|
+
khoj/interface/compiled/factchecker/index.html,sha256=e9QPAk3Ve9R9nnRsPLQpNO4U2mk2_rRA5ZxdSXz6XuA,29839
|
|
243
|
+
khoj/interface/compiled/factchecker/index.txt,sha256=dv3JNVaO4cTi4gqSxMU5R2195aBo87eTtFW2Y7luEFQ,5735
|
|
244
|
+
khoj/interface/compiled/search/index.html,sha256=FaqzQhxYSe8UewSouj9ka1Su88gtDeTJYjmI0Quj5go,30154
|
|
245
|
+
khoj/interface/compiled/search/index.txt,sha256=sfzyoz47YgIwWwc0pAMxV49YgjONADnkPhczAM61gyI,5249
|
|
246
|
+
khoj/interface/compiled/settings/index.html,sha256=9zA5u2MVp4rCHDRkZuPE6RTYmRLImDzXwFmdx8CZres,12827
|
|
247
|
+
khoj/interface/compiled/settings/index.txt,sha256=LMQtigNnW-DQf4ioxJ_4cUWJ5ItBYrzquKsh9qzCvEc,6073
|
|
248
|
+
khoj/interface/compiled/share/chat/index.html,sha256=RjA3hlLr2O00lcyoa5rDzhUgiZx3966Lrs2SuNuO-ig,14896
|
|
249
|
+
khoj/interface/compiled/share/chat/index.txt,sha256=vfQbHb_nbXWbV0FjLR9mDlRaj3y5ZC5kJt9nNsgeLew,7239
|
|
249
250
|
khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
|
|
250
251
|
khoj/interface/email/magic_link.html,sha256=jXY_2hD3o15Ns5UDzbjLT8FHBnZiS7jo38YkYXIS-4w,947
|
|
251
252
|
khoj/interface/email/task.html,sha256=yXywzC-5P4nXbhqvgCmwcCpTRbD5eWuDXMpgYSotztM,3311
|
|
@@ -276,7 +277,7 @@ khoj/migrations/migrate_processor_config_openai.py,sha256=FfeUU2JPQMtlr1iYoc4Cer
|
|
|
276
277
|
khoj/migrations/migrate_server_pg.py,sha256=b6ULFFBEF__W10YpgF28deKoOzGqDbdvyL4nBdj3eNU,5015
|
|
277
278
|
khoj/migrations/migrate_version.py,sha256=6CTsLuxiLnFVF8A7CjsIz3PcnJd8fAOZeIx6tTu6Vgg,569
|
|
278
279
|
khoj/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
279
|
-
khoj/processor/embeddings.py,sha256=
|
|
280
|
+
khoj/processor/embeddings.py,sha256=MUUNvv_2zDmm5auOhEyU_uAcl6wvdrUsTvpT7UbSMQ8,5262
|
|
280
281
|
khoj/processor/content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
282
|
khoj/processor/content/text_to_entries.py,sha256=Oa4Ny8c5S1_IGCmjCtUI45hX1fPTRwxXhHg1lHFqHy8,14537
|
|
282
283
|
khoj/processor/content/docx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -296,33 +297,33 @@ khoj/processor/content/pdf/pdf_to_entries.py,sha256=OE90osFchohih3RYvDmZepbtzWoG
|
|
|
296
297
|
khoj/processor/content/plaintext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
297
298
|
khoj/processor/content/plaintext/plaintext_to_entries.py,sha256=97i7Cm0DTY7jW4iqKOT_oVc2ooa_XhQ8iImsljp1Kek,4994
|
|
298
299
|
khoj/processor/conversation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
299
|
-
khoj/processor/conversation/prompts.py,sha256=
|
|
300
|
+
khoj/processor/conversation/prompts.py,sha256=TGMniRnekGkJ2h6k2eCMqrUR5CE8AW8hixMUyKrZY4I,33527
|
|
300
301
|
khoj/processor/conversation/utils.py,sha256=_uWu1nxcY-Cv2ip-TBdyqepUkMYhijvzjnproumvzXk,10586
|
|
301
302
|
khoj/processor/conversation/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
302
|
-
khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=
|
|
303
|
+
khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=fOT75wfC4r53M_tGDL6T7kvnRekZbdVM3jvvl3ohH9w,8108
|
|
303
304
|
khoj/processor/conversation/anthropic/utils.py,sha256=uc9d_gIk4Ux2NRlkw3FP9L9KeLRoUI7nC_qb2Qp6d_4,3253
|
|
304
305
|
khoj/processor/conversation/offline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
|
-
khoj/processor/conversation/offline/chat_model.py,sha256=
|
|
306
|
+
khoj/processor/conversation/offline/chat_model.py,sha256=twkCgnPGvPYxwvp1EWrS4F6k0zG6kigVfmqmfYrO26M,9741
|
|
306
307
|
khoj/processor/conversation/offline/utils.py,sha256=n2T3vwAIZnSe9-UN1VORLPrLEUcamXXE9isL2ie-9R8,3033
|
|
307
308
|
khoj/processor/conversation/offline/whisper.py,sha256=DJI-8y8DULO2cQ49m2VOvRyIZ2TxBypc15gM8O3HuMI,470
|
|
308
309
|
khoj/processor/conversation/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
309
|
-
khoj/processor/conversation/openai/gpt.py,sha256=
|
|
310
|
-
khoj/processor/conversation/openai/utils.py,sha256=
|
|
310
|
+
khoj/processor/conversation/openai/gpt.py,sha256=KHkTVo8cpEhTc01HDSwQfQSoI81nmx14A-nYep50_do,7312
|
|
311
|
+
khoj/processor/conversation/openai/utils.py,sha256=ozEsdrfm12yoi7XqXIgzF3QpKz2LSkXJ_Q9tn5hV4TQ,4131
|
|
311
312
|
khoj/processor/conversation/openai/whisper.py,sha256=RuwDtxSJrVWYdZz4aVnk0XiMQy9w8W9lFcVfE0hMiFY,432
|
|
312
313
|
khoj/processor/speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
314
|
khoj/processor/speech/text_to_speech.py,sha256=Q7sapi5Hv6woXOumtrGqR0t6izZrFBkWXFOGrHM6dJ4,1929
|
|
314
315
|
khoj/processor/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
|
-
khoj/processor/tools/online_search.py,sha256=
|
|
316
|
+
khoj/processor/tools/online_search.py,sha256=0FcUwGbD91bhfBgIbEvW-kRflisbG-cZyZlznlSYI5w,9727
|
|
316
317
|
khoj/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
|
-
khoj/routers/api.py,sha256=
|
|
318
|
+
khoj/routers/api.py,sha256=I-mQ6FSXw99yIRGMNDB_YQbqN82YE69WImnKjdeRvpM,25619
|
|
318
319
|
khoj/routers/api_agents.py,sha256=ks8QzjmZiio6j1QGi6xFtDmVxd9lvC6LPB-WcDPnF8o,1525
|
|
319
|
-
khoj/routers/api_chat.py,sha256=
|
|
320
|
+
khoj/routers/api_chat.py,sha256=ii-eeS9vYvX2kc4_5Ss7F5hrH0JQD-UVO9Jg_2adF8Q,35503
|
|
320
321
|
khoj/routers/api_content.py,sha256=OfY05ggRmg0FuVWzodBfV_5Gc6UbGCfchiIk8eqKA2o,17387
|
|
321
322
|
khoj/routers/api_model.py,sha256=5m7JWwgd9jILiLivRu7NEyY2E-tUkqoEkGg6j6uM1g0,4646
|
|
322
323
|
khoj/routers/api_phone.py,sha256=p9yfc4WeMHDC0hg3aQk60a2VBy8rZPdEnz9wdJ7DzkU,2208
|
|
323
324
|
khoj/routers/auth.py,sha256=pCOLSRihJWcn097DRPxLjPdlejsjHJFRs9jHIzLujZU,6247
|
|
324
325
|
khoj/routers/email.py,sha256=jA4jDTrYHUpY7mFHL4himeRlTBLRQmQKHqC91Dw1Zu0,3730
|
|
325
|
-
khoj/routers/helpers.py,sha256=
|
|
326
|
+
khoj/routers/helpers.py,sha256=9N6Pgh1BPKBKsD_2Hnvdy_M7Z40e4_ci6lpnqo1cZKw,63307
|
|
326
327
|
khoj/routers/notion.py,sha256=0iG_DPVjg8n_LBWGHA8M6eHnJJDL-isARSEHTYStz6c,2809
|
|
327
328
|
khoj/routers/storage.py,sha256=9ZfBsr_omxdFV-Lcj6p30xTQcF_7wwCZ9XFJukzjITE,1429
|
|
328
329
|
khoj/routers/subscription.py,sha256=qEyV7m7mrY6MGtaij8W3v61tpzX2a7ydm2B-E8h_R-M,4285
|
|
@@ -331,7 +332,7 @@ khoj/routers/web_client.py,sha256=-bmzl6yCLgYxCnyIOYS0DePNZtcC5z2k0lk-EmbK2pg,47
|
|
|
331
332
|
khoj/search_filter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
332
333
|
khoj/search_filter/base_filter.py,sha256=BzoZA_wAUg_eZ5vhaaipwVTSG0ZMxWCHxHsZrzo4KS0,358
|
|
333
334
|
khoj/search_filter/date_filter.py,sha256=4VL63kDVqYKFOzkCeV6R8Z8lxFaAbbn_z_RWaWQNDWY,10103
|
|
334
|
-
khoj/search_filter/file_filter.py,sha256=
|
|
335
|
+
khoj/search_filter/file_filter.py,sha256=tHYW-ibaENf_jrJ88kiO_xhrPZb6FQLtngG9ISTB6h8,1168
|
|
335
336
|
khoj/search_filter/word_filter.py,sha256=5Yx95aSiqGke9kEIbp8T-Ak4dS9cTd3VxI1SaJoK1wY,1005
|
|
336
337
|
khoj/search_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
338
|
khoj/search_type/text_search.py,sha256=AEDBbkjMwDieDiz6_Bdaoq0cywIova1Uz6V1O-XRldQ,8939
|
|
@@ -347,8 +348,8 @@ khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
|
|
|
347
348
|
khoj/utils/rawconfig.py,sha256=luk7Vb_ODuoTdMd_IG-yVXGoyoU-RktyapBG5D1N_VI,3985
|
|
348
349
|
khoj/utils/state.py,sha256=x4GTewP1YhOA6c_32N4wOjnV-3AA3xG_qbY1-wC2Uxc,1559
|
|
349
350
|
khoj/utils/yaml.py,sha256=H0mfw0ZvBFUvFmCQn8pWkfxdmIebsrSykza7D8Wv6wQ,1430
|
|
350
|
-
khoj-1.20.
|
|
351
|
-
khoj-1.20.
|
|
352
|
-
khoj-1.20.
|
|
353
|
-
khoj-1.20.
|
|
354
|
-
khoj-1.20.
|
|
351
|
+
khoj-1.20.5.dev15.dist-info/METADATA,sha256=jcSDHIN3Tpem7ihhT_WxA7mEXYOD5UQoF8lf0W-nXV0,6876
|
|
352
|
+
khoj-1.20.5.dev15.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
353
|
+
khoj-1.20.5.dev15.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
|
354
|
+
khoj-1.20.5.dev15.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
355
|
+
khoj-1.20.5.dev15.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
div.automations_automationsLayout__Atoh_{display:grid;grid-template-columns:1fr 1fr;gap:1rem}div.automations_automationCard__BKidA{display:grid;grid-template-rows:auto 1fr auto}div.automations_pageLayout__OaoYA{max-width:60vw;margin:auto auto 2rem}div.automations_sidePanel__MPciO{position:fixed;height:100%;z-index:1}@media screen and (max-width:768px){div.automations_automationsLayout__Atoh_{grid-template-columns:1fr}div.automations_pageLayout__OaoYA{max-width:90vw}div.automations_sidePanel__MPciO{position:relative;height:100%}}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
div.agents_titleBar__FzYbY{padding:16px 0;text-align:left}.agents_agentPersonality__o0Ysz p{white-space:inherit;overflow:hidden;height:77px;line-height:1.5}div.agents_agentPersonality__o0Ysz{text-align:left;grid-column:span 3;overflow:hidden}div.agents_pageLayout__gR3S3{max-width:60vw;margin:auto auto 2rem}div.agents_sidePanel__wGVGc{position:fixed;height:100%;z-index:1}button.agents_infoButton__NqI7E{border:none;background-color:transparent!important;text-align:left;font-family:inherit;font-size:medium}div.agents_agentList__XVx4A{display:grid;gap:20px;padding-top:30px;margin-right:auto;grid-auto-flow:row;grid-template-columns:1fr 1fr;margin-left:auto}@media only screen and (max-width:768px){div.agents_agentList__XVx4A{width:100%;padding:0;margin-right:auto;margin-left:auto;grid-template-columns:1fr}div.agents_pageLayout__gR3S3{max-width:90vw}div.agents_sidePanel__wGVGc{position:relative;height:100%}}div.sidePanel_session__R9wgH{padding:.5rem;margin-bottom:.25rem;border-radius:.5rem;cursor:pointer;max-width:14rem;font-size:medium;display:grid;grid-template-columns:minmax(auto,400px) 1fr;gap:0}div.sidePanel_compressed__YBPtM{grid-template-columns:minmax(12rem,100%) 1fr 1fr}div.sidePanel_sessionHover__iwfo8,div.sidePanel_session__R9wgH:hover{background-color:hsla(var(--popover))}div.sidePanel_session__R9wgH:hover{color:hsla(var(--popover-foreground))}div.sidePanel_session__R9wgH a{text-decoration:none}button.sidePanel_button__ihOfG{border:none;outline:none;background-color:transparent;cursor:pointer;color:var(--main-text-color);width:24px}button.sidePanel_showMoreButton__dt9Zw{border-radius:.5rem;padding:8px}div.sidePanel_panel__VZ8ye{display:flex;flex-direction:column;padding:1rem;overflow-y:auto;max-width:auto;transition:background-color .5s}div.sidePanel_expanded__ZjTHo{gap:1rem;background-color:hsla(var(--muted));height:100%}div.sidePanel_collapsed__OjVmG{display:grid;grid-template-columns:1fr;height:-moz-fit-content;height:fit-content;padding:1rem 0 0 1rem}p.sidePanel_session__R9wgH{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-align:left;font-size:small}div.sidePanel_header__d5cGA{display:grid;grid-template-columns:1fr auto}div.sidePanel_profile__x0w58{display:grid;grid-template-columns:auto 1fr;gap:1rem;align-items:center;margin-top:auto}div.sidePanel_panelWrapper__k_lal{display:grid;grid-template-rows:1fr auto auto;height:100%}div.sidePanel_modalSessionsList__nKe2n{position:fixed;top:0;left:0;width:100%;height:100%;background-color:hsla(var(--frosted-background-color));z-index:1;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}div.sidePanel_modalSessionsList__nKe2n div.sidePanel_content__Wq20_{max-width:80%;max-height:80%;background-color:hsla(var(--frosted-background-color));overflow:auto;padding:20px;border-radius:10px}div.sidePanel_modalSessionsList__nKe2n div.sidePanel_session__R9wgH{max-width:100%;text-overflow:ellipsis}@media screen and (max-width:768px){div.sidePanel_panel__VZ8ye{padding:.25rem;width:100%}div.sidePanel_expanded__ZjTHo{z-index:1}div.sidePanel_singleReference__r9z1n{padding:4px}div.sidePanel_panelWrapper__k_lal{width:100%;padding:0 1rem}div.sidePanel_session__R9wgH.sidePanel_compressed__YBPtM{max-width:100%;display:grid;grid-template-columns:70vw auto;justify-content:space-between}div.sidePanel_session__R9wgH{max-width:100%;grid-template-columns:minmax(auto,70vw) 1fr}}menu.navMenu_menu__fqlFF a{text-decoration:none;font-size:medium;font-weight:400;padding:0 4px;border-radius:4px;display:flex;justify-self:center;margin:0;align-items:center;gap:4px}a.navMenu_selected__A__aP{background-color:hsl(var(--accent))}div.navMenu_titleBar__HJoio{display:flex;justify-content:space-between;align-content:space-evenly;align-items:start}div.navMenu_titleBar__HJoio menu{padding:0;margin:0;border-radius:.5rem;display:grid;grid-auto-flow:column;gap:32px}div.navMenu_settingsMenuProfile__3npiK img{border-radius:50%;width:32px;height:32px;margin:0}div.navMenu_settingsMenu__X2i2U{padding:0 4px;border-radius:4px;display:flex;justify-self:center;margin:0;align-items:center}div.navMenu_settingsMenuOptions__KWnLv{display:block;grid-auto-flow:row;position:absolute;background-color:var(--background-color);box-shadow:0 8px 16px 0 rgba(0,0,0,.2);top:64px;text-align:left;padding:8px;border-radius:8px}@media screen and (max-width:600px){menu.navMenu_menu__fqlFF span{display:none}div.navMenu_settingsMenuOptions__KWnLv{right:4px}div.navMenu_titleBar__HJoio{padding:8px}}div.chatHistory_chatHistory__CoaVT{display:flex;flex-direction:column;height:100%}div.chatHistory_chatLayout__ABli_{height:80vh;overflow-y:auto;margin:0 auto}div.chatHistory_agentIndicator__wOU1f a{display:flex;text-align:center;align-content:center;align-items:center}div.chatHistory_trainOfThought__mMWSR{border:1px solid var(--border-color);border-radius:16px;padding:8px 16px;margin:12px}div.chatMessage_chatMessageContainer__sAivf{display:flex;flex-direction:column;margin:12px;border-radius:16px;padding:8px 16px 0}div.chatMessage_chatMessageWrapper__u5m8A{padding-left:1rem;padding-bottom:1rem;max-width:80vw}div.chatMessage_chatMessageWrapper__u5m8A p:not(:last-child){margin-bottom:16px}div.chatMessage_khojfullHistory__NPu2l{border-width:1px;padding-left:4px}div.chatMessage_youfullHistory__ioyfH{max-width:100%}div.chatMessage_chatMessageContainer__sAivf.chatMessage_youfullHistory__ioyfH{padding-left:0}div.chatMessage_you__6GUC4{background-color:hsla(var(--secondary));align-self:flex-end;border-radius:16px}div.chatMessage_khoj__cjWON{background-color:transparent;color:hsl(var(--accent-foreground));align-self:flex-start}div.chatMessage_khojChatMessage__BabQz{padding-top:8px;padding-left:16px}div.chatMessage_chatMessageContainer__sAivf img{width:50%}div.chatMessage_chatMessageContainer__sAivf h3 img{width:24px}div.chatMessage_you__6GUC4{color:hsla(var(--secondary-foreground))}div.chatMessage_author__muRtC{font-size:.75rem;color:grey;text-align:right}div.chatMessage_chatFooter__0vR8s{display:flex;justify-content:space-between;min-height:28px}div.chatMessage_chatButtons__Lbk8T{display:flex;justify-content:flex-end;width:-moz-min-content;width:min-content;border:1px solid var(--border-color);border-radius:16px;position:relative;bottom:-12px;background-color:hsla(var(--secondary))}div.chatMessage_chatFooter__0vR8s button{cursor:pointer;color:hsl(var(--muted-foreground));border:none;border-radius:16px;padding:4px;margin-left:4px;margin-right:4px}div.chatMessage_chatFooter__0vR8s button:hover{background-color:hsla(var(--frosted-background-color))}button.chatMessage_codeCopyButton__Y_Ujv{cursor:pointer;float:right;border-radius:8px}button.chatMessage_codeCopyButton__Y_Ujv:hover{color:hsla(var(--frosted-background-color))}button.chatMessage_codeCopyButton__Y_Ujv img,button.chatMessage_copyButton__jd7q7 img,div.chatMessage_feedbackButtons___Brdy img{width:24px}div.chatMessage_trainOfThought__mR2Gg strong{font-weight:500}div.chatMessage_trainOfThought__mR2Gg.chatMessage_primary__WYPEb strong{font-weight:500;color:hsla(var(--secondary-foreground))}div.chatMessage_trainOfThought__mR2Gg.chatMessage_primary__WYPEb p{color:inherit}div.chatMessage_trainOfThoughtElement__le_bC{display:grid;grid-template-columns:auto 1fr}@media screen and (max-width:768px){div.chatMessage_youfullHistory__ioyfH{max-width:90%}}div.chatInputArea_actualInputArea__Ha6cN{display:grid;grid-template-columns:auto 1fr auto auto}div.search_searchLayout__fP3m0{display:grid;grid-template-columns:1fr;gap:1rem;height:100vh}div.search_sidePanel__myfc9{position:fixed;height:100%;z-index:1}@media screen and (max-width:768px){div.search_searchLayout__fP3m0{gap:0}div.search_sidePanel__myfc9{position:relative;height:100%}}
|
|
File without changes
|
|
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{8423-132ea64eac83fd43.js → 8423-898d821eaab634af.js}
RENAMED
|
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{9178-5a1fa2b9023249af.js → 9178-ef3257c08d8973c8.js}
RENAMED
|
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{9417-2e54c6fd056982d8.js → 9417-5d14ac74aaab2c66.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|