khoj 1.20.4.dev6__py3-none-any.whl → 1.20.4.dev9__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/database/adapters/__init__.py +15 -3
- khoj/interface/compiled/404/index.html +1 -1
- khoj/interface/compiled/_next/static/chunks/{webpack-52ba6115c8896764.js → webpack-07fad5db87344b82.js} +1 -1
- 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 +1 -1
- 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 +1 -1
- khoj/interface/compiled/share/chat/index.html +1 -1
- khoj/interface/compiled/share/chat/index.txt +2 -2
- khoj/processor/conversation/openai/utils.py +2 -0
- khoj/routers/api.py +18 -3
- khoj/routers/email.py +2 -1
- khoj/routers/helpers.py +21 -4
- {khoj-1.20.4.dev6.dist-info → khoj-1.20.4.dev9.dist-info}/METADATA +1 -1
- {khoj-1.20.4.dev6.dist-info → khoj-1.20.4.dev9.dist-info}/RECORD +35 -35
- /khoj/interface/compiled/_next/static/{aGGgLustppWBiBi-YjYK4 → JYRkztT9bDrHWVUdaKPKf}/_buildManifest.js +0 -0
- /khoj/interface/compiled/_next/static/{aGGgLustppWBiBi-YjYK4 → JYRkztT9bDrHWVUdaKPKf}/_ssgManifest.js +0 -0
- /khoj/interface/compiled/_next/static/chunks/{8423-898d821eaab634af.js → 8423-132ea64eac83fd43.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{9178-ef3257c08d8973c8.js → 9178-5a1fa2b9023249af.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{9417-5d14ac74aaab2c66.js → 9417-2e54c6fd056982d8.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/app/agents/{page-6ade083d5e27a023.js → page-3c01900e7b5c7e50.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/app/{page-a7e6517e91dde51a.js → page-d403fc59c9c3f8cc.js} +0 -0
- {khoj-1.20.4.dev6.dist-info → khoj-1.20.4.dev9.dist-info}/WHEEL +0 -0
- {khoj-1.20.4.dev6.dist-info → khoj-1.20.4.dev9.dist-info}/entry_points.txt +0 -0
- {khoj-1.20.4.dev6.dist-info → khoj-1.20.4.dev9.dist-info}/licenses/LICENSE +0 -0
khoj/routers/api.py
CHANGED
|
@@ -545,15 +545,19 @@ async def post_automation(
|
|
|
545
545
|
if not subject:
|
|
546
546
|
subject = await acreate_title_from_query(q)
|
|
547
547
|
|
|
548
|
+
title = f"Automation: {subject}"
|
|
549
|
+
|
|
548
550
|
# Create new Conversation Session associated with this new task
|
|
549
|
-
conversation = await ConversationAdapters.acreate_conversation_session(user, request.user.client_app)
|
|
551
|
+
conversation = await ConversationAdapters.acreate_conversation_session(user, request.user.client_app, title=title)
|
|
550
552
|
|
|
551
|
-
calling_url = request.url.replace(query=f"{request.url.query}
|
|
553
|
+
calling_url = request.url.replace(query=f"{request.url.query}")
|
|
552
554
|
|
|
553
555
|
# Schedule automation with query_to_run, timezone, subject directly provided by user
|
|
554
556
|
try:
|
|
555
557
|
# Use the query to run as the scheduling request if the scheduling request is unset
|
|
556
|
-
automation = await schedule_automation(
|
|
558
|
+
automation = await schedule_automation(
|
|
559
|
+
query_to_run, subject, crontime, timezone, q, user, calling_url, conversation.id
|
|
560
|
+
)
|
|
557
561
|
except Exception as e:
|
|
558
562
|
logger.error(f"Error creating automation {q} for {user.email}: {e}", exc_info=True)
|
|
559
563
|
return Response(
|
|
@@ -649,6 +653,16 @@ def edit_job(
|
|
|
649
653
|
automation_metadata["query_to_run"] = query_to_run
|
|
650
654
|
automation_metadata["subject"] = subject.strip()
|
|
651
655
|
automation_metadata["crontime"] = crontime
|
|
656
|
+
conversation_id = automation_metadata.get("conversation_id")
|
|
657
|
+
|
|
658
|
+
if not conversation_id:
|
|
659
|
+
title = f"Automation: {subject}"
|
|
660
|
+
|
|
661
|
+
# Create new Conversation Session associated with this new task
|
|
662
|
+
conversation = ConversationAdapters.create_conversation_session(user, request.user.client_app, title=title)
|
|
663
|
+
|
|
664
|
+
conversation_id = conversation.id
|
|
665
|
+
automation_metadata["conversation_id"] = conversation_id
|
|
652
666
|
|
|
653
667
|
# Modify automation with updated query, subject
|
|
654
668
|
automation.modify(
|
|
@@ -659,6 +673,7 @@ def edit_job(
|
|
|
659
673
|
"scheduling_request": q,
|
|
660
674
|
"user": user,
|
|
661
675
|
"calling_url": request.url,
|
|
676
|
+
"conversation_id": conversation_id,
|
|
662
677
|
},
|
|
663
678
|
)
|
|
664
679
|
|
khoj/routers/email.py
CHANGED
|
@@ -117,7 +117,8 @@ def send_task_email(name, email, query, result, subject, is_image=False):
|
|
|
117
117
|
template = env.get_template("task.html")
|
|
118
118
|
|
|
119
119
|
if is_image:
|
|
120
|
-
|
|
120
|
+
image = result.get("image")
|
|
121
|
+
result = f""
|
|
121
122
|
|
|
122
123
|
html_result = markdown_it.MarkdownIt().render(result)
|
|
123
124
|
html_content = template.render(name=name, subject=subject, query=query, result=html_result)
|
khoj/routers/helpers.py
CHANGED
|
@@ -1074,7 +1074,13 @@ def should_notify(original_query: str, executed_query: str, ai_response: str) ->
|
|
|
1074
1074
|
|
|
1075
1075
|
|
|
1076
1076
|
def scheduled_chat(
|
|
1077
|
-
query_to_run: str,
|
|
1077
|
+
query_to_run: str,
|
|
1078
|
+
scheduling_request: str,
|
|
1079
|
+
subject: str,
|
|
1080
|
+
user: KhojUser,
|
|
1081
|
+
calling_url: URL,
|
|
1082
|
+
job_id: str = None,
|
|
1083
|
+
conversation_id: int = None,
|
|
1078
1084
|
):
|
|
1079
1085
|
logger.info(f"Processing scheduled_chat: {query_to_run}")
|
|
1080
1086
|
if job_id:
|
|
@@ -1101,6 +1107,10 @@ def scheduled_chat(
|
|
|
1101
1107
|
# Replace the original scheduling query with the scheduled query
|
|
1102
1108
|
query_dict["q"] = [query_to_run]
|
|
1103
1109
|
|
|
1110
|
+
# Replace the original conversation_id with the conversation_id
|
|
1111
|
+
if conversation_id:
|
|
1112
|
+
query_dict["conversation_id"] = [conversation_id]
|
|
1113
|
+
|
|
1104
1114
|
# Construct the URL to call the chat API with the scheduled query string
|
|
1105
1115
|
encoded_query = urlencode(query_dict, doseq=True)
|
|
1106
1116
|
url = f"{scheme}://{calling_url.netloc}/api/chat?{encoded_query}"
|
|
@@ -1130,7 +1140,9 @@ def scheduled_chat(
|
|
|
1130
1140
|
if raw_response.headers.get("Content-Type") == "application/json":
|
|
1131
1141
|
response_map = raw_response.json()
|
|
1132
1142
|
ai_response = response_map.get("response") or response_map.get("image")
|
|
1133
|
-
is_image =
|
|
1143
|
+
is_image = False
|
|
1144
|
+
if type(ai_response) == dict:
|
|
1145
|
+
is_image = ai_response.get("image") is not None
|
|
1134
1146
|
else:
|
|
1135
1147
|
ai_response = raw_response.text
|
|
1136
1148
|
|
|
@@ -1142,9 +1154,11 @@ def scheduled_chat(
|
|
|
1142
1154
|
return raw_response
|
|
1143
1155
|
|
|
1144
1156
|
|
|
1145
|
-
async def create_automation(
|
|
1157
|
+
async def create_automation(
|
|
1158
|
+
q: str, timezone: str, user: KhojUser, calling_url: URL, meta_log: dict = {}, conversation_id: int = None
|
|
1159
|
+
):
|
|
1146
1160
|
crontime, query_to_run, subject = await schedule_query(q, meta_log)
|
|
1147
|
-
job = await schedule_automation(query_to_run, subject, crontime, timezone, q, user, calling_url)
|
|
1161
|
+
job = await schedule_automation(query_to_run, subject, crontime, timezone, q, user, calling_url, conversation_id)
|
|
1148
1162
|
return job, crontime, query_to_run, subject
|
|
1149
1163
|
|
|
1150
1164
|
|
|
@@ -1156,6 +1170,7 @@ async def schedule_automation(
|
|
|
1156
1170
|
scheduling_request: str,
|
|
1157
1171
|
user: KhojUser,
|
|
1158
1172
|
calling_url: URL,
|
|
1173
|
+
conversation_id: int,
|
|
1159
1174
|
):
|
|
1160
1175
|
# Disable minute level automation recurrence
|
|
1161
1176
|
minute_value = crontime.split(" ")[0]
|
|
@@ -1173,6 +1188,7 @@ async def schedule_automation(
|
|
|
1173
1188
|
"scheduling_request": scheduling_request,
|
|
1174
1189
|
"subject": subject,
|
|
1175
1190
|
"crontime": crontime,
|
|
1191
|
+
"conversation_id": conversation_id,
|
|
1176
1192
|
}
|
|
1177
1193
|
)
|
|
1178
1194
|
query_id = hashlib.md5(f"{query_to_run}_{crontime}".encode("utf-8")).hexdigest()
|
|
@@ -1191,6 +1207,7 @@ async def schedule_automation(
|
|
|
1191
1207
|
"user": user,
|
|
1192
1208
|
"calling_url": calling_url,
|
|
1193
1209
|
"job_id": job_id,
|
|
1210
|
+
"conversation_id": conversation_id,
|
|
1194
1211
|
},
|
|
1195
1212
|
id=job_id,
|
|
1196
1213
|
name=job_metadata,
|
|
@@ -11,7 +11,7 @@ khoj/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
11
11
|
khoj/database/admin.py,sha256=ztXOIjsHMKAuZqJ10xZi3wRIrnug_Rg5o85QFzRevjE,8882
|
|
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=xGicLSE1nUo6BJ81vhWabXxbtWfSSz1Oer7gEdqqc4c,50593
|
|
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
|
|
@@ -88,17 +88,17 @@ khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvt
|
|
|
88
88
|
khoj/interface/compiled/close.svg,sha256=hQ2iFLkNzHk0_iyTrSbwnWAeXYlgA-c2Eof2Iqh76n4,417
|
|
89
89
|
khoj/interface/compiled/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
|
|
90
90
|
khoj/interface/compiled/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
|
|
91
|
-
khoj/interface/compiled/index.html,sha256=
|
|
92
|
-
khoj/interface/compiled/index.txt,sha256=
|
|
91
|
+
khoj/interface/compiled/index.html,sha256=Vs8pcTIJQMINr3shuEfJAum-TFCysWlU2bobQMIXRWI,11912
|
|
92
|
+
khoj/interface/compiled/index.txt,sha256=TbcQ0Rxyoh_4losU_OXXia3YgMWZ8-7Drh3thvShoKg,5515
|
|
93
93
|
khoj/interface/compiled/khoj.webmanifest,sha256=lsknYkvEdMbRTOUYKXPM_8krN2gamJmM4u3qj8u9lrU,1682
|
|
94
94
|
khoj/interface/compiled/logo.svg,sha256=_QCKVYM4WT2Qhcf7aVFImjq_s5CwjynGXYAOgI7yf8w,8059
|
|
95
95
|
khoj/interface/compiled/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
|
|
96
96
|
khoj/interface/compiled/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
|
|
97
97
|
khoj/interface/compiled/thumbs-down.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
|
|
98
98
|
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/
|
|
99
|
+
khoj/interface/compiled/404/index.html,sha256=JYb1lq6B5dM-XjdL-1pAY5zu0hsHqK2lvHo656RLtus,11947
|
|
100
|
+
khoj/interface/compiled/_next/static/JYRkztT9bDrHWVUdaKPKf/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
|
|
101
|
+
khoj/interface/compiled/_next/static/JYRkztT9bDrHWVUdaKPKf/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
102
102
|
khoj/interface/compiled/_next/static/chunks/1603-fb2d80ae73990df3.js,sha256=CCbOXifiixbhMf7lgTG96225tP1Pou72Wb0Zh6KC1Rs,71007
|
|
103
103
|
khoj/interface/compiled/_next/static/chunks/2614-7cf01576d4457a75.js,sha256=aUjhjyxNPrZr4bLKzGkGgHH8K4J6g9dfiRjabnmvSDc,1104737
|
|
104
104
|
khoj/interface/compiled/_next/static/chunks/3062-a42d847c919a9ea4.js,sha256=9UDsx_sY4b4x6jjR_A0AymC9rjBCoCcEpGR4U-0Ej3g,256170
|
|
@@ -109,11 +109,11 @@ khoj/interface/compiled/_next/static/chunks/6648-ff677e51f1b2bcf1.js,sha256=9bJl
|
|
|
109
109
|
khoj/interface/compiled/_next/static/chunks/7023-52c1be60135eb057.js,sha256=CI8R2DdZNEt3nACmiXUG1NnKhnal1ImzXglW-xDuxcI,123657
|
|
110
110
|
khoj/interface/compiled/_next/static/chunks/7071-b4711cecca6619a8.js,sha256=z-KSur3LbIFPg_90wN0EMhV0et9cJVfG_MR9POVmdCQ,7801
|
|
111
111
|
khoj/interface/compiled/_next/static/chunks/743-1a64254447cda71f.js,sha256=YH4bEkjmttcOGzAzXKaDCJ-C68jk2qy1cQJP2ljjoAA,100834
|
|
112
|
-
khoj/interface/compiled/_next/static/chunks/8423-
|
|
112
|
+
khoj/interface/compiled/_next/static/chunks/8423-132ea64eac83fd43.js,sha256=W8aFQibnAqcbhPYoD_WzHKoMwaWt3jXdan7n_LoY4t4,10327
|
|
113
113
|
khoj/interface/compiled/_next/static/chunks/9001-acbca3e19b1a5ddf.js,sha256=M2hBSe8WTnjEmUlOiOgt_zDJtv3sc4ghnubhkZyMvVA,35460
|
|
114
114
|
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-
|
|
115
|
+
khoj/interface/compiled/_next/static/chunks/9178-5a1fa2b9023249af.js,sha256=2wBw6-Bg4NGBNwXOEmfnlVh-lO29bg85b9sirLSxSic,17645
|
|
116
|
+
khoj/interface/compiled/_next/static/chunks/9417-2e54c6fd056982d8.js,sha256=FZ8xOLMdzrlVmwtcyuQSy8bBwd8_UZ1hH3FlL4DwXpA,17252
|
|
117
117
|
khoj/interface/compiled/_next/static/chunks/9693-91b03052c5cabded.js,sha256=htVs3WyaR5jF7tXL_VBwqtPcQ53T3s9jWRazqz7DU-c,28957
|
|
118
118
|
khoj/interface/compiled/_next/static/chunks/d3ac728e-a9e3522eef9b6b28.js,sha256=wK1TsLdl56xtbQG6HMRDpylzTOYXQaAnnn2xobFnX40,267216
|
|
119
119
|
khoj/interface/compiled/_next/static/chunks/fd9d1056-2b978342deb60015.js,sha256=2lquiZSfbI-gX4j4TW4JSMLL_D5ShqwydgWpFyXrTy8,172834
|
|
@@ -121,12 +121,12 @@ khoj/interface/compiled/_next/static/chunks/framework-8e0e0f4a6b83a956.js,sha256
|
|
|
121
121
|
khoj/interface/compiled/_next/static/chunks/main-175c164f5e0f026c.js,sha256=hlUnjERudON4V4kUKprrFz1e9JRtSp4A9i7vnM-1bzA,110324
|
|
122
122
|
khoj/interface/compiled/_next/static/chunks/main-app-6d6ee3495efe03d4.js,sha256=i52E7sWOcSq1G8eYZL3mtTxbUbwRNxcAbSWQ6uWpMsY,475
|
|
123
123
|
khoj/interface/compiled/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
|
124
|
-
khoj/interface/compiled/_next/static/chunks/webpack-
|
|
124
|
+
khoj/interface/compiled/_next/static/chunks/webpack-07fad5db87344b82.js,sha256=E5ws2IYqeZrTugC-ngLoTBF_PTT63PSSXkt_JYnkQzo,3724
|
|
125
125
|
khoj/interface/compiled/_next/static/chunks/app/layout-f3e40d346da53112.js,sha256=nekGSUVbvB81OfqGgJa2UoDmbxPhNwFwtc4o11O_1jI,442
|
|
126
|
-
khoj/interface/compiled/_next/static/chunks/app/page-
|
|
126
|
+
khoj/interface/compiled/_next/static/chunks/app/page-d403fc59c9c3f8cc.js,sha256=YUwVwaYzboELj6m928tR0hn5SL8BiUiVCFe1c0k-h-k,28602
|
|
127
127
|
khoj/interface/compiled/_next/static/chunks/app/_not-found/page-07ff4ab42b07845e.js,sha256=3mCUnxfMxyK44eqk21TVBrC6u--WSbvx31fTmQuOvMQ,1755
|
|
128
128
|
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-
|
|
129
|
+
khoj/interface/compiled/_next/static/chunks/app/agents/page-3c01900e7b5c7e50.js,sha256=8tp_0cKBkscDxbQcd5hwQPOI7sZHZeHy0S4zEiVFkl8,18092
|
|
130
130
|
khoj/interface/compiled/_next/static/chunks/app/automations/layout-27c28e923c9b1ff0.js,sha256=d2vJ_lVB0pfeFXNUPzHAe1ca5NzdNowHPh___SPqugM,5143
|
|
131
131
|
khoj/interface/compiled/_next/static/chunks/app/automations/page-353b67d89adf9e29.js,sha256=nOQnnfM-QO1gk7GC4GmdcO0NekSgfms4cP14UH375VI,33868
|
|
132
132
|
khoj/interface/compiled/_next/static/chunks/app/chat/layout-8102549127db3067.js,sha256=YIoA3fqOBt8nKWw5iQAwA_avg2t1Q5Afn65IA5PBOz4,374
|
|
@@ -222,8 +222,8 @@ khoj/interface/compiled/_next/static/media/flags.3afdda2f.webp,sha256=M2AW_HLpBn
|
|
|
222
222
|
khoj/interface/compiled/_next/static/media/flags@2x.5fbe9fc1.webp,sha256=BBeRPBZkxY3-aKkMnYv5TSkxmbeMbyUH4VRIPfrWg1E,137406
|
|
223
223
|
khoj/interface/compiled/_next/static/media/globe.98e105ca.webp,sha256=g3ofb8-W9GM75zIhlvQhaS8I2py9TtrovOKR3_7Jf04,514
|
|
224
224
|
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=
|
|
225
|
+
khoj/interface/compiled/agents/index.html,sha256=ZoBlznnheTZNU_BesKECPp4GrPYc_vIqOMwLAdBIK4Q,12699
|
|
226
|
+
khoj/interface/compiled/agents/index.txt,sha256=yUjRLmMbxf2WMMXDvMq7m-JWFd_h_tm9myxnJZGyDRY,6075
|
|
227
227
|
khoj/interface/compiled/assets/icons/khoj_lantern.ico,sha256=eggu-B_v3z1R53EjOFhIqqPnICBGdoaw1xnc0NrzHck,174144
|
|
228
228
|
khoj/interface/compiled/assets/icons/khoj_lantern_128x128.png,sha256=aTxivDb3CYyThkVZWz8A19xl_dNut5DbkXhODWF3A9Q,5640
|
|
229
229
|
khoj/interface/compiled/assets/icons/khoj_lantern_256x256.png,sha256=xPCMLHiaL7lYOdQLZrKwWE-Qjn5ZaysSZB0ScYv4UZU,12312
|
|
@@ -234,18 +234,18 @@ khoj/interface/compiled/assets/samples/desktop-remember-plan-sample.png,sha256=i
|
|
|
234
234
|
khoj/interface/compiled/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
|
|
235
235
|
khoj/interface/compiled/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
|
|
236
236
|
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=
|
|
237
|
+
khoj/interface/compiled/automations/index.html,sha256=Y75QBqk3ELN5PIC7fp5Brm6pfNALVWsd71MXJEhgly8,30500
|
|
238
|
+
khoj/interface/compiled/automations/index.txt,sha256=wp87q2OlTf7O_ilobwDtl98VrDgXhCC89bXURXIHqNU,5447
|
|
239
|
+
khoj/interface/compiled/chat/index.html,sha256=qBAdnM5rroko6cVj5t2DIwPwwrAweq3fW5D-Pa7vJ0Y,13566
|
|
240
|
+
khoj/interface/compiled/chat/index.txt,sha256=zNlgXjLojKKbD-y7uPQ8RHrxCuYhd5OmGomi1Si-9sA,6421
|
|
241
|
+
khoj/interface/compiled/factchecker/index.html,sha256=tk9FcU38xsFocnZxMl0VPxD8QEQwRqWovIinqq_2nP4,29839
|
|
242
|
+
khoj/interface/compiled/factchecker/index.txt,sha256=Bi9hxVpWvtmygLKwMjfNn9Sy5oRnvfQRjTaa9Nh_Ioo,5735
|
|
243
|
+
khoj/interface/compiled/search/index.html,sha256=JDehTcPVZxsno455ZUg1pT4gpHVPFMhEDuOcurAYZ2I,30154
|
|
244
|
+
khoj/interface/compiled/search/index.txt,sha256=yyW7mGac9knHyQRVwI_6W8L8yRw7aJApESuLpGAxrj4,5249
|
|
245
|
+
khoj/interface/compiled/settings/index.html,sha256=E-82xY3VcsidPgxSRGoCWKkkkrFTni7nXy-MC9ZGuIU,12827
|
|
246
|
+
khoj/interface/compiled/settings/index.txt,sha256=Rau4Rn6Q4Et2-aFHi1otg3I402D8bo6lkq3qvINVUIY,6073
|
|
247
|
+
khoj/interface/compiled/share/chat/index.html,sha256=BEbiKNY7S_JKSlniUOipZBPu7fYBz2eR906dkC6cXxE,14896
|
|
248
|
+
khoj/interface/compiled/share/chat/index.txt,sha256=XC5rOIx3EYBkG_pSYuKUTQNYigJOzqg8Fwfe3uqyq88,7239
|
|
249
249
|
khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
|
|
250
250
|
khoj/interface/email/magic_link.html,sha256=jXY_2hD3o15Ns5UDzbjLT8FHBnZiS7jo38YkYXIS-4w,947
|
|
251
251
|
khoj/interface/email/task.html,sha256=yXywzC-5P4nXbhqvgCmwcCpTRbD5eWuDXMpgYSotztM,3311
|
|
@@ -307,22 +307,22 @@ khoj/processor/conversation/offline/utils.py,sha256=n2T3vwAIZnSe9-UN1VORLPrLEUca
|
|
|
307
307
|
khoj/processor/conversation/offline/whisper.py,sha256=DJI-8y8DULO2cQ49m2VOvRyIZ2TxBypc15gM8O3HuMI,470
|
|
308
308
|
khoj/processor/conversation/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
309
309
|
khoj/processor/conversation/openai/gpt.py,sha256=bbEyiOeRgko65bLsFHNlkMw1cvbiawQsjmDipCpy0E4,7111
|
|
310
|
-
khoj/processor/conversation/openai/utils.py,sha256=
|
|
310
|
+
khoj/processor/conversation/openai/utils.py,sha256=_MCIE8NAomNllEvCp2qTifKxgLsTJyXF07KI2cSjimk,4124
|
|
311
311
|
khoj/processor/conversation/openai/whisper.py,sha256=RuwDtxSJrVWYdZz4aVnk0XiMQy9w8W9lFcVfE0hMiFY,432
|
|
312
312
|
khoj/processor/speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
313
|
khoj/processor/speech/text_to_speech.py,sha256=Q7sapi5Hv6woXOumtrGqR0t6izZrFBkWXFOGrHM6dJ4,1929
|
|
314
314
|
khoj/processor/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
315
|
khoj/processor/tools/online_search.py,sha256=cQZ6Aw7Kg0QXCthK4Vdn3gtF2K9GtUZmCkbxWYC_hJw,9620
|
|
316
316
|
khoj/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
|
-
khoj/routers/api.py,sha256=
|
|
317
|
+
khoj/routers/api.py,sha256=UpKDOE9Z8KkedDmn3TWg6fb0zAUDiu_OUpY6JRTmEUs,25602
|
|
318
318
|
khoj/routers/api_agents.py,sha256=ks8QzjmZiio6j1QGi6xFtDmVxd9lvC6LPB-WcDPnF8o,1525
|
|
319
319
|
khoj/routers/api_chat.py,sha256=tAYKTRR6r8gACIlAb46zZ2OfUKdV7j4mlCiZAHMqh9Y,35491
|
|
320
320
|
khoj/routers/api_content.py,sha256=OfY05ggRmg0FuVWzodBfV_5Gc6UbGCfchiIk8eqKA2o,17387
|
|
321
321
|
khoj/routers/api_model.py,sha256=5m7JWwgd9jILiLivRu7NEyY2E-tUkqoEkGg6j6uM1g0,4646
|
|
322
322
|
khoj/routers/api_phone.py,sha256=p9yfc4WeMHDC0hg3aQk60a2VBy8rZPdEnz9wdJ7DzkU,2208
|
|
323
323
|
khoj/routers/auth.py,sha256=pCOLSRihJWcn097DRPxLjPdlejsjHJFRs9jHIzLujZU,6247
|
|
324
|
-
khoj/routers/email.py,sha256=
|
|
325
|
-
khoj/routers/helpers.py,sha256=
|
|
324
|
+
khoj/routers/email.py,sha256=jA4jDTrYHUpY7mFHL4himeRlTBLRQmQKHqC91Dw1Zu0,3730
|
|
325
|
+
khoj/routers/helpers.py,sha256=6AM2K9HzUCxs84HURbjR5O92T9EHm84WG1vzec7hrxQ,63011
|
|
326
326
|
khoj/routers/notion.py,sha256=0iG_DPVjg8n_LBWGHA8M6eHnJJDL-isARSEHTYStz6c,2809
|
|
327
327
|
khoj/routers/storage.py,sha256=9ZfBsr_omxdFV-Lcj6p30xTQcF_7wwCZ9XFJukzjITE,1429
|
|
328
328
|
khoj/routers/subscription.py,sha256=qEyV7m7mrY6MGtaij8W3v61tpzX2a7ydm2B-E8h_R-M,4285
|
|
@@ -347,8 +347,8 @@ khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
|
|
|
347
347
|
khoj/utils/rawconfig.py,sha256=luk7Vb_ODuoTdMd_IG-yVXGoyoU-RktyapBG5D1N_VI,3985
|
|
348
348
|
khoj/utils/state.py,sha256=x4GTewP1YhOA6c_32N4wOjnV-3AA3xG_qbY1-wC2Uxc,1559
|
|
349
349
|
khoj/utils/yaml.py,sha256=H0mfw0ZvBFUvFmCQn8pWkfxdmIebsrSykza7D8Wv6wQ,1430
|
|
350
|
-
khoj-1.20.4.
|
|
351
|
-
khoj-1.20.4.
|
|
352
|
-
khoj-1.20.4.
|
|
353
|
-
khoj-1.20.4.
|
|
354
|
-
khoj-1.20.4.
|
|
350
|
+
khoj-1.20.4.dev9.dist-info/METADATA,sha256=eowSg_P7jhWwpnxE5t7bYfBOklPWwya80gh4Xm0ij04,6875
|
|
351
|
+
khoj-1.20.4.dev9.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
352
|
+
khoj-1.20.4.dev9.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
|
353
|
+
khoj-1.20.4.dev9.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
354
|
+
khoj-1.20.4.dev9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{8423-898d821eaab634af.js → 8423-132ea64eac83fd43.js}
RENAMED
|
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{9178-ef3257c08d8973c8.js → 9178-5a1fa2b9023249af.js}
RENAMED
|
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{9417-5d14ac74aaab2c66.js → 9417-2e54c6fd056982d8.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|