khoj 1.20.5.dev18__py3-none-any.whl → 1.21.0__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.
Files changed (35) hide show
  1. khoj/database/migrations/0058_alter_chatmodeloptions_chat_model.py +17 -0
  2. khoj/database/models/__init__.py +1 -1
  3. khoj/interface/compiled/404/index.html +1 -1
  4. khoj/interface/compiled/_next/static/chunks/{9178-b9ab3fa2e9be8287.js → 9178-089b3c2697321301.js} +1 -1
  5. khoj/interface/compiled/agents/index.html +1 -1
  6. khoj/interface/compiled/agents/index.txt +1 -1
  7. khoj/interface/compiled/automations/index.html +1 -1
  8. khoj/interface/compiled/automations/index.txt +1 -1
  9. khoj/interface/compiled/chat/index.html +1 -1
  10. khoj/interface/compiled/chat/index.txt +2 -2
  11. khoj/interface/compiled/factchecker/index.html +1 -1
  12. khoj/interface/compiled/factchecker/index.txt +2 -2
  13. khoj/interface/compiled/index.html +1 -1
  14. khoj/interface/compiled/index.txt +1 -1
  15. khoj/interface/compiled/search/index.html +1 -1
  16. khoj/interface/compiled/search/index.txt +1 -1
  17. khoj/interface/compiled/settings/index.html +1 -1
  18. khoj/interface/compiled/settings/index.txt +1 -1
  19. khoj/interface/compiled/share/chat/index.html +1 -1
  20. khoj/interface/compiled/share/chat/index.txt +2 -2
  21. khoj/processor/conversation/offline/chat_model.py +6 -3
  22. khoj/processor/conversation/offline/utils.py +1 -1
  23. khoj/processor/conversation/prompts.py +1 -1
  24. khoj/processor/conversation/utils.py +1 -0
  25. khoj/routers/helpers.py +6 -0
  26. khoj/utils/config.py +1 -1
  27. khoj/utils/constants.py +1 -1
  28. khoj/utils/rawconfig.py +1 -1
  29. {khoj-1.20.5.dev18.dist-info → khoj-1.21.0.dist-info}/METADATA +2 -2
  30. {khoj-1.20.5.dev18.dist-info → khoj-1.21.0.dist-info}/RECORD +35 -34
  31. /khoj/interface/compiled/_next/static/{StJQhDfsnRaHEWnrxvjj3 → GS4lmkBaKYPeQ6V0rQkWo}/_buildManifest.js +0 -0
  32. /khoj/interface/compiled/_next/static/{StJQhDfsnRaHEWnrxvjj3 → GS4lmkBaKYPeQ6V0rQkWo}/_ssgManifest.js +0 -0
  33. {khoj-1.20.5.dev18.dist-info → khoj-1.21.0.dist-info}/WHEEL +0 -0
  34. {khoj-1.20.5.dev18.dist-info → khoj-1.21.0.dist-info}/entry_points.txt +0 -0
  35. {khoj-1.20.5.dev18.dist-info → khoj-1.21.0.dist-info}/licenses/LICENSE +0 -0
@@ -25,6 +25,7 @@ model_to_prompt_size = {
25
25
  "gpt-4-turbo-preview": 20000,
26
26
  "TheBloke/Mistral-7B-Instruct-v0.2-GGUF": 3500,
27
27
  "NousResearch/Hermes-2-Pro-Mistral-7B-GGUF": 3500,
28
+ "bartowski/Meta-Llama-3.1-8B-Instruct-GGUF": 20000,
28
29
  }
29
30
  model_to_tokenizer: Dict[str, str] = {}
30
31
 
