khoj 1.30.8.dev20__py3-none-any.whl → 1.30.9__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/interface/compiled/404/index.html +1 -1
- khoj/interface/compiled/_next/static/chunks/app/agents/{page-2ffa7560aebff9a1.js → page-f5c0801b27a8e95e.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/automations/{page-b0a6a6ed2267c1a2.js → page-8691f6c09a0acd44.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/chat/{page-02f8616bba3e449e.js → page-135d56dd4263e40d.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/{page-3ffd8f0934b896f3.js → page-e79ace822d51557b.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/search/layout-cae84c87073877f0.js +1 -0
- khoj/interface/compiled/_next/static/chunks/app/search/{page-059f237514f77628.js → page-e8b578d155550386.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/settings/{page-32e9423bede5b4a1.js → page-b6c835050c970be7.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-6f4879fbbf8b90f7.js +1 -0
- khoj/interface/compiled/_next/static/chunks/app/share/chat/{page-0b8d90dc57dbc1d8.js → page-635635e4fb39fe29.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/{webpack-64477b5a1e621214.js → webpack-244ec4c3c3c0bc91.js} +1 -1
- khoj/interface/compiled/_next/static/css/592ca99f5122e75a.css +1 -0
- khoj/interface/compiled/_next/static/css/63e106a52a0ec4ca.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/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 +2 -3
- khoj/processor/conversation/google/gemini_chat.py +2 -3
- khoj/processor/conversation/offline/chat_model.py +4 -2
- khoj/processor/conversation/openai/gpt.py +2 -2
- khoj/routers/helpers.py +2 -1
- {khoj-1.30.8.dev20.dist-info → khoj-1.30.9.dist-info}/METADATA +1 -1
- {khoj-1.30.8.dev20.dist-info → khoj-1.30.9.dist-info}/RECORD +39 -39
- khoj/interface/compiled/_next/static/chunks/app/search/layout-2ca475462c0b2176.js +0 -1
- khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-592e8c470f2c2084.js +0 -1
- khoj/interface/compiled/_next/static/css/80bd6301fc657983.css +0 -1
- khoj/interface/compiled/_next/static/css/9d45de78fba367c1.css +0 -1
- /khoj/interface/compiled/_next/static/{ZXljCtgU4KfNlR0tOgtnP → t9Xkd9jkmlWB7B7r9MzE1}/_buildManifest.js +0 -0
- /khoj/interface/compiled/_next/static/{ZXljCtgU4KfNlR0tOgtnP → t9Xkd9jkmlWB7B7r9MzE1}/_ssgManifest.js +0 -0
- {khoj-1.30.8.dev20.dist-info → khoj-1.30.9.dist-info}/WHEEL +0 -0
- {khoj-1.30.8.dev20.dist-info → khoj-1.30.9.dist-info}/entry_points.txt +0 -0
- {khoj-1.30.8.dev20.dist-info → khoj-1.30.9.dist-info}/licenses/LICENSE +0 -0
@@ -1,9 +1,8 @@
|
|
1
|
-
import json
|
2
1
|
import logging
|
3
|
-
import re
|
4
2
|
from datetime import datetime, timedelta
|
5
3
|
from typing import Dict, Optional
|
6
4
|
|
5
|
+
import pyjson5
|
7
6
|
from langchain.schema import ChatMessage
|
8
7
|
|
9
8
|
from khoj.database.models import Agent, ChatModelOptions, KhojUser
|
@@ -110,7 +109,7 @@ def extract_questions_anthropic(
|
|
110
109
|
# Extract, Clean Message from Claude's Response
|
111
110
|
try:
|
112
111
|
response = clean_json(response)
|
113
|
-
response =
|
112
|
+
response = pyjson5.loads(response)
|
114
113
|
response = [q.strip() for q in response["queries"] if q.strip()]
|
115
114
|
if not isinstance(response, list) or not response:
|
116
115
|
logger.error(f"Invalid response for constructing subqueries: {response}")
|
@@ -1,9 +1,8 @@
|
|
1
|
-
import json
|
2
1
|
import logging
|
3
|
-
import re
|
4
2
|
from datetime import datetime, timedelta
|
5
3
|
from typing import Dict, Optional
|
6
4
|
|
5
|
+
import pyjson5
|
7
6
|
from langchain.schema import ChatMessage
|
8
7
|
|
9
8
|
from khoj.database.models import Agent, ChatModelOptions, KhojUser
|
@@ -104,7 +103,7 @@ def extract_questions_gemini(
|
|
104
103
|
# Extract, Clean Message from Gemini's Response
|
105
104
|
try:
|
106
105
|
response = clean_json(response)
|
107
|
-
response =
|
106
|
+
response = pyjson5.loads(response)
|
108
107
|
response = [q.strip() for q in response["queries"] if q.strip()]
|
109
108
|
if not isinstance(response, list) or not response:
|
110
109
|
logger.error(f"Invalid response for constructing subqueries: {response}")
|
@@ -5,6 +5,7 @@ from datetime import datetime, timedelta
|
|
5
5
|
from threading import Thread
|
6
6
|
from typing import Any, Iterator, List, Optional, Union
|
7
7
|
|
8
|
+
import pyjson5
|
8
9
|
from langchain.schema import ChatMessage
|
9
10
|
from llama_cpp import Llama
|
10
11
|
|
@@ -13,6 +14,7 @@ from khoj.processor.conversation import prompts
|
|
13
14
|
from khoj.processor.conversation.offline.utils import download_model
|
14
15
|
from khoj.processor.conversation.utils import (
|
15
16
|
ThreadedGenerator,
|
17
|
+
clean_json,
|
16
18
|
commit_conversation_trace,
|
17
19
|
generate_chatml_messages_with_context,
|
18
20
|
messages_to_print,
|
@@ -114,8 +116,8 @@ def extract_questions_offline(
|
|
114
116
|
|
115
117
|
# Extract and clean the chat model's response
|
116
118
|
try:
|
117
|
-
response =
|
118
|
-
response =
|
119
|
+
response = clean_json(empty_escape_sequences)
|
120
|
+
response = pyjson5.loads(response)
|
119
121
|
questions = [q.strip() for q in response["queries"] if q.strip()]
|
120
122
|
questions = filter_questions(questions)
|
121
123
|
except:
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import json
|
2
1
|
import logging
|
3
2
|
from datetime import datetime, timedelta
|
4
3
|
from typing import Dict, Optional
|
5
4
|
|
5
|
+
import pyjson5
|
6
6
|
from langchain.schema import ChatMessage
|
7
7
|
|
8
8
|
from khoj.database.models import Agent, ChatModelOptions, KhojUser
|
@@ -104,7 +104,7 @@ def extract_questions(
|
|
104
104
|
# Extract, Clean Message from GPT's Response
|
105
105
|
try:
|
106
106
|
response = clean_json(response)
|
107
|
-
response =
|
107
|
+
response = pyjson5.loads(response)
|
108
108
|
response = [q.strip() for q in response["queries"] if q.strip()]
|
109
109
|
if not isinstance(response, list) or not response:
|
110
110
|
logger.error(f"Invalid response for constructing subqueries: {response}")
|
khoj/routers/helpers.py
CHANGED
@@ -27,6 +27,7 @@ from typing import (
|
|
27
27
|
from urllib.parse import parse_qs, quote, unquote, urljoin, urlparse
|
28
28
|
|
29
29
|
import cron_descriptor
|
30
|
+
import pyjson5
|
30
31
|
import pytz
|
31
32
|
import requests
|
32
33
|
from apscheduler.job import Job
|
@@ -541,7 +542,7 @@ async def generate_online_subqueries(
|
|
541
542
|
# Validate that the response is a non-empty, JSON-serializable list
|
542
543
|
try:
|
543
544
|
response = clean_json(response)
|
544
|
-
response =
|
545
|
+
response = pyjson5.loads(response)
|
545
546
|
response = {q.strip() for q in response["queries"] if q.strip()}
|
546
547
|
if not isinstance(response, set) or not response or len(response) == 0:
|
547
548
|
logger.error(f"Invalid response for constructing subqueries: {response}. Returning original query: {q}")
|
@@ -111,17 +111,15 @@ khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvt
|
|
111
111
|
khoj/interface/compiled/close.svg,sha256=hQ2iFLkNzHk0_iyTrSbwnWAeXYlgA-c2Eof2Iqh76n4,417
|
112
112
|
khoj/interface/compiled/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
|
113
113
|
khoj/interface/compiled/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
|
114
|
-
khoj/interface/compiled/index.html,sha256=
|
115
|
-
khoj/interface/compiled/index.txt,sha256=
|
114
|
+
khoj/interface/compiled/index.html,sha256=wOiy5Hcwn8jl9vgj6exqMI5epCHHkfdSdq28TF7hMmE,13332
|
115
|
+
khoj/interface/compiled/index.txt,sha256=SgQp7Q1VVO0AJCuWefZa95ORlnrW74D2MJoSP8LPmRM,5532
|
116
116
|
khoj/interface/compiled/khoj.webmanifest,sha256=lsknYkvEdMbRTOUYKXPM_8krN2gamJmM4u3qj8u9lrU,1682
|
117
117
|
khoj/interface/compiled/logo.svg,sha256=_QCKVYM4WT2Qhcf7aVFImjq_s5CwjynGXYAOgI7yf8w,8059
|
118
118
|
khoj/interface/compiled/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
|
119
119
|
khoj/interface/compiled/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
|
120
120
|
khoj/interface/compiled/thumbs-down.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
|
121
121
|
khoj/interface/compiled/thumbs-up.svg,sha256=yS1wxTRtiztkN-6nZciLoYQUB_KTYNPV8xFRwH2TQFw,1036
|
122
|
-
khoj/interface/compiled/404/index.html,sha256=
|
123
|
-
khoj/interface/compiled/_next/static/ZXljCtgU4KfNlR0tOgtnP/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
|
124
|
-
khoj/interface/compiled/_next/static/ZXljCtgU4KfNlR0tOgtnP/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
122
|
+
khoj/interface/compiled/404/index.html,sha256=WNqShlw27pIyVJPwSpZ9n_rRhuKODe47l_Hzz7bYKL0,13459
|
125
123
|
khoj/interface/compiled/_next/static/chunks/1210.ef7a0f9a7e43da1d.js,sha256=yOh1qtmNHPpDd6vR7CJOXSbq8M_slPujdTR_OXxaEYU,2121
|
126
124
|
khoj/interface/compiled/_next/static/chunks/1279-4cb23143aa2c0228.js,sha256=zHMz-ixoNkLNUjN2-C48RGEyMs2mI9wsNRCczXnzIvQ,45616
|
127
125
|
khoj/interface/compiled/_next/static/chunks/1459.690bf20e7d7b7090.js,sha256=z-ruZPxF_Z3ef_WOThd9Ox36AMhxaW3znizVivNnA34,34239
|
@@ -148,31 +146,31 @@ khoj/interface/compiled/_next/static/chunks/framework-8e0e0f4a6b83a956.js,sha256
|
|
148
146
|
khoj/interface/compiled/_next/static/chunks/main-1ea5c2e0fdef4626.js,sha256=8_u87PGI3PahFbDfGWGvpD-a18J7X7ChUqWIeqxVq7g,111061
|
149
147
|
khoj/interface/compiled/_next/static/chunks/main-app-6d6ee3495efe03d4.js,sha256=i52E7sWOcSq1G8eYZL3mtTxbUbwRNxcAbSWQ6uWpMsY,475
|
150
148
|
khoj/interface/compiled/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
151
|
-
khoj/interface/compiled/_next/static/chunks/webpack-
|
149
|
+
khoj/interface/compiled/_next/static/chunks/webpack-244ec4c3c3c0bc91.js,sha256=PqHIxxfH3OrIjAtGkDeNzBRf6EX-OYTrVfbBZ7ukF1s,3991
|
152
150
|
khoj/interface/compiled/_next/static/chunks/app/layout-72ec1be8afd0b1ab.js,sha256=Hb2f_jhNZWv_3G4BNGyHK16XO3ha-FCXO8GBZq7iPLE,709
|
153
|
-
khoj/interface/compiled/_next/static/chunks/app/page-
|
151
|
+
khoj/interface/compiled/_next/static/chunks/app/page-e79ace822d51557b.js,sha256=MPNqEOO96HJrYTfjJp6v4rU8_AHmce53UyuHRFJ0r0M,33109
|
154
152
|
khoj/interface/compiled/_next/static/chunks/app/_not-found/page-cfba071f5a657256.js,sha256=3mCUnxfMxyK44eqk21TVBrC6u--WSbvx31fTmQuOvMQ,1755
|
155
153
|
khoj/interface/compiled/_next/static/chunks/app/agents/layout-1878cc328ea380bd.js,sha256=foKQN1MOnaGA0hgPpbiLKvn7H87Xmmr_TC2nKkkH5I8,180
|
156
|
-
khoj/interface/compiled/_next/static/chunks/app/agents/page-
|
154
|
+
khoj/interface/compiled/_next/static/chunks/app/agents/page-f5c0801b27a8e95e.js,sha256=ZBZOd8ajB4OubnrHYQLFtmVi6C0GfXu4tBbuHPsS81g,11745
|
157
155
|
khoj/interface/compiled/_next/static/chunks/app/automations/layout-f1050c1f20a3af67.js,sha256=t7ixWyTCvIkRQtpqmpXK31_hcwUBYnKSEdDD9Phc3Ag,5148
|
158
|
-
khoj/interface/compiled/_next/static/chunks/app/automations/page-
|
156
|
+
khoj/interface/compiled/_next/static/chunks/app/automations/page-8691f6c09a0acd44.js,sha256=WOsq8GJW3vAhqzqgU_M_23GJRw1r2qYl0chK1L8GHAg,35406
|
159
157
|
khoj/interface/compiled/_next/static/chunks/app/chat/layout-9219a85f3477e722.js,sha256=m3FPwrm9nauoPVn_HTs2lgIb3YNc93tzAjKWazSd5ko,180
|
160
|
-
khoj/interface/compiled/_next/static/chunks/app/chat/page-
|
161
|
-
khoj/interface/compiled/_next/static/chunks/app/search/layout-
|
162
|
-
khoj/interface/compiled/_next/static/chunks/app/search/page-
|
158
|
+
khoj/interface/compiled/_next/static/chunks/app/chat/page-135d56dd4263e40d.js,sha256=OUm7ehx0ufE6aAOvo8jEuwuNnPWbzyiRS_-q_ETUYlU,7134
|
159
|
+
khoj/interface/compiled/_next/static/chunks/app/search/layout-cae84c87073877f0.js,sha256=DBqvyhiyjNn9uzNbt7l4g_TT0kFKsXkv2UgCuXv_hDI,180
|
160
|
+
khoj/interface/compiled/_next/static/chunks/app/search/page-e8b578d155550386.js,sha256=fgsV5-mo0VzHTN8s0ZRJwAqgNHTYKUxv1ebHGzRQN3s,6948
|
163
161
|
khoj/interface/compiled/_next/static/chunks/app/settings/layout-fe8a2f65ccafd142.js,sha256=_LNxKuVAZurwFfeYKk8g08FY4S9_P_0kHwtGwR_Kjlk,5148
|
164
|
-
khoj/interface/compiled/_next/static/chunks/app/settings/page-
|
165
|
-
khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-
|
166
|
-
khoj/interface/compiled/_next/static/chunks/app/share/chat/page-
|
162
|
+
khoj/interface/compiled/_next/static/chunks/app/settings/page-b6c835050c970be7.js,sha256=cdLFFn8J9InHmLeWJVsmz1DWO1cJbOCiyWoVR7Q083Y,32244
|
163
|
+
khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-6f4879fbbf8b90f7.js,sha256=ia29jjZ94vDbU9Ew41iqDCHFO5aN_r7JgkDm1mJOj0M,180
|
164
|
+
khoj/interface/compiled/_next/static/chunks/app/share/chat/page-635635e4fb39fe29.js,sha256=1jCQbNiSBpyUU6JWbZMi9s73_4M5A_nAfNCiXJoiLNs,4366
|
167
165
|
khoj/interface/compiled/_next/static/chunks/pages/_app-f870474a17b7f2fd.js,sha256=eqdFPAN_XFyMUzZ9qwFk-_rhMWZrU7lgNVt1foVUANo,286
|
168
166
|
khoj/interface/compiled/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
|
169
167
|
khoj/interface/compiled/_next/static/css/1f293605f2871853.css,sha256=G2b3Wx4e0DRBWSdNU20ivCChZI5HBzvPYUVVIdTRjLc,26590
|
170
168
|
khoj/interface/compiled/_next/static/css/3c34171b174cc381.css,sha256=NEDZ3BbH1X6AYS6epyE-j3SdOZDE1UL3FzKnXVGCYfE,3058815
|
171
169
|
khoj/interface/compiled/_next/static/css/3cf13271869a4aeb.css,sha256=sGjJTeMeN6wbQF4OCPgWYgJmSLLSHyzIH2rSVstWx7k,1857
|
172
170
|
khoj/interface/compiled/_next/static/css/4cae6c0e5c72fb2d.css,sha256=3CjTMmtMrm_MYt1ywtUh2MHEjSLSl356SQLl4hdBuYw,534
|
171
|
+
khoj/interface/compiled/_next/static/css/592ca99f5122e75a.css,sha256=BSqRkeb9vBh0phx5GkAlZirTFZintbyggGaUkuOBfaU,914
|
173
172
|
khoj/interface/compiled/_next/static/css/5a400c87d295e68a.css,sha256=ojDUPJ9fJpEo9DzTAsEa-k1cg7Bef-nSTfpszMiqknQ,17711
|
174
|
-
khoj/interface/compiled/_next/static/css/
|
175
|
-
khoj/interface/compiled/_next/static/css/9d45de78fba367c1.css,sha256=TGW4CbYNGAfDm8sAwMbO2zxxIdxxKJq5fhxVpHgRW0E,8829
|
173
|
+
khoj/interface/compiled/_next/static/css/63e106a52a0ec4ca.css,sha256=Wv-HjEgVcNJ3OHNbnsizTFoL1P6Khfb9o4Qt-rQyPY4,9549
|
176
174
|
khoj/interface/compiled/_next/static/css/bedf49fbfc598358.css,sha256=NCnK01erXMI9lUahFhW4FWh_Sh0s9CNi_3zyxSVUj6c,4041
|
177
175
|
khoj/interface/compiled/_next/static/media/5455839c73f146e7-s.p.woff2,sha256=BUeNjYxyX7Bu76aNlJrZtW3PwYgcH-kp8syFdODZoyc,35788
|
178
176
|
khoj/interface/compiled/_next/static/media/5984b96ba4822821-s.p.woff2,sha256=RFrf6fMTduuQwEe78qK6_Y_Mnj97HmRDG-VujYxwA90,99368
|
@@ -247,8 +245,10 @@ khoj/interface/compiled/_next/static/media/flags.3afdda2f.webp,sha256=M2AW_HLpBn
|
|
247
245
|
khoj/interface/compiled/_next/static/media/flags@2x.5fbe9fc1.webp,sha256=BBeRPBZkxY3-aKkMnYv5TSkxmbeMbyUH4VRIPfrWg1E,137406
|
248
246
|
khoj/interface/compiled/_next/static/media/globe.98e105ca.webp,sha256=g3ofb8-W9GM75zIhlvQhaS8I2py9TtrovOKR3_7Jf04,514
|
249
247
|
khoj/interface/compiled/_next/static/media/globe@2x.974df6f8.webp,sha256=I_N7Yke3IOoS-0CC6XD8o0IUWG8PdPbrHmf6lpgWlZY,1380
|
250
|
-
khoj/interface/compiled/
|
251
|
-
khoj/interface/compiled/
|
248
|
+
khoj/interface/compiled/_next/static/t9Xkd9jkmlWB7B7r9MzE1/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
|
249
|
+
khoj/interface/compiled/_next/static/t9Xkd9jkmlWB7B7r9MzE1/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
250
|
+
khoj/interface/compiled/agents/index.html,sha256=btn_BrcHV261xxt3U2iBnMYNAtM7rspw7q1uX81DrCQ,14178
|
251
|
+
khoj/interface/compiled/agents/index.txt,sha256=4MXP4sZVz2IZ40IwC9Dqvr4dzzEyvEODw2qulk9Zl0w,6116
|
252
252
|
khoj/interface/compiled/assets/icons/khoj_lantern.ico,sha256=eggu-B_v3z1R53EjOFhIqqPnICBGdoaw1xnc0NrzHck,174144
|
253
253
|
khoj/interface/compiled/assets/icons/khoj_lantern_128x128.png,sha256=aTxivDb3CYyThkVZWz8A19xl_dNut5DbkXhODWF3A9Q,5640
|
254
254
|
khoj/interface/compiled/assets/icons/khoj_lantern_256x256.png,sha256=xPCMLHiaL7lYOdQLZrKwWE-Qjn5ZaysSZB0ScYv4UZU,12312
|
@@ -259,16 +259,16 @@ khoj/interface/compiled/assets/samples/desktop-remember-plan-sample.png,sha256=i
|
|
259
259
|
khoj/interface/compiled/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
|
260
260
|
khoj/interface/compiled/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
|
261
261
|
khoj/interface/compiled/assets/samples/phone-remember-plan-sample.png,sha256=Ma3blirRmq3X4oYSsDbbT7MDn29rymDrjwmUfA9BMuM,236285
|
262
|
-
khoj/interface/compiled/automations/index.html,sha256=
|
263
|
-
khoj/interface/compiled/automations/index.txt,sha256=
|
264
|
-
khoj/interface/compiled/chat/index.html,sha256=
|
265
|
-
khoj/interface/compiled/chat/index.txt,sha256=
|
266
|
-
khoj/interface/compiled/search/index.html,sha256=
|
267
|
-
khoj/interface/compiled/search/index.txt,sha256=
|
268
|
-
khoj/interface/compiled/settings/index.html,sha256=
|
269
|
-
khoj/interface/compiled/settings/index.txt,sha256=
|
270
|
-
khoj/interface/compiled/share/chat/index.html,sha256=
|
271
|
-
khoj/interface/compiled/share/chat/index.txt,sha256=
|
262
|
+
khoj/interface/compiled/automations/index.html,sha256=uxwgl5XAuoSyTzuZmcdoS8g-8vz4ABpFSe-WWZe_PLA,32381
|
263
|
+
khoj/interface/compiled/automations/index.txt,sha256=oaQpDNohbWY3udLOcqprRQTs6r8oPD7XShxdQjzd66M,5650
|
264
|
+
khoj/interface/compiled/chat/index.html,sha256=M6IU0OJk4g2dI9hzUyYoan2CpbSIGKwaRAsQfv3SD3k,14764
|
265
|
+
khoj/interface/compiled/chat/index.txt,sha256=tqB_tJ3nebRFy8OlEzFDnd7Iq0Jo6vohnxCjpr-6Els,6395
|
266
|
+
khoj/interface/compiled/search/index.html,sha256=pLmFkNvgMJysgR_VYqdl024FHukBZMfXwkF1BCeoumo,31336
|
267
|
+
khoj/interface/compiled/search/index.txt,sha256=iLiHbEPIoJhN9pn5VNuOpQpwrTIpzvG9gpYYUN5yX7M,5177
|
268
|
+
khoj/interface/compiled/settings/index.html,sha256=8E9wbXv9ZVbZUQqHxe5rK29RtRyNg6A30-TMWmxmFPw,14305
|
269
|
+
khoj/interface/compiled/settings/index.txt,sha256=PSXeWMUwBPjAkISrZZ6Xumr-w7ITXx0esOwvEj2GyjQ,6112
|
270
|
+
khoj/interface/compiled/share/chat/index.html,sha256=D-Sw36ZAJasYGxr0lDAVRFNPAYDt1pSM9jOoUjbmeKI,16373
|
271
|
+
khoj/interface/compiled/share/chat/index.txt,sha256=GYUh5yqWZucclRq2-C0RhU3o88VHKuj7Kl7FnQ081NY,7325
|
272
272
|
khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
|
273
273
|
khoj/interface/email/magic_link.html,sha256=EoGKQucfPj3xQrWXhSZAzPFOYCHF_ZX94TWCd1XHl1M,941
|
274
274
|
khoj/interface/email/task.html,sha256=tY7a0gzVeQ2lSQNu7WyXR_s7VYeWTrxWEj1iHVuoVE4,2813
|
@@ -323,17 +323,17 @@ khoj/processor/conversation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
323
323
|
khoj/processor/conversation/prompts.py,sha256=KLGjz1745IChHxtznxevEnh2VAolrJDa-cp6v_OwL0k,49981
|
324
324
|
khoj/processor/conversation/utils.py,sha256=OeNX6QO1i22sl_7gL-5uCqQ3MMt1EhoZT5OfPwGcCCU,30311
|
325
325
|
khoj/processor/conversation/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
326
|
-
khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=
|
326
|
+
khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=AWniFa1tRGzU2aXsMmEA5h3DshCDi5inna1HS_ejjcs,8696
|
327
327
|
khoj/processor/conversation/anthropic/utils.py,sha256=En5uBBsxDBWb6QTs5g8nH_f2FVBX1uYK40i13fDRAhc,7327
|
328
328
|
khoj/processor/conversation/google/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
329
|
-
khoj/processor/conversation/google/gemini_chat.py,sha256=
|
329
|
+
khoj/processor/conversation/google/gemini_chat.py,sha256=6b2oTjf1cBbVla2iUVXqjVpNQLYKtqNIBPaoStUhmis,8897
|
330
330
|
khoj/processor/conversation/google/utils.py,sha256=2vV7MNXFhJqBut5iMmQwcfvsqL_AkGoEd4XiViCk51s,10851
|
331
331
|
khoj/processor/conversation/offline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
332
|
-
khoj/processor/conversation/offline/chat_model.py,sha256=
|
332
|
+
khoj/processor/conversation/offline/chat_model.py,sha256=NTsZOnagy6mjitj5wtgBk3OwqG4uhmTZ0uwv_xHKwz8,11058
|
333
333
|
khoj/processor/conversation/offline/utils.py,sha256=51McImxl6u1qgRYvMt7uzsgLGSLq5SMFy74ymlNjIcc,3033
|
334
334
|
khoj/processor/conversation/offline/whisper.py,sha256=DJI-8y8DULO2cQ49m2VOvRyIZ2TxBypc15gM8O3HuMI,470
|
335
335
|
khoj/processor/conversation/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
336
|
-
khoj/processor/conversation/openai/gpt.py,sha256=
|
336
|
+
khoj/processor/conversation/openai/gpt.py,sha256=Hs188lv2_bNyrwTL2s3lCkRWeNgNR8Oqx-myg356_VY,8193
|
337
337
|
khoj/processor/conversation/openai/utils.py,sha256=7EjpsqqU_Y47q8hXm-9GSkVhukBzMJpTiz9o47UrDLk,7590
|
338
338
|
khoj/processor/conversation/openai/whisper.py,sha256=zoEeK1LNCg_tzP4xzYi5vRPzNPGuDGzpkrkG7d1LUn4,447
|
339
339
|
khoj/processor/image/generate.py,sha256=i5J51AwlMZbdlHHov-_MAw9bYgdVYmGgFjCYWDfx02s,9120
|
@@ -352,7 +352,7 @@ khoj/routers/api_phone.py,sha256=p9yfc4WeMHDC0hg3aQk60a2VBy8rZPdEnz9wdJ7DzkU,220
|
|
352
352
|
khoj/routers/api_subscription.py,sha256=qnbKwA6N1TWK8Aiu1FFLka_JhbPOuwqT262NSHGZDiQ,5569
|
353
353
|
khoj/routers/auth.py,sha256=kWPB2McwT6z4rGF6mWl92Q7ToRX-XezBPFefdxqQUk4,6579
|
354
354
|
khoj/routers/email.py,sha256=SGYNPQvfcvYeHf70F0YqpY0FLMRElF2ZekROXdwGI18,3821
|
355
|
-
khoj/routers/helpers.py,sha256=
|
355
|
+
khoj/routers/helpers.py,sha256=92X4p9JhvpVOShfzjmxwksGc4fgdIx7ZOar-TEZNLSY,82386
|
356
356
|
khoj/routers/notion.py,sha256=g53xyYFmjr2JnuIrTW2vytbfkiK_UkoRTxqnnLSmD5o,2802
|
357
357
|
khoj/routers/research.py,sha256=KjUuo-rwtSqUX-0BYjXgP6cWeH3xazffwtxfxKXZL00,16083
|
358
358
|
khoj/routers/storage.py,sha256=tJrwhFRVWv0MHv7V7huMc1Diwm-putZSwnZXJ3tqT_c,2338
|
@@ -377,8 +377,8 @@ khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
|
|
377
377
|
khoj/utils/rawconfig.py,sha256=bQ_MGbBzYt6ZUIsHUwZjaHKDLh6GQ7h-sENkv3fyVbQ,5028
|
378
378
|
khoj/utils/state.py,sha256=axjZhnby8L3bY-N1VVoWgBH1RpFGK6U3_ZeNo1Kt7hs,1679
|
379
379
|
khoj/utils/yaml.py,sha256=qy1Tkc61rDMesBw_Cyx2vOR6H-Hngcsm5kYfjwQBwkE,1543
|
380
|
-
khoj-1.30.
|
381
|
-
khoj-1.30.
|
382
|
-
khoj-1.30.
|
383
|
-
khoj-1.30.
|
384
|
-
khoj-1.30.
|
380
|
+
khoj-1.30.9.dist-info/METADATA,sha256=MTs0-MJ6f6dPF7G4ozCb8xcelbKpbK6dOvDEd6Ymht0,7525
|
381
|
+
khoj-1.30.9.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
382
|
+
khoj-1.30.9.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
383
|
+
khoj-1.30.9.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
384
|
+
khoj-1.30.9.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[244,8459,3317,7138],{63521:function(){}},function(n){n.O(0,[2971,7023,1744],function(){return n(n.s=63521)}),_N_E=n.O()}]);
|
@@ -1 +0,0 @@
|
|
1
|
-
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[7138,8459,3317,244],{63521:function(){}},function(n){n.O(0,[2971,7023,1744],function(){return n(n.s=63521)}),_N_E=n.O()}]);
|
@@ -1 +0,0 @@
|
|
1
|
-
div.chat_main__8xQu5{height:100dvh;color:hsla(var(--foreground))}.chat_suggestions__m8n2t{display:flex;overflow-x:none;height:50%;padding:10px;white-space:nowrap;gap:1rem}div.chat_inputBox__LOFws{border:1px solid var(--border-color);margin-bottom:20px;gap:12px;align-content:center}input.chat_inputBox__LOFws{border:none}input.chat_inputBox__LOFws:focus{outline:none;background-color:transparent}div.chat_inputBox__LOFws:focus{box-shadow:0 8px 16px 0 rgba(0,0,0,.2)}div.chat_chatBodyFull__FfKEK{display:grid;grid-template-columns:1fr;height:100%}button.chat_inputBox__LOFws{border:none;outline:none;background-color:transparent;cursor:pointer;border-radius:.5rem;padding:.5rem;background:linear-gradient(var(--calm-green),var(--calm-blue))}div.chat_chatBody__sS1LX{display:grid;grid-template-columns:1fr 1fr;height:100%}.chat_inputBox__LOFws{color:hsla(var(--foreground))}div.chat_chatLayout__pR203{display:grid;grid-template-columns:auto 1fr;gap:1rem}div.chat_chatBox__FBct_{display:grid;height:100%}div.chat_titleBar__R5QlK{display:grid;grid-template-columns:1fr auto}div.chat_chatBoxBody__qT_SC{display:grid;height:100%;width:95%;margin:auto}div.chat_agentIndicator__8V55w a{display:flex;text-align:center;align-content:center;align-items:center}div.chat_agentIndicator__8V55w{padding:10px}div.chat_chatTitleWrapper__6ChWq{grid-template-columns:1fr auto}@media screen and (max-width:768px){div.chat_inputBox__LOFws{margin-bottom:0}div.chat_chatBoxBody__qT_SC{width:100%}div.chat_chatBody__sS1LX{grid-template-columns:0fr 1fr}div.chat_chatBox__FBct_{padding:0;height:100%}div.chat_chatLayout__pR203{gap:0;grid-template-columns:1fr}}
|
@@ -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%;margin: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;word-break:break-word}div.chatMessage_chatMessageWrapper__u5m8A{padding-left:1rem;padding-bottom:1rem;max-width:80vw}div.chatMessage_chatMessageWrapper__u5m8A ol,div.chatMessage_chatMessageWrapper__u5m8A p:not(:last-child),div.chatMessage_chatMessageWrapper__u5m8A ul{margin-bottom:16px}div.chatMessage_chatMessageWrapper__u5m8A a span{display:revert!important}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_emptyChatMessage__J9JRn{display:none}div.chatMessage_imagesContainer__HTRjT{display:flex;overflow-x:auto;padding-bottom:8px;margin-bottom:8px}div.chatMessage_imageWrapper__DF92M{flex:0 0 auto;margin-right:8px}div.chatMessage_imageWrapper__DF92M img{width:auto;height:128px;-o-object-fit:cover;object-fit:cover;border-radius:8px}div.chatMessage_chatMessageContainer__sAivf>img{width:auto;height:auto;max-width:100%;max-height:80vh;-o-object-fit:contain;object-fit:contain;display:block;margin-top:.25rem;margin-right:auto}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;align-items:start}div.chatMessage_trainOfThoughtElement__le_bC ol,div.chatMessage_trainOfThoughtElement__le_bC ul{margin:auto;word-break:break-word}@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}.agentCard_agentPersonality__MmRlN p{white-space:inherit;overflow:hidden;height:77px;line-height:1.5}div.agentCard_agentPersonality__MmRlN{text-align:left;grid-column:span 3;overflow:hidden}button.agentCard_infoButton__heh_w{border:none;background-color:transparent!important;text-align:left;font-family:inherit;font-size:medium}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
|
File without changes
|
File without changes
|
File without changes
|