khoj 1.21.7.dev6__py3-none-any.whl → 1.21.7.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/interface/compiled/404/index.html +1 -1
- khoj/interface/compiled/_next/static/chunks/{webpack-07fad5db87344b82.js → webpack-ace3bded0dbc790e.js} +1 -1
- khoj/interface/compiled/agents/index.html +1 -1
- khoj/interface/compiled/agents/index.txt +1 -1
- 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 +1 -1
- khoj/interface/compiled/factchecker/index.html +1 -1
- khoj/interface/compiled/factchecker/index.txt +1 -1
- khoj/interface/compiled/index.html +1 -1
- khoj/interface/compiled/index.txt +1 -1
- khoj/interface/compiled/search/index.html +1 -1
- khoj/interface/compiled/search/index.txt +1 -1
- 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 +1 -1
- khoj/processor/conversation/anthropic/anthropic_chat.py +2 -1
- khoj/processor/conversation/offline/chat_model.py +7 -2
- khoj/processor/conversation/openai/gpt.py +21 -12
- khoj/processor/conversation/utils.py +16 -10
- khoj/routers/api.py +4 -0
- khoj/routers/api_chat.py +1 -0
- khoj/routers/helpers.py +7 -1
- {khoj-1.21.7.dev6.dist-info → khoj-1.21.7.dev9.dist-info}/METADATA +1 -1
- {khoj-1.21.7.dev6.dist-info → khoj-1.21.7.dev9.dist-info}/RECORD +32 -32
- /khoj/interface/compiled/_next/static/{IFgQ9YOS_lUMnLw-CPszn → H0UFtmg6K0M551qJgG7xW}/_buildManifest.js +0 -0
- /khoj/interface/compiled/_next/static/{IFgQ9YOS_lUMnLw-CPszn → H0UFtmg6K0M551qJgG7xW}/_ssgManifest.js +0 -0
- {khoj-1.21.7.dev6.dist-info → khoj-1.21.7.dev9.dist-info}/WHEEL +0 -0
- {khoj-1.21.7.dev6.dist-info → khoj-1.21.7.dev9.dist-info}/entry_points.txt +0 -0
- {khoj-1.21.7.dev6.dist-info → khoj-1.21.7.dev9.dist-info}/licenses/LICENSE +0 -0
khoj/routers/helpers.py
CHANGED
|
@@ -330,7 +330,7 @@ async def aget_relevant_output_modes(
|
|
|
330
330
|
chat_history = construct_chat_history(conversation_history)
|
|
331
331
|
|
|
332
332
|
if uploaded_image_url:
|
|
333
|
-
query = f"
|
|
333
|
+
query = f"<user uploaded content redacted> \n{query}"
|
|
334
334
|
|
|
335
335
|
relevant_mode_prompt = prompts.pick_relevant_output_mode.format(
|
|
336
336
|
query=query,
|
|
@@ -622,6 +622,7 @@ async def send_message_to_model_wrapper(
|
|
|
622
622
|
tokenizer_name=tokenizer,
|
|
623
623
|
max_prompt_size=max_tokens,
|
|
624
624
|
vision_enabled=vision_available,
|
|
625
|
+
model_type=conversation_config.model_type,
|
|
625
626
|
)
|
|
626
627
|
|
|
627
628
|
return send_message_to_model_offline(
|
|
@@ -644,6 +645,7 @@ async def send_message_to_model_wrapper(
|
|
|
644
645
|
tokenizer_name=tokenizer,
|
|
645
646
|
vision_enabled=vision_available,
|
|
646
647
|
uploaded_image_url=uploaded_image_url,
|
|
648
|
+
model_type=conversation_config.model_type,
|
|
647
649
|
)
|
|
648
650
|
|
|
649
651
|
openai_response = send_message_to_model(
|
|
@@ -664,6 +666,7 @@ async def send_message_to_model_wrapper(
|
|
|
664
666
|
max_prompt_size=max_tokens,
|
|
665
667
|
tokenizer_name=tokenizer,
|
|
666
668
|
vision_enabled=vision_available,
|
|
669
|
+
model_type=conversation_config.model_type,
|
|
667
670
|
)
|
|
668
671
|
|
|
669
672
|
return anthropic_send_message_to_model(
|
|
@@ -700,6 +703,7 @@ def send_message_to_model_wrapper_sync(
|
|
|
700
703
|
model_name=chat_model,
|
|
701
704
|
loaded_model=loaded_model,
|
|
702
705
|
vision_enabled=vision_available,
|
|
706
|
+
model_type=conversation_config.model_type,
|
|
703
707
|
)
|
|
704
708
|
|
|
705
709
|
return send_message_to_model_offline(
|
|
@@ -717,6 +721,7 @@ def send_message_to_model_wrapper_sync(
|
|
|
717
721
|
system_message=system_message,
|
|
718
722
|
model_name=chat_model,
|
|
719
723
|
vision_enabled=vision_available,
|
|
724
|
+
model_type=conversation_config.model_type,
|
|
720
725
|
)
|
|
721
726
|
|
|
722
727
|
openai_response = send_message_to_model(
|
|
@@ -733,6 +738,7 @@ def send_message_to_model_wrapper_sync(
|
|
|
733
738
|
model_name=chat_model,
|
|
734
739
|
max_prompt_size=max_tokens,
|
|
735
740
|
vision_enabled=vision_available,
|
|
741
|
+
model_type=conversation_config.model_type,
|
|
736
742
|
)
|
|
737
743
|
|
|
738
744
|
return anthropic_send_message_to_model(
|
|
@@ -95,17 +95,17 @@ khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvt
|
|
|
95
95
|
khoj/interface/compiled/close.svg,sha256=hQ2iFLkNzHk0_iyTrSbwnWAeXYlgA-c2Eof2Iqh76n4,417
|
|
96
96
|
khoj/interface/compiled/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
|
|
97
97
|
khoj/interface/compiled/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
|
|
98
|
-
khoj/interface/compiled/index.html,sha256=
|
|
99
|
-
khoj/interface/compiled/index.txt,sha256=
|
|
98
|
+
khoj/interface/compiled/index.html,sha256=0-aDGE8W0f7IFlzlMiI9GAs4ESmdYojSSRdSCtiBTEM,11936
|
|
99
|
+
khoj/interface/compiled/index.txt,sha256=ChFdHzxgBVXsypyFAzNptViIBbR-56hv8We_qFdcP5U,5527
|
|
100
100
|
khoj/interface/compiled/khoj.webmanifest,sha256=lsknYkvEdMbRTOUYKXPM_8krN2gamJmM4u3qj8u9lrU,1682
|
|
101
101
|
khoj/interface/compiled/logo.svg,sha256=_QCKVYM4WT2Qhcf7aVFImjq_s5CwjynGXYAOgI7yf8w,8059
|
|
102
102
|
khoj/interface/compiled/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
|
|
103
103
|
khoj/interface/compiled/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
|
|
104
104
|
khoj/interface/compiled/thumbs-down.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
|
|
105
105
|
khoj/interface/compiled/thumbs-up.svg,sha256=yS1wxTRtiztkN-6nZciLoYQUB_KTYNPV8xFRwH2TQFw,1036
|
|
106
|
-
khoj/interface/compiled/404/index.html,sha256=
|
|
107
|
-
khoj/interface/compiled/_next/static/
|
|
108
|
-
khoj/interface/compiled/_next/static/
|
|
106
|
+
khoj/interface/compiled/404/index.html,sha256=A_agf2b9O4LplCjKV-JSWywQx6JK026_dL-EheT7RDk,11971
|
|
107
|
+
khoj/interface/compiled/_next/static/H0UFtmg6K0M551qJgG7xW/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
|
|
108
|
+
khoj/interface/compiled/_next/static/H0UFtmg6K0M551qJgG7xW/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
109
109
|
khoj/interface/compiled/_next/static/chunks/1603-fb2d80ae73990df3.js,sha256=CCbOXifiixbhMf7lgTG96225tP1Pou72Wb0Zh6KC1Rs,71007
|
|
110
110
|
khoj/interface/compiled/_next/static/chunks/2614-7cf01576d4457a75.js,sha256=aUjhjyxNPrZr4bLKzGkGgHH8K4J6g9dfiRjabnmvSDc,1104737
|
|
111
111
|
khoj/interface/compiled/_next/static/chunks/3062-9be9a4e34f82ed3a.js,sha256=-CDtDYpliJ2q_0ADcmVkW6rG8KREiU9QY8uDULIgAmA,256214
|
|
@@ -128,7 +128,7 @@ khoj/interface/compiled/_next/static/chunks/framework-8e0e0f4a6b83a956.js,sha256
|
|
|
128
128
|
khoj/interface/compiled/_next/static/chunks/main-175c164f5e0f026c.js,sha256=hlUnjERudON4V4kUKprrFz1e9JRtSp4A9i7vnM-1bzA,110324
|
|
129
129
|
khoj/interface/compiled/_next/static/chunks/main-app-6d6ee3495efe03d4.js,sha256=i52E7sWOcSq1G8eYZL3mtTxbUbwRNxcAbSWQ6uWpMsY,475
|
|
130
130
|
khoj/interface/compiled/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
|
131
|
-
khoj/interface/compiled/_next/static/chunks/webpack-
|
|
131
|
+
khoj/interface/compiled/_next/static/chunks/webpack-ace3bded0dbc790e.js,sha256=ugTXYuOOO--WF0R2ktNULpdEBvcHQCiw7ue1MuxAd3w,3724
|
|
132
132
|
khoj/interface/compiled/_next/static/chunks/app/layout-f3e40d346da53112.js,sha256=nekGSUVbvB81OfqGgJa2UoDmbxPhNwFwtc4o11O_1jI,442
|
|
133
133
|
khoj/interface/compiled/_next/static/chunks/app/page-8f61b4bd2032384a.js,sha256=DkukCV-Vs6cycQBDTRVWr8F8reZOd0nHyTF4E0VnXi4,28700
|
|
134
134
|
khoj/interface/compiled/_next/static/chunks/app/_not-found/page-07ff4ab42b07845e.js,sha256=3mCUnxfMxyK44eqk21TVBrC6u--WSbvx31fTmQuOvMQ,1755
|
|
@@ -229,8 +229,8 @@ khoj/interface/compiled/_next/static/media/flags.3afdda2f.webp,sha256=M2AW_HLpBn
|
|
|
229
229
|
khoj/interface/compiled/_next/static/media/flags@2x.5fbe9fc1.webp,sha256=BBeRPBZkxY3-aKkMnYv5TSkxmbeMbyUH4VRIPfrWg1E,137406
|
|
230
230
|
khoj/interface/compiled/_next/static/media/globe.98e105ca.webp,sha256=g3ofb8-W9GM75zIhlvQhaS8I2py9TtrovOKR3_7Jf04,514
|
|
231
231
|
khoj/interface/compiled/_next/static/media/globe@2x.974df6f8.webp,sha256=I_N7Yke3IOoS-0CC6XD8o0IUWG8PdPbrHmf6lpgWlZY,1380
|
|
232
|
-
khoj/interface/compiled/agents/index.html,sha256=
|
|
233
|
-
khoj/interface/compiled/agents/index.txt,sha256=
|
|
232
|
+
khoj/interface/compiled/agents/index.html,sha256=Y1FMYjRDwQCxxPhgyihxdQejjVYqm29BiiAEgbv8xxw,12723
|
|
233
|
+
khoj/interface/compiled/agents/index.txt,sha256=oAS7hA0wNFjw0r9eZKiCKhL9rptOw1VHAhKOANAlI2M,6087
|
|
234
234
|
khoj/interface/compiled/assets/icons/khoj_lantern.ico,sha256=eggu-B_v3z1R53EjOFhIqqPnICBGdoaw1xnc0NrzHck,174144
|
|
235
235
|
khoj/interface/compiled/assets/icons/khoj_lantern_128x128.png,sha256=aTxivDb3CYyThkVZWz8A19xl_dNut5DbkXhODWF3A9Q,5640
|
|
236
236
|
khoj/interface/compiled/assets/icons/khoj_lantern_256x256.png,sha256=xPCMLHiaL7lYOdQLZrKwWE-Qjn5ZaysSZB0ScYv4UZU,12312
|
|
@@ -241,18 +241,18 @@ khoj/interface/compiled/assets/samples/desktop-remember-plan-sample.png,sha256=i
|
|
|
241
241
|
khoj/interface/compiled/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
|
|
242
242
|
khoj/interface/compiled/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
|
|
243
243
|
khoj/interface/compiled/assets/samples/phone-remember-plan-sample.png,sha256=Ma3blirRmq3X4oYSsDbbT7MDn29rymDrjwmUfA9BMuM,236285
|
|
244
|
-
khoj/interface/compiled/automations/index.html,sha256=
|
|
245
|
-
khoj/interface/compiled/automations/index.txt,sha256=
|
|
246
|
-
khoj/interface/compiled/chat/index.html,sha256=
|
|
247
|
-
khoj/interface/compiled/chat/index.txt,sha256=
|
|
248
|
-
khoj/interface/compiled/factchecker/index.html,sha256=
|
|
249
|
-
khoj/interface/compiled/factchecker/index.txt,sha256=
|
|
250
|
-
khoj/interface/compiled/search/index.html,sha256=
|
|
251
|
-
khoj/interface/compiled/search/index.txt,sha256=
|
|
252
|
-
khoj/interface/compiled/settings/index.html,sha256=
|
|
253
|
-
khoj/interface/compiled/settings/index.txt,sha256=
|
|
254
|
-
khoj/interface/compiled/share/chat/index.html,sha256=
|
|
255
|
-
khoj/interface/compiled/share/chat/index.txt,sha256=
|
|
244
|
+
khoj/interface/compiled/automations/index.html,sha256=K-C5x3EXXFe4dHaNeSyKcDogzKez14-I_xkSoWlSldM,30524
|
|
245
|
+
khoj/interface/compiled/automations/index.txt,sha256=Z32mWX6wxF6NiVHnxXGRYxavQaSFkOGrVlUZMCQv9_U,5459
|
|
246
|
+
khoj/interface/compiled/chat/index.html,sha256=VqCWvd3Zuj9YKSP3cvedV6FWA6Qsejbk056VDKPMNe8,13614
|
|
247
|
+
khoj/interface/compiled/chat/index.txt,sha256=ZBIBs_6G4K9ZZCLoYqp3guxxMxNASWeUfIjvPugpD0s,6445
|
|
248
|
+
khoj/interface/compiled/factchecker/index.html,sha256=PLOrEnRnTjIABhj6X9EA5qu4lMboXZHc0QJA0MBysY4,29863
|
|
249
|
+
khoj/interface/compiled/factchecker/index.txt,sha256=n5D9X65Ty1tefvh5L-f83qsmVIWpujNS4YH4o-nyzqE,5747
|
|
250
|
+
khoj/interface/compiled/search/index.html,sha256=rK3qeUXz94VNu8DanKZEwhwAUbixlTYNNMPTGBp-eAs,30178
|
|
251
|
+
khoj/interface/compiled/search/index.txt,sha256=7pkZB3cZ7mjkRlad-2yroQ03HJwvbWFgUOvm7gUQFDw,5261
|
|
252
|
+
khoj/interface/compiled/settings/index.html,sha256=ds7qoztWOrANNBKz_YgjrxnA4hJHPlKzFAmykaCLgwk,12851
|
|
253
|
+
khoj/interface/compiled/settings/index.txt,sha256=LlFCs3rTm-sRQCMDqZS1rMxJ-McBNlP-yGWeOyYEOVM,6085
|
|
254
|
+
khoj/interface/compiled/share/chat/index.html,sha256=SHgNkFaZ8hgflSl-luIXnlDbk1JcT1vDVdNhLy75fxA,14944
|
|
255
|
+
khoj/interface/compiled/share/chat/index.txt,sha256=KiHt77EqpL1VW2885CBDjhG90al4Q2sQceEgR8gg8gs,7263
|
|
256
256
|
khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
|
|
257
257
|
khoj/interface/email/magic_link.html,sha256=jXY_2hD3o15Ns5UDzbjLT8FHBnZiS7jo38YkYXIS-4w,947
|
|
258
258
|
khoj/interface/email/task.html,sha256=yXywzC-5P4nXbhqvgCmwcCpTRbD5eWuDXMpgYSotztM,3311
|
|
@@ -304,16 +304,16 @@ khoj/processor/content/plaintext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
|
304
304
|
khoj/processor/content/plaintext/plaintext_to_entries.py,sha256=97i7Cm0DTY7jW4iqKOT_oVc2ooa_XhQ8iImsljp1Kek,4994
|
|
305
305
|
khoj/processor/conversation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
306
|
khoj/processor/conversation/prompts.py,sha256=75XbUfcN0KroSjL4r-LCFVYCbG9k-aM9s4cDNzR-I7Y,33683
|
|
307
|
-
khoj/processor/conversation/utils.py,sha256=
|
|
307
|
+
khoj/processor/conversation/utils.py,sha256=EqIiUxXA0TlN5sHe9V-Ld6aIfsiiHKrjM6rJhxV82RY,11438
|
|
308
308
|
khoj/processor/conversation/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
309
|
-
khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=
|
|
309
|
+
khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=3EVZQmeucWSoBqRjwuCRJK-q2UYmvLvVsSZs_HCmg_Y,8183
|
|
310
310
|
khoj/processor/conversation/anthropic/utils.py,sha256=GHCz-xll_DBipqSc5e5qdVhLQiKX5Kso3KQRf1BXbVA,3456
|
|
311
311
|
khoj/processor/conversation/offline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
312
|
-
khoj/processor/conversation/offline/chat_model.py,sha256=
|
|
312
|
+
khoj/processor/conversation/offline/chat_model.py,sha256=RjTwpndueYjsWYDWs39bSs-2mQbFvNLl5dcsvK9hqVU,9770
|
|
313
313
|
khoj/processor/conversation/offline/utils.py,sha256=51McImxl6u1qgRYvMt7uzsgLGSLq5SMFy74ymlNjIcc,3033
|
|
314
314
|
khoj/processor/conversation/offline/whisper.py,sha256=DJI-8y8DULO2cQ49m2VOvRyIZ2TxBypc15gM8O3HuMI,470
|
|
315
315
|
khoj/processor/conversation/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
316
|
-
khoj/processor/conversation/openai/gpt.py,sha256=
|
|
316
|
+
khoj/processor/conversation/openai/gpt.py,sha256=ZAojADjDQZGodmUVheVJGxq1xAWXFNdLxdmDeeCfaco,7781
|
|
317
317
|
khoj/processor/conversation/openai/utils.py,sha256=vyFEIfBWMCxx3Nh3lM94SRUR7PLlHJmGTPWrq0YqRgU,4409
|
|
318
318
|
khoj/processor/conversation/openai/whisper.py,sha256=RuwDtxSJrVWYdZz4aVnk0XiMQy9w8W9lFcVfE0hMiFY,432
|
|
319
319
|
khoj/processor/speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -321,15 +321,15 @@ khoj/processor/speech/text_to_speech.py,sha256=Q7sapi5Hv6woXOumtrGqR0t6izZrFBkWX
|
|
|
321
321
|
khoj/processor/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
322
322
|
khoj/processor/tools/online_search.py,sha256=KE8Xq_HXmo7NzoZlHOpCTKpGHIGloYpoqA--_1hRzTM,10040
|
|
323
323
|
khoj/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
|
-
khoj/routers/api.py,sha256=
|
|
324
|
+
khoj/routers/api.py,sha256=1KM1tRv7Oi7kn5YkZgHiVCsnWez9Bfpww7RzuxDVKc8,25822
|
|
325
325
|
khoj/routers/api_agents.py,sha256=ks8QzjmZiio6j1QGi6xFtDmVxd9lvC6LPB-WcDPnF8o,1525
|
|
326
|
-
khoj/routers/api_chat.py,sha256=
|
|
326
|
+
khoj/routers/api_chat.py,sha256=IpHLeWECop1QRKeLAbZiz9HBk2GaLTsp8nlps3uxIQk,37706
|
|
327
327
|
khoj/routers/api_content.py,sha256=E-Y6G2V14EdxN5rnisQKVINuBuItSZfLiiXpC9E9yTA,17387
|
|
328
328
|
khoj/routers/api_model.py,sha256=5m7JWwgd9jILiLivRu7NEyY2E-tUkqoEkGg6j6uM1g0,4646
|
|
329
329
|
khoj/routers/api_phone.py,sha256=p9yfc4WeMHDC0hg3aQk60a2VBy8rZPdEnz9wdJ7DzkU,2208
|
|
330
330
|
khoj/routers/auth.py,sha256=pCOLSRihJWcn097DRPxLjPdlejsjHJFRs9jHIzLujZU,6247
|
|
331
331
|
khoj/routers/email.py,sha256=jA4jDTrYHUpY7mFHL4himeRlTBLRQmQKHqC91Dw1Zu0,3730
|
|
332
|
-
khoj/routers/helpers.py,sha256=
|
|
332
|
+
khoj/routers/helpers.py,sha256=ROXautoKCNL-5cWBc4pFiCQLdvAZNOoOfLbuKBo1x0I,66809
|
|
333
333
|
khoj/routers/notion.py,sha256=0iG_DPVjg8n_LBWGHA8M6eHnJJDL-isARSEHTYStz6c,2809
|
|
334
334
|
khoj/routers/storage.py,sha256=tJrwhFRVWv0MHv7V7huMc1Diwm-putZSwnZXJ3tqT_c,2338
|
|
335
335
|
khoj/routers/subscription.py,sha256=qEyV7m7mrY6MGtaij8W3v61tpzX2a7ydm2B-E8h_R-M,4285
|
|
@@ -354,8 +354,8 @@ khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
|
|
|
354
354
|
khoj/utils/rawconfig.py,sha256=BKicp6kEBax7h76YRYgyFAUpfWHAI5m9ZJ2HVqyh45Y,3983
|
|
355
355
|
khoj/utils/state.py,sha256=x4GTewP1YhOA6c_32N4wOjnV-3AA3xG_qbY1-wC2Uxc,1559
|
|
356
356
|
khoj/utils/yaml.py,sha256=H0mfw0ZvBFUvFmCQn8pWkfxdmIebsrSykza7D8Wv6wQ,1430
|
|
357
|
-
khoj-1.21.7.
|
|
358
|
-
khoj-1.21.7.
|
|
359
|
-
khoj-1.21.7.
|
|
360
|
-
khoj-1.21.7.
|
|
361
|
-
khoj-1.21.7.
|
|
357
|
+
khoj-1.21.7.dev9.dist-info/METADATA,sha256=QqksPMGCF2z1vziC3jRY8CLtzGfbOvvlTLK8zczrkZc,6875
|
|
358
|
+
khoj-1.21.7.dev9.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
359
|
+
khoj-1.21.7.dev9.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
|
360
|
+
khoj-1.21.7.dev9.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
361
|
+
khoj-1.21.7.dev9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|