khoj/routers/helpers.py CHANGED
@@ -279,6 +279,9 @@ async def aget_relevant_information_sources(query: str, conversation_history: di
279
279
 
280
280
  try:
281
281
  response = response.strip()
282
+ # Remove any markdown json codeblock formatting if present (useful for gemma-2)
283
+ if response.startswith("```json"):
284
+ response = response[7:-3]
282
285
  response = json.loads(response)
283
286
  response = [q.strip() for q in response["source"] if q.strip()]
284
287
  if not isinstance(response, list) or not response or len(response) == 0:
@@ -401,6 +404,9 @@ async def generate_online_subqueries(
401
404
  # Validate that the response is a non-empty, JSON-serializable list
402
405
  try:
403
406
  response = response.strip()
407
+ # Remove any markdown json codeblock formatting if present (useful for gemma-2)
408
+ if response.startswith("```json") and response.endswith("```"):
409
+ response = response[7:-3]
404
410
  response = json.loads(response)
405
411
  response = [q.strip() for q in response["queries"] if q.strip()]
406
412
  if not isinstance(response, list) or not response or len(response) == 0:
khoj/utils/config.py CHANGED
@@ -70,7 +70,7 @@ class OfflineChatProcessorConfig:
70
70
 
71
71
 
72
72
  class OfflineChatProcessorModel:
73
- def __init__(self, chat_model: str = "NousResearch/Hermes-2-Pro-Mistral-7B-GGUF", max_tokens: int = None):
73
+ def __init__(self, chat_model: str = "bartowski/Meta-Llama-3.1-8B-Instruct-GGUF", max_tokens: int = None):
74
74
  self.chat_model = chat_model
75
75
  self.loaded_model = None
76
76
  try:
khoj/utils/constants.py CHANGED
@@ -8,7 +8,7 @@ empty_escape_sequences = "\n|\r|\t| "
8
8
  app_env_filepath = "~/.khoj/env"
9
9
  telemetry_server = "https://khoj.beta.haletic.com/v1/telemetry"
10
10
  content_directory = "~/.khoj/content/"
11
- default_offline_chat_model = "NousResearch/Hermes-2-Pro-Mistral-7B-GGUF"
11
+ default_offline_chat_model = "bartowski/Meta-Llama-3.1-8B-Instruct-GGUF"
12
12
  default_online_chat_model = "gpt-4-turbo-preview"
13
13
 
14
14
  empty_config = {
khoj/utils/rawconfig.py CHANGED
@@ -93,7 +93,7 @@ class OpenAIProcessorConfig(ConfigBase):
93
93
 
94
94
 
95
95
  class OfflineChatProcessorConfig(ConfigBase):
96
- chat_model: Optional[str] = "NousResearch/Hermes-2-Pro-Mistral-7B-GGUF"
96
+ chat_model: Optional[str] = "bartowski/Meta-Llama-3.1-8B-Instruct-GGUF"
97
97
 
98
98
 
99
99
  class ConversationProcessorConfig(ConfigBase):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: khoj
3
- Version: 1.20.5.dev18
3
+ Version: 1.21.0
4
4
  Summary: Your Second Brain
5
5
  Project-URL: Homepage, https://khoj.dev
6
6
  Project-URL: Documentation, https://docs.khoj.dev
@@ -43,7 +43,7 @@ Requires-Dist: jinja2==3.1.4
43
43
  Requires-Dist: langchain-community==0.2.5
44
44
  Requires-Dist: langchain-openai==0.1.7
45
45
  Requires-Dist: langchain==0.2.5
46
- Requires-Dist: llama-cpp-python==0.2.82
46
+ Requires-Dist: llama-cpp-python==0.2.88
47
47
  Requires-Dist: lxml==4.9.3
48
48
  Requires-Dist: magika~=0.5.1
49
49
  Requires-Dist: markdown-it-py~=3.0.0
@@ -82,25 +82,26 @@ khoj/database/migrations/0054_alter_agent_style_color.py,sha256=f6RnyvEMR0-Y4R2C
82
82
  khoj/database/migrations/0055_alter_agent_style_icon.py,sha256=0lkxmyDmOW_3CsnLl8iEsCI6qHi2YS9wfdFfDMNbZ4k,1218
83
83
  khoj/database/migrations/0056_searchmodelconfig_cross_encoder_model_config.py,sha256=RuR5lyAp6T_bRg2gxhOGS4dfXOWBBEQ3bAvKf4ru5Gw,430
84
84
  khoj/database/migrations/0057_remove_serverchatsettings_default_model_and_more.py,sha256=q00paabxofoeWe3FXVLE901KwEn9Q3bRMW2TtAbmtUE,1608
85
+ khoj/database/migrations/0058_alter_chatmodeloptions_chat_model.py,sha256=03Tk3A1b0z5zhJgwSo9YX0fYhsNSDek9ro5Hpv1WulA,484
85
86
  khoj/database/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
- khoj/database/models/__init__.py,sha256=HC25ln3PL1DtjcAoPaTsOcWpb9Ley1zvBGuJwkgVbpM,19085
87
+ khoj/database/models/__init__.py,sha256=kzCa_F_Ih_SKDpwR5F8jWh2N22ryyc9Q4Vz5ixCri5g,19085
87
88
  khoj/interface/compiled/agents.svg,sha256=yFCRwIM-Qawa0C5ggAo3ekb-Q1ElmotBOKIGhtfIQqM,1722
88
89
  khoj/interface/compiled/automation.svg,sha256=o7L2XYwJWRSMvl8h6TBv6Pt28RTRVMHqF04EPY0AFj0,1467
89
90
  khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvtM3A,2424
90
91
  khoj/interface/compiled/close.svg,sha256=hQ2iFLkNzHk0_iyTrSbwnWAeXYlgA-c2Eof2Iqh76n4,417
91
92
  khoj/interface/compiled/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
92
93
  khoj/interface/compiled/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
93
- khoj/interface/compiled/index.html,sha256=oAufh_bMchFpQq8GNV6Tm-mKGKnRB5MXCsQ04hF1Blc,11912
94
- khoj/interface/compiled/index.txt,sha256=to_gH_6XD3VgdDY06dnyYbJ_twoXLPU3N-1OKcEO48c,5515
94
+ khoj/interface/compiled/index.html,sha256=Opah1IWvFVPe2NPbH7NHNpvrd3TTEJZ4XuBBLlhAfEg,11912
95
+ khoj/interface/compiled/index.txt,sha256=L7rCRZG9d48ZzlfEp2ON46k5gH0cwb9tqCz_43kEDso,5515
95
96
  khoj/interface/compiled/khoj.webmanifest,sha256=lsknYkvEdMbRTOUYKXPM_8krN2gamJmM4u3qj8u9lrU,1682
96
97
  khoj/interface/compiled/logo.svg,sha256=_QCKVYM4WT2Qhcf7aVFImjq_s5CwjynGXYAOgI7yf8w,8059
97
98
  khoj/interface/compiled/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
98
99
  khoj/interface/compiled/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
99
100
  khoj/interface/compiled/thumbs-down.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
100
101
  khoj/interface/compiled/thumbs-up.svg,sha256=yS1wxTRtiztkN-6nZciLoYQUB_KTYNPV8xFRwH2TQFw,1036
101
- khoj/interface/compiled/404/index.html,sha256=-WqSYQK43xJ3cvxBjBqOz-9ls6yL8Z9QwPKVnPcQn-s,11947
102
- khoj/interface/compiled/_next/static/StJQhDfsnRaHEWnrxvjj3/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
103
- khoj/interface/compiled/_next/static/StJQhDfsnRaHEWnrxvjj3/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
102
+ khoj/interface/compiled/404/index.html,sha256=cJG0UIz-RCQFqqwskW68u9g-PWC8MXF2WHu7CHvbQfo,11947
103
+ khoj/interface/compiled/_next/static/GS4lmkBaKYPeQ6V0rQkWo/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
104
+ khoj/interface/compiled/_next/static/GS4lmkBaKYPeQ6V0rQkWo/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
104
105
  khoj/interface/compiled/_next/static/chunks/1603-fb2d80ae73990df3.js,sha256=CCbOXifiixbhMf7lgTG96225tP1Pou72Wb0Zh6KC1Rs,71007
105
106
  khoj/interface/compiled/_next/static/chunks/2614-7cf01576d4457a75.js,sha256=aUjhjyxNPrZr4bLKzGkGgHH8K4J6g9dfiRjabnmvSDc,1104737
106
107
  khoj/interface/compiled/_next/static/chunks/3062-a42d847c919a9ea4.js,sha256=9UDsx_sY4b4x6jjR_A0AymC9rjBCoCcEpGR4U-0Ej3g,256170
@@ -114,7 +115,7 @@ khoj/interface/compiled/_next/static/chunks/743-1a64254447cda71f.js,sha256=YH4bE
114
115
  khoj/interface/compiled/_next/static/chunks/8423-898d821eaab634af.js,sha256=W8aFQibnAqcbhPYoD_WzHKoMwaWt3jXdan7n_LoY4t4,10327
115
116
  khoj/interface/compiled/_next/static/chunks/9001-acbca3e19b1a5ddf.js,sha256=M2hBSe8WTnjEmUlOiOgt_zDJtv3sc4ghnubhkZyMvVA,35460
116
117
  khoj/interface/compiled/_next/static/chunks/9162-4a6d0d0dc5e27618.js,sha256=2csnvP4rJcL4oZlBAEkzeSxBJy4gwYxzAnqzeWbe9fw,149225
117
- khoj/interface/compiled/_next/static/chunks/9178-b9ab3fa2e9be8287.js,sha256=oPlzSM8_yBFdp0iNTO1OAeHniR48SsjjZGsTlheBUVQ,17593
118
+ khoj/interface/compiled/_next/static/chunks/9178-089b3c2697321301.js,sha256=5UouBBe0v0s_oMJeLve5OTRk9J0TJFfz8IQrk6hedAw,17603
118
119
  khoj/interface/compiled/_next/static/chunks/9417-5d14ac74aaab2c66.js,sha256=FZ8xOLMdzrlVmwtcyuQSy8bBwd8_UZ1hH3FlL4DwXpA,17252
119
120
  khoj/interface/compiled/_next/static/chunks/9693-91b03052c5cabded.js,sha256=htVs3WyaR5jF7tXL_VBwqtPcQ53T3s9jWRazqz7DU-c,28957
120
121
  khoj/interface/compiled/_next/static/chunks/d3ac728e-a9e3522eef9b6b28.js,sha256=wK1TsLdl56xtbQG6HMRDpylzTOYXQaAnnn2xobFnX40,267216
@@ -224,8 +225,8 @@ khoj/interface/compiled/_next/static/media/flags.3afdda2f.webp,sha256=M2AW_HLpBn
224
225
  khoj/interface/compiled/_next/static/media/flags@2x.5fbe9fc1.webp,sha256=BBeRPBZkxY3-aKkMnYv5TSkxmbeMbyUH4VRIPfrWg1E,137406
225
226
  khoj/interface/compiled/_next/static/media/globe.98e105ca.webp,sha256=g3ofb8-W9GM75zIhlvQhaS8I2py9TtrovOKR3_7Jf04,514
226
227
  khoj/interface/compiled/_next/static/media/globe@2x.974df6f8.webp,sha256=I_N7Yke3IOoS-0CC6XD8o0IUWG8PdPbrHmf6lpgWlZY,1380
227
- khoj/interface/compiled/agents/index.html,sha256=VBK7BnYVjNTvIWwl2_qOXH5RNyzANjAOb1wWmejJnUA,12699
228
- khoj/interface/compiled/agents/index.txt,sha256=WFvKqiIAjXwXnv5DQOhEeJ-mWYeCEMynnO2Ykph6_Ck,6075
228
+ khoj/interface/compiled/agents/index.html,sha256=bNtWv53l7n3yQFnAYXKQSNZs-Sb3jhIqx2Liw0nJp84,12699
229
+ khoj/interface/compiled/agents/index.txt,sha256=NHDWj-e3WubZbj8Ehp3kn8yyHfK6dKUf88gY6lfYldM,6075
229
230
  khoj/interface/compiled/assets/icons/khoj_lantern.ico,sha256=eggu-B_v3z1R53EjOFhIqqPnICBGdoaw1xnc0NrzHck,174144
230
231
  khoj/interface/compiled/assets/icons/khoj_lantern_128x128.png,sha256=aTxivDb3CYyThkVZWz8A19xl_dNut5DbkXhODWF3A9Q,5640
231
232
  khoj/interface/compiled/assets/icons/khoj_lantern_256x256.png,sha256=xPCMLHiaL7lYOdQLZrKwWE-Qjn5ZaysSZB0ScYv4UZU,12312
@@ -236,18 +237,18 @@ khoj/interface/compiled/assets/samples/desktop-remember-plan-sample.png,sha256=i
236
237
  khoj/interface/compiled/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
237
238
  khoj/interface/compiled/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
238
239
  khoj/interface/compiled/assets/samples/phone-remember-plan-sample.png,sha256=Ma3blirRmq3X4oYSsDbbT7MDn29rymDrjwmUfA9BMuM,236285
239
- khoj/interface/compiled/automations/index.html,sha256=6jqzh5RO0j7bKiXgKsMX_0-T0p9cJnuXxez0Q9wGwiM,30500
240
- khoj/interface/compiled/automations/index.txt,sha256=K_MKFlgTMeghPilVa2ovbL32jG4YmUOK6RoBdhyJrjc,5447
241
- khoj/interface/compiled/chat/index.html,sha256=OejTWDBcwFzNrn7vQq7ys2FH9UQnluXIFTQBR85ptqs,13566
242
- khoj/interface/compiled/chat/index.txt,sha256=wYQJEA4GPLxLZoC46NYWEN8MURTNNnO7ZUBK3WdZHOQ,6421
243
- khoj/interface/compiled/factchecker/index.html,sha256=K2figgXH9Y_2G-bp3fIeBB1GlPG2n7Fo2Ii39LcAuBQ,29839
244
- khoj/interface/compiled/factchecker/index.txt,sha256=vN1A_kFlrTssLEuh8Ql9onurgMiOWDReHWdzyZXWxpU,5735
245
- khoj/interface/compiled/search/index.html,sha256=9b4m1c_NiFe6QLUhlE0cqdDEq8fHgvzNbMiEUUK99YI,30154
246
- khoj/interface/compiled/search/index.txt,sha256=Lt67juJcNdZ9bdYYXVjIAlU-YWc5zT037za2gK7F8d8,5249
247
- khoj/interface/compiled/settings/index.html,sha256=5OsVBoJJCpLMg-9BLxFnTOr5f1w-_HCm33SrdVzdVZA,12827
248
- khoj/interface/compiled/settings/index.txt,sha256=TCtZ18XUC9SPSc91yQF8VC3MsJOzLOknUdt3EvL7bSA,6073
249
- khoj/interface/compiled/share/chat/index.html,sha256=-fO2eM7TXMvxdCsPF_0u2AdKkUTvBBMrKdD76iVAWeI,14896
250
- khoj/interface/compiled/share/chat/index.txt,sha256=o9DmLzm4wGEoHT5os9H-UUfsIujHUjGKggPpBwMsMJ0,7239
240
+ khoj/interface/compiled/automations/index.html,sha256=b56wj_1F8RbUCXfMwTKJ18_b3cVIaWAyscBDRrIZbEM,30500
241
+ khoj/interface/compiled/automations/index.txt,sha256=LbVlsOTrRUObsiyAVzdISJPal8OzdCcnsEQ3BA8qsmc,5447
242
+ khoj/interface/compiled/chat/index.html,sha256=UDUDcMsj7wxJhCVVHEUmOxKXftdMq8kRLQa7_0vFmAQ,13566
243
+ khoj/interface/compiled/chat/index.txt,sha256=OCwf16nqSeT0Ny51qpnfFxOH6h3VdZXsWBUdANUJ4Js,6421
244
+ khoj/interface/compiled/factchecker/index.html,sha256=Tv4IsFYcVc_BixuYFP5HVc9RCGeoo39v04iRorp7UH8,29839
245
+ khoj/interface/compiled/factchecker/index.txt,sha256=hJvR2z-aVtdWu5R3K0LMxljIKykKD1Evn5UQS0keLqU,5735
246
+ khoj/interface/compiled/search/index.html,sha256=cZwOe_jxtRlLrcgWI2633s_iRUyCxm79CuVrGGKw-lw,30154
247
+ khoj/interface/compiled/search/index.txt,sha256=Cnywid9w3Negwgi7zRXn_PWHZerIGTvGUdmxeSLe4Nc,5249
248
+ khoj/interface/compiled/settings/index.html,sha256=LweMV60-EqesbzliCbguSPG4xRqIWNkVpTs-PEdveLs,12827
249
+ khoj/interface/compiled/settings/index.txt,sha256=l9IpIiYpQoiG36gnHf_7Hb-u1O1nw4tO3hm7_gYlbh8,6073
250
+ khoj/interface/compiled/share/chat/index.html,sha256=WulALv1mlW_qErjR6SHrQQEC7uSJkeNaxbNAWN_s96c,14896
251
+ khoj/interface/compiled/share/chat/index.txt,sha256=tkg-vBraux3l6FG09XryS0D05A-hgwjg1Gbrt8ITnDQ,7239
251
252
  khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
252
253
  khoj/interface/email/magic_link.html,sha256=jXY_2hD3o15Ns5UDzbjLT8FHBnZiS7jo38YkYXIS-4w,947
253
254
  khoj/interface/email/task.html,sha256=yXywzC-5P4nXbhqvgCmwcCpTRbD5eWuDXMpgYSotztM,3311
@@ -298,14 +299,14 @@ khoj/processor/content/pdf/pdf_to_entries.py,sha256=OE90osFchohih3RYvDmZepbtzWoG
298
299
  khoj/processor/content/plaintext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
300
  khoj/processor/content/plaintext/plaintext_to_entries.py,sha256=97i7Cm0DTY7jW4iqKOT_oVc2ooa_XhQ8iImsljp1Kek,4994
300
301
  khoj/processor/conversation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
301
- khoj/processor/conversation/prompts.py,sha256=TGMniRnekGkJ2h6k2eCMqrUR5CE8AW8hixMUyKrZY4I,33527
302
- khoj/processor/conversation/utils.py,sha256=_uWu1nxcY-Cv2ip-TBdyqepUkMYhijvzjnproumvzXk,10586
302
+ khoj/processor/conversation/prompts.py,sha256=RQyMpb-nFOXl3c0i0QLj28SQYAl_0giz0qli7K9MMgY,33490
303
+ khoj/processor/conversation/utils.py,sha256=d9INo5kUU_6ShIXBpc51kJxXVZ-lcF5IHx0BBHilNTo,10642
303
304
  khoj/processor/conversation/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
304
305
  khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=fOT75wfC4r53M_tGDL6T7kvnRekZbdVM3jvvl3ohH9w,8108
305
306
  khoj/processor/conversation/anthropic/utils.py,sha256=uc9d_gIk4Ux2NRlkw3FP9L9KeLRoUI7nC_qb2Qp6d_4,3253
306
307
  khoj/processor/conversation/offline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
307
- khoj/processor/conversation/offline/chat_model.py,sha256=twkCgnPGvPYxwvp1EWrS4F6k0zG6kigVfmqmfYrO26M,9741
308
- khoj/processor/conversation/offline/utils.py,sha256=n2T3vwAIZnSe9-UN1VORLPrLEUcamXXE9isL2ie-9R8,3033
308
+ khoj/processor/conversation/offline/chat_model.py,sha256=KST7lZ1gHMi2w5eSUwr1Af6IeVFSGazhz-UGBHzDlSU,9910
309
+ khoj/processor/conversation/offline/utils.py,sha256=51McImxl6u1qgRYvMt7uzsgLGSLq5SMFy74ymlNjIcc,3033
309
310
  khoj/processor/conversation/offline/whisper.py,sha256=DJI-8y8DULO2cQ49m2VOvRyIZ2TxBypc15gM8O3HuMI,470
310
311
  khoj/processor/conversation/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
311
312
  khoj/processor/conversation/openai/gpt.py,sha256=KHkTVo8cpEhTc01HDSwQfQSoI81nmx14A-nYep50_do,7312
@@ -324,7 +325,7 @@ khoj/routers/api_model.py,sha256=5m7JWwgd9jILiLivRu7NEyY2E-tUkqoEkGg6j6uM1g0,464
324
325
  khoj/routers/api_phone.py,sha256=p9yfc4WeMHDC0hg3aQk60a2VBy8rZPdEnz9wdJ7DzkU,2208
325
326
  khoj/routers/auth.py,sha256=pCOLSRihJWcn097DRPxLjPdlejsjHJFRs9jHIzLujZU,6247
326
327
  khoj/routers/email.py,sha256=jA4jDTrYHUpY7mFHL4himeRlTBLRQmQKHqC91Dw1Zu0,3730
327
- khoj/routers/helpers.py,sha256=n_OEREg-hDRFqcRZkcXN4L56GdlAuo6J2VfNfvevS-A,63828
328
+ khoj/routers/helpers.py,sha256=IC_y9UmfvooX2ntHPQ6YT-PIIfYsNLE4VsvZowCro3c,64195
328
329
  khoj/routers/notion.py,sha256=0iG_DPVjg8n_LBWGHA8M6eHnJJDL-isARSEHTYStz6c,2809
329
330
  khoj/routers/storage.py,sha256=9ZfBsr_omxdFV-Lcj6p30xTQcF_7wwCZ9XFJukzjITE,1429
330
331
  khoj/routers/subscription.py,sha256=qEyV7m7mrY6MGtaij8W3v61tpzX2a7ydm2B-E8h_R-M,4285
@@ -339,18 +340,18 @@ khoj/search_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
339
340
  khoj/search_type/text_search.py,sha256=AEDBbkjMwDieDiz6_Bdaoq0cywIova1Uz6V1O-XRldQ,8939
340
341
  khoj/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
342
  khoj/utils/cli.py,sha256=oTDt6ClKvYNJ3_j9Omwx49H03IxC7sq4oL1qFpormWc,3456
342
- khoj/utils/config.py,sha256=ZNVZjyJhd7KmeKCA1a1Dtns2ghhAtZtsCF9Lsm-gilw,1805
343
- khoj/utils/constants.py,sha256=gwCRyZahYjb731uLelnIMzrjHaphb3mmeAimsY_ZoZY,928
343
+ khoj/utils/config.py,sha256=aiOkH0je8A30DAGYTHMRePrgJonFv_i07_7CdhhhcdA,1805
344
+ khoj/utils/constants.py,sha256=K7m9EV5HhHsTHPqWS3Fc_Y48pDhBjhcc5e6PNmCYobk,928
344
345
  khoj/utils/fs_syncer.py,sha256=bQgcbYYC3x11RyCqI_kUzzqGpcKTodGgdT-3OTQsXqw,9977
345
346
  khoj/utils/helpers.py,sha256=b7q_aQw52C_CO9y18KWRD2Z1Oyo9E6Ef7F9_jfi5S00,14041
346
347
  khoj/utils/initialization.py,sha256=Q8csjz5YqQ7WZ6mYJWvmp_Dh36dFRpZ3WRWxEgT2Ql0,7117
347
348
  khoj/utils/jsonl.py,sha256=0Ac_COqr8sLCXntzZtquxuCEVRM2c3yKeDRGhgOBRpQ,1192
348
349
  khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
349
- khoj/utils/rawconfig.py,sha256=luk7Vb_ODuoTdMd_IG-yVXGoyoU-RktyapBG5D1N_VI,3985
350
+ khoj/utils/rawconfig.py,sha256=5E77qdCutMzXPzZSLYMDlgxfhtydAckPLW_djKDU_ls,3985
350
351
  khoj/utils/state.py,sha256=x4GTewP1YhOA6c_32N4wOjnV-3AA3xG_qbY1-wC2Uxc,1559
351
352
  khoj/utils/yaml.py,sha256=H0mfw0ZvBFUvFmCQn8pWkfxdmIebsrSykza7D8Wv6wQ,1430
352
- khoj-1.20.5.dev18.dist-info/METADATA,sha256=J7G56lBfb6Pr1dkikhgzL32tE2xiI6_addJyvwqmEhk,6876
353
- khoj-1.20.5.dev18.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
354
- khoj-1.20.5.dev18.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
355
- khoj-1.20.5.dev18.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
356
- khoj-1.20.5.dev18.dist-info/RECORD,,
353
+ khoj-1.21.0.dist-info/METADATA,sha256=nV-E0SyvIT0FY5qS7bQGFDNIp1wzH0ATGWFDpVlQX7Y,6870
354
+ khoj-1.21.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
355
+ khoj-1.21.0.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
356
+ khoj-1.21.0.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
357
+ khoj-1.21.0.dist-info/RECORD,,