khoj 1.21.5__py3-none-any.whl → 1.21.5.dev1__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-95cfd7a1948cfeed.js → webpack-056f0b344e8ce753.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/anthropic/utils.py +23 -26
- khoj/processor/conversation/openai/utils.py +29 -32
- {khoj-1.21.5.dist-info → khoj-1.21.5.dev1.dist-info}/METADATA +1 -1
- {khoj-1.21.5.dist-info → khoj-1.21.5.dev1.dist-info}/RECORD +32 -32
- /khoj/interface/compiled/_next/static/{c94a08w_ZKOpws32Cwk3G → -jEZ6iJvz21bM3U5yYumu}/_buildManifest.js +0 -0
- /khoj/interface/compiled/_next/static/{c94a08w_ZKOpws32Cwk3G → -jEZ6iJvz21bM3U5yYumu}/_ssgManifest.js +0 -0
- /khoj/interface/compiled/_next/static/chunks/{8423-132ea64eac83fd43.js → 8423-898d821eaab634af.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{9178-d23cb0dbee40a775.js → 9178-089b3c2697321301.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{9417-2e54c6fd056982d8.js → 9417-5d14ac74aaab2c66.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/app/agents/{page-922694b75f1fb67b.js → page-989a824c640bc532.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/app/{page-ef4e7248d37fae41.js → page-851860583273ab5d.js} +0 -0
- {khoj-1.21.5.dist-info → khoj-1.21.5.dev1.dist-info}/WHEEL +0 -0
- {khoj-1.21.5.dist-info → khoj-1.21.5.dev1.dist-info}/entry_points.txt +0 -0
- {khoj-1.21.5.dist-info → khoj-1.21.5.dev1.dist-info}/licenses/LICENSE +0 -0
|
@@ -100,37 +100,34 @@ def chat_completion_with_backoff(
|
|
|
100
100
|
|
|
101
101
|
|
|
102
102
|
def llm_thread(g, messages, model_name, temperature, openai_api_key=None, api_base_url=None, model_kwargs=None):
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
base_url=api_base_url,
|
|
109
|
-
)
|
|
110
|
-
openai_clients[client_key] = client
|
|
111
|
-
else:
|
|
112
|
-
client: openai.OpenAI = openai_clients[client_key]
|
|
113
|
-
|
|
114
|
-
formatted_messages = [{"role": message.role, "content": message.content} for message in messages]
|
|
115
|
-
|
|
116
|
-
chat = client.chat.completions.create(
|
|
117
|
-
stream=True,
|
|
118
|
-
messages=formatted_messages,
|
|
119
|
-
model=model_name, # type: ignore
|
|
120
|
-
temperature=temperature,
|
|
121
|
-
timeout=20,
|
|
122
|
-
**(model_kwargs or dict()),
|
|
103
|
+
client_key = f"{openai_api_key}--{api_base_url}"
|
|
104
|
+
if client_key not in openai_clients:
|
|
105
|
+
client: openai.OpenAI = openai.OpenAI(
|
|
106
|
+
api_key=openai_api_key,
|
|
107
|
+
base_url=api_base_url,
|
|
123
108
|
)
|
|
109
|
+
openai_clients[client_key] = client
|
|
110
|
+
else:
|
|
111
|
+
client: openai.OpenAI = openai_clients[client_key]
|
|
112
|
+
|
|
113
|
+
formatted_messages = [{"role": message.role, "content": message.content} for message in messages]
|
|
114
|
+
|
|
115
|
+
chat = client.chat.completions.create(
|
|
116
|
+
stream=True,
|
|
117
|
+
messages=formatted_messages,
|
|
118
|
+
model=model_name, # type: ignore
|
|
119
|
+
temperature=temperature,
|
|
120
|
+
timeout=20,
|
|
121
|
+
**(model_kwargs or dict()),
|
|
122
|
+
)
|
|
123
|
+
|
|
124
|
+
for chunk in chat:
|
|
125
|
+
if len(chunk.choices) == 0:
|
|
126
|
+
continue
|
|
127
|
+
delta_chunk = chunk.choices[0].delta
|
|
128
|
+
if isinstance(delta_chunk, str):
|
|
129
|
+
g.send(delta_chunk)
|
|
130
|
+
elif delta_chunk.content:
|
|
131
|
+
g.send(delta_chunk.content)
|
|
124
132
|
|
|
125
|
-
|
|
126
|
-
if len(chunk.choices) == 0:
|
|
127
|
-
continue
|
|
128
|
-
delta_chunk = chunk.choices[0].delta
|
|
129
|
-
if isinstance(delta_chunk, str):
|
|
130
|
-
g.send(delta_chunk)
|
|
131
|
-
elif delta_chunk.content:
|
|
132
|
-
g.send(delta_chunk.content)
|
|
133
|
-
except Exception as e:
|
|
134
|
-
logger.error(f"Error in llm_thread: {e}", exc_info=True)
|
|
135
|
-
finally:
|
|
136
|
-
g.close()
|
|
133
|
+
g.close()
|
|
@@ -92,17 +92,17 @@ khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvt
|
|
|
92
92
|
khoj/interface/compiled/close.svg,sha256=hQ2iFLkNzHk0_iyTrSbwnWAeXYlgA-c2Eof2Iqh76n4,417
|
|
93
93
|
khoj/interface/compiled/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
|
|
94
94
|
khoj/interface/compiled/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
|
|
95
|
-
khoj/interface/compiled/index.html,sha256=
|
|
96
|
-
khoj/interface/compiled/index.txt,sha256=
|
|
95
|
+
khoj/interface/compiled/index.html,sha256=OKA-KRL8s8IynGz1f17Kp4aV6j4yzw4nKffOJZ9hcO0,11912
|
|
96
|
+
khoj/interface/compiled/index.txt,sha256=rIDYbpuZ3GlW_9ryVRkjKB9JymNCwTVGRmtcfpLxv68,5515
|
|
97
97
|
khoj/interface/compiled/khoj.webmanifest,sha256=lsknYkvEdMbRTOUYKXPM_8krN2gamJmM4u3qj8u9lrU,1682
|
|
98
98
|
khoj/interface/compiled/logo.svg,sha256=_QCKVYM4WT2Qhcf7aVFImjq_s5CwjynGXYAOgI7yf8w,8059
|
|
99
99
|
khoj/interface/compiled/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
|
|
100
100
|
khoj/interface/compiled/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
|
|
101
101
|
khoj/interface/compiled/thumbs-down.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
|
|
102
102
|
khoj/interface/compiled/thumbs-up.svg,sha256=yS1wxTRtiztkN-6nZciLoYQUB_KTYNPV8xFRwH2TQFw,1036
|
|
103
|
-
khoj/interface/compiled/404/index.html,sha256=
|
|
104
|
-
khoj/interface/compiled/_next/static/
|
|
105
|
-
khoj/interface/compiled/_next/static/
|
|
103
|
+
khoj/interface/compiled/404/index.html,sha256=_DVzTBIAUIlqV2NJb0zJkLtKReTqMriYOyakrcLzsZY,11947
|
|
104
|
+
khoj/interface/compiled/_next/static/-jEZ6iJvz21bM3U5yYumu/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
|
|
105
|
+
khoj/interface/compiled/_next/static/-jEZ6iJvz21bM3U5yYumu/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
106
106
|
khoj/interface/compiled/_next/static/chunks/1603-fb2d80ae73990df3.js,sha256=CCbOXifiixbhMf7lgTG96225tP1Pou72Wb0Zh6KC1Rs,71007
|
|
107
107
|
khoj/interface/compiled/_next/static/chunks/2614-7cf01576d4457a75.js,sha256=aUjhjyxNPrZr4bLKzGkGgHH8K4J6g9dfiRjabnmvSDc,1104737
|
|
108
108
|
khoj/interface/compiled/_next/static/chunks/3062-a42d847c919a9ea4.js,sha256=9UDsx_sY4b4x6jjR_A0AymC9rjBCoCcEpGR4U-0Ej3g,256170
|
|
@@ -113,11 +113,11 @@ khoj/interface/compiled/_next/static/chunks/6648-ff677e51f1b2bcf1.js,sha256=9bJl
|
|
|
113
113
|
khoj/interface/compiled/_next/static/chunks/7023-52c1be60135eb057.js,sha256=CI8R2DdZNEt3nACmiXUG1NnKhnal1ImzXglW-xDuxcI,123657
|
|
114
114
|
khoj/interface/compiled/_next/static/chunks/7071-b4711cecca6619a8.js,sha256=z-KSur3LbIFPg_90wN0EMhV0et9cJVfG_MR9POVmdCQ,7801
|
|
115
115
|
khoj/interface/compiled/_next/static/chunks/743-1a64254447cda71f.js,sha256=YH4bEkjmttcOGzAzXKaDCJ-C68jk2qy1cQJP2ljjoAA,100834
|
|
116
|
-
khoj/interface/compiled/_next/static/chunks/8423-
|
|
116
|
+
khoj/interface/compiled/_next/static/chunks/8423-898d821eaab634af.js,sha256=W8aFQibnAqcbhPYoD_WzHKoMwaWt3jXdan7n_LoY4t4,10327
|
|
117
117
|
khoj/interface/compiled/_next/static/chunks/9001-acbca3e19b1a5ddf.js,sha256=M2hBSe8WTnjEmUlOiOgt_zDJtv3sc4ghnubhkZyMvVA,35460
|
|
118
118
|
khoj/interface/compiled/_next/static/chunks/9162-4a6d0d0dc5e27618.js,sha256=2csnvP4rJcL4oZlBAEkzeSxBJy4gwYxzAnqzeWbe9fw,149225
|
|
119
|
-
khoj/interface/compiled/_next/static/chunks/9178-
|
|
120
|
-
khoj/interface/compiled/_next/static/chunks/9417-
|
|
119
|
+
khoj/interface/compiled/_next/static/chunks/9178-089b3c2697321301.js,sha256=5UouBBe0v0s_oMJeLve5OTRk9J0TJFfz8IQrk6hedAw,17603
|
|
120
|
+
khoj/interface/compiled/_next/static/chunks/9417-5d14ac74aaab2c66.js,sha256=FZ8xOLMdzrlVmwtcyuQSy8bBwd8_UZ1hH3FlL4DwXpA,17252
|
|
121
121
|
khoj/interface/compiled/_next/static/chunks/9693-91b03052c5cabded.js,sha256=htVs3WyaR5jF7tXL_VBwqtPcQ53T3s9jWRazqz7DU-c,28957
|
|
122
122
|
khoj/interface/compiled/_next/static/chunks/d3ac728e-a9e3522eef9b6b28.js,sha256=wK1TsLdl56xtbQG6HMRDpylzTOYXQaAnnn2xobFnX40,267216
|
|
123
123
|
khoj/interface/compiled/_next/static/chunks/fd9d1056-2b978342deb60015.js,sha256=2lquiZSfbI-gX4j4TW4JSMLL_D5ShqwydgWpFyXrTy8,172834
|
|
@@ -125,12 +125,12 @@ khoj/interface/compiled/_next/static/chunks/framework-8e0e0f4a6b83a956.js,sha256
|
|
|
125
125
|
khoj/interface/compiled/_next/static/chunks/main-175c164f5e0f026c.js,sha256=hlUnjERudON4V4kUKprrFz1e9JRtSp4A9i7vnM-1bzA,110324
|
|
126
126
|
khoj/interface/compiled/_next/static/chunks/main-app-6d6ee3495efe03d4.js,sha256=i52E7sWOcSq1G8eYZL3mtTxbUbwRNxcAbSWQ6uWpMsY,475
|
|
127
127
|
khoj/interface/compiled/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
|
128
|
-
khoj/interface/compiled/_next/static/chunks/webpack-
|
|
128
|
+
khoj/interface/compiled/_next/static/chunks/webpack-056f0b344e8ce753.js,sha256=ogoyUv85JMlSG6FpSJW_Z0DBpPPMbUgJIKK5ImgMQMY,3721
|
|
129
129
|
khoj/interface/compiled/_next/static/chunks/app/layout-f3e40d346da53112.js,sha256=nekGSUVbvB81OfqGgJa2UoDmbxPhNwFwtc4o11O_1jI,442
|
|
130
|
-
khoj/interface/compiled/_next/static/chunks/app/page-
|
|
130
|
+
khoj/interface/compiled/_next/static/chunks/app/page-851860583273ab5d.js,sha256=Ocjky2Cm-ctmhs1r4oSRBYyMfkotM0ErcWVTVCGei6Y,28601
|
|
131
131
|
khoj/interface/compiled/_next/static/chunks/app/_not-found/page-07ff4ab42b07845e.js,sha256=3mCUnxfMxyK44eqk21TVBrC6u--WSbvx31fTmQuOvMQ,1755
|
|
132
132
|
khoj/interface/compiled/_next/static/chunks/app/agents/layout-e71c8e913cccf792.js,sha256=VyIMrkvntFObMzXF-elNtngJ8mBdjg8XrOGfboJ2f_4,372
|
|
133
|
-
khoj/interface/compiled/_next/static/chunks/app/agents/page-
|
|
133
|
+
khoj/interface/compiled/_next/static/chunks/app/agents/page-989a824c640bc532.js,sha256=3jU-Yi9AqZMAvWyGhiVjy9SofvHSUHSUV65CbBpu3Rc,18086
|
|
134
134
|
khoj/interface/compiled/_next/static/chunks/app/automations/layout-27c28e923c9b1ff0.js,sha256=d2vJ_lVB0pfeFXNUPzHAe1ca5NzdNowHPh___SPqugM,5143
|
|
135
135
|
khoj/interface/compiled/_next/static/chunks/app/automations/page-fa3163653d2a72ac.js,sha256=F4v3xq2_5QMEIeCd4cwdKY8CHfGiwkTgO4Gh3-vq-Ds,34150
|
|
136
136
|
khoj/interface/compiled/_next/static/chunks/app/chat/layout-8102549127db3067.js,sha256=YIoA3fqOBt8nKWw5iQAwA_avg2t1Q5Afn65IA5PBOz4,374
|
|
@@ -226,8 +226,8 @@ khoj/interface/compiled/_next/static/media/flags.3afdda2f.webp,sha256=M2AW_HLpBn
|
|
|
226
226
|
khoj/interface/compiled/_next/static/media/flags@2x.5fbe9fc1.webp,sha256=BBeRPBZkxY3-aKkMnYv5TSkxmbeMbyUH4VRIPfrWg1E,137406
|
|
227
227
|
khoj/interface/compiled/_next/static/media/globe.98e105ca.webp,sha256=g3ofb8-W9GM75zIhlvQhaS8I2py9TtrovOKR3_7Jf04,514
|
|
228
228
|
khoj/interface/compiled/_next/static/media/globe@2x.974df6f8.webp,sha256=I_N7Yke3IOoS-0CC6XD8o0IUWG8PdPbrHmf6lpgWlZY,1380
|
|
229
|
-
khoj/interface/compiled/agents/index.html,sha256=
|
|
230
|
-
khoj/interface/compiled/agents/index.txt,sha256=
|
|
229
|
+
khoj/interface/compiled/agents/index.html,sha256=fMUl-3wWxvP36A56ukOLKqyZPuG7ezMQuXNx7-ge5Oo,12391
|
|
230
|
+
khoj/interface/compiled/agents/index.txt,sha256=lx4BlbzChIFxjDqWv45NajdwN2QoD_GepqK95QumLLA,5942
|
|
231
231
|
khoj/interface/compiled/assets/icons/khoj_lantern.ico,sha256=eggu-B_v3z1R53EjOFhIqqPnICBGdoaw1xnc0NrzHck,174144
|
|
232
232
|
khoj/interface/compiled/assets/icons/khoj_lantern_128x128.png,sha256=aTxivDb3CYyThkVZWz8A19xl_dNut5DbkXhODWF3A9Q,5640
|
|
233
233
|
khoj/interface/compiled/assets/icons/khoj_lantern_256x256.png,sha256=xPCMLHiaL7lYOdQLZrKwWE-Qjn5ZaysSZB0ScYv4UZU,12312
|
|
@@ -238,18 +238,18 @@ khoj/interface/compiled/assets/samples/desktop-remember-plan-sample.png,sha256=i
|
|
|
238
238
|
khoj/interface/compiled/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
|
|
239
239
|
khoj/interface/compiled/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
|
|
240
240
|
khoj/interface/compiled/assets/samples/phone-remember-plan-sample.png,sha256=Ma3blirRmq3X4oYSsDbbT7MDn29rymDrjwmUfA9BMuM,236285
|
|
241
|
-
khoj/interface/compiled/automations/index.html,sha256=
|
|
242
|
-
khoj/interface/compiled/automations/index.txt,sha256=
|
|
243
|
-
khoj/interface/compiled/chat/index.html,sha256=
|
|
244
|
-
khoj/interface/compiled/chat/index.txt,sha256=
|
|
245
|
-
khoj/interface/compiled/factchecker/index.html,sha256=
|
|
246
|
-
khoj/interface/compiled/factchecker/index.txt,sha256=
|
|
247
|
-
khoj/interface/compiled/search/index.html,sha256=
|
|
248
|
-
khoj/interface/compiled/search/index.txt,sha256=
|
|
249
|
-
khoj/interface/compiled/settings/index.html,sha256=
|
|
250
|
-
khoj/interface/compiled/settings/index.txt,sha256=
|
|
251
|
-
khoj/interface/compiled/share/chat/index.html,sha256=
|
|
252
|
-
khoj/interface/compiled/share/chat/index.txt,sha256=
|
|
241
|
+
khoj/interface/compiled/automations/index.html,sha256=7-xj4rraP3hsP8oQp4mFgbdwYdNgd97XaWxq9NRGGwM,30808
|
|
242
|
+
khoj/interface/compiled/automations/index.txt,sha256=lpMGJb2WAMGjZAewCA0_Ug2Q8hwQhSNfz0MRBsPTmi0,5580
|
|
243
|
+
khoj/interface/compiled/chat/index.html,sha256=MZWEr5VFSViubXxmVr2wfsjHf9Axn3nkywkIGM1murc,13566
|
|
244
|
+
khoj/interface/compiled/chat/index.txt,sha256=A7k9jVqwIiouDwt7vtKeZMHX36a3zfKGuvhOuXYoKDc,6421
|
|
245
|
+
khoj/interface/compiled/factchecker/index.html,sha256=Xq-qfHl9JsWSVza9pp2dhQt8h320EzOLqbhvKwnLRm4,29839
|
|
246
|
+
khoj/interface/compiled/factchecker/index.txt,sha256=sxO0BtSgK-i04XSPnukl9pvvRz7sO0H3ASrrucPkx7o,5735
|
|
247
|
+
khoj/interface/compiled/search/index.html,sha256=DBmZdGKH1okp7tiB-1iDoEC-ZMgcLT8GzStM9v9V9SU,30154
|
|
248
|
+
khoj/interface/compiled/search/index.txt,sha256=XwOga5C5lIiUA2aUocBUyg_VHItjltRFSHzAfESHAMc,5249
|
|
249
|
+
khoj/interface/compiled/settings/index.html,sha256=1fBgDSFrPvmMWvLdzIPGcu5x_CnaKpypRHAAw_MfGrE,12827
|
|
250
|
+
khoj/interface/compiled/settings/index.txt,sha256=N9_Gx3w69XUyUdeaG3OGW0ucjn1-NmHHNcojtHfH60c,6073
|
|
251
|
+
khoj/interface/compiled/share/chat/index.html,sha256=RHIyBLau6-k34C-HceZVe_GisJzSOVABUlMiqCn8Kdc,14896
|
|
252
|
+
khoj/interface/compiled/share/chat/index.txt,sha256=1Yx8a2M4pQpwBu4G_il6_bymaY0AQHTAzpfvjOj9o3U,7239
|
|
253
253
|
khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
|
|
254
254
|
khoj/interface/email/magic_link.html,sha256=jXY_2hD3o15Ns5UDzbjLT8FHBnZiS7jo38YkYXIS-4w,947
|
|
255
255
|
khoj/interface/email/task.html,sha256=yXywzC-5P4nXbhqvgCmwcCpTRbD5eWuDXMpgYSotztM,3311
|
|
@@ -304,14 +304,14 @@ khoj/processor/conversation/prompts.py,sha256=75XbUfcN0KroSjL4r-LCFVYCbG9k-aM9s4
|
|
|
304
304
|
khoj/processor/conversation/utils.py,sha256=MDp6uVqGmE_iuOEwrbQs33V_ejKOysqokLfB7ZPh1Fg,10666
|
|
305
305
|
khoj/processor/conversation/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
306
|
khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=fOT75wfC4r53M_tGDL6T7kvnRekZbdVM3jvvl3ohH9w,8108
|
|
307
|
-
khoj/processor/conversation/anthropic/utils.py,sha256=
|
|
307
|
+
khoj/processor/conversation/anthropic/utils.py,sha256=uc9d_gIk4Ux2NRlkw3FP9L9KeLRoUI7nC_qb2Qp6d_4,3253
|
|
308
308
|
khoj/processor/conversation/offline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
309
309
|
khoj/processor/conversation/offline/chat_model.py,sha256=AHO2ErdByyT3Koc0qNKICsFhu4imr56B2CAOn_2RyVE,9617
|
|
310
310
|
khoj/processor/conversation/offline/utils.py,sha256=51McImxl6u1qgRYvMt7uzsgLGSLq5SMFy74ymlNjIcc,3033
|
|
311
311
|
khoj/processor/conversation/offline/whisper.py,sha256=DJI-8y8DULO2cQ49m2VOvRyIZ2TxBypc15gM8O3HuMI,470
|
|
312
312
|
khoj/processor/conversation/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
313
|
khoj/processor/conversation/openai/gpt.py,sha256=83ofi8v-6C92uD7oV7-aI3DX6BR7DXetZR7dIPlW3vo,7310
|
|
314
|
-
khoj/processor/conversation/openai/utils.py,sha256=
|
|
314
|
+
khoj/processor/conversation/openai/utils.py,sha256=QyUpRkU0ogTQL95tfQX6oR-_7Okn0IX6D0zmcYjVr6c,4188
|
|
315
315
|
khoj/processor/conversation/openai/whisper.py,sha256=RuwDtxSJrVWYdZz4aVnk0XiMQy9w8W9lFcVfE0hMiFY,432
|
|
316
316
|
khoj/processor/speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
317
|
khoj/processor/speech/text_to_speech.py,sha256=Q7sapi5Hv6woXOumtrGqR0t6izZrFBkWXFOGrHM6dJ4,1929
|
|
@@ -351,8 +351,8 @@ khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
|
|
|
351
351
|
khoj/utils/rawconfig.py,sha256=BKicp6kEBax7h76YRYgyFAUpfWHAI5m9ZJ2HVqyh45Y,3983
|
|
352
352
|
khoj/utils/state.py,sha256=x4GTewP1YhOA6c_32N4wOjnV-3AA3xG_qbY1-wC2Uxc,1559
|
|
353
353
|
khoj/utils/yaml.py,sha256=H0mfw0ZvBFUvFmCQn8pWkfxdmIebsrSykza7D8Wv6wQ,1430
|
|
354
|
-
khoj-1.21.5.dist-info/METADATA,sha256=
|
|
355
|
-
khoj-1.21.5.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
356
|
-
khoj-1.21.5.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
|
357
|
-
khoj-1.21.5.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
358
|
-
khoj-1.21.5.dist-info/RECORD,,
|
|
354
|
+
khoj-1.21.5.dev1.dist-info/METADATA,sha256=jRNmJyL8VZkR_mhbGVsauuQxsvbZVDWWNZmaqiEg9VI,6875
|
|
355
|
+
khoj-1.21.5.dev1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
356
|
+
khoj-1.21.5.dev1.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
|
357
|
+
khoj-1.21.5.dev1.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
358
|
+
khoj-1.21.5.dev1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{8423-132ea64eac83fd43.js → 8423-898d821eaab634af.js}
RENAMED
|
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{9178-d23cb0dbee40a775.js → 9178-089b3c2697321301.js}
RENAMED
|
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{9417-2e54c6fd056982d8.js → 9417-5d14ac74aaab2c66.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|