khoj 1.42.3.dev6__py3-none-any.whl → 1.42.4__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 +2 -2
- khoj/interface/compiled/_next/static/chunks/{2327-024b9e0bd6d8c9eb.js → 2327-916342b58294de9c.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/{7211-7fedd2ee3655239c.js → 7211-bc820ef9de53f166.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/chat/{page-0b8cd503b9723fd3.js → page-0b31c505ddbff52d.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/{webpack-251ab2e9af8ab027.js → webpack-1c900156837baf90.js} +1 -1
- khoj/interface/compiled/agents/index.html +2 -2
- khoj/interface/compiled/agents/index.txt +2 -2
- khoj/interface/compiled/automations/index.html +2 -2
- khoj/interface/compiled/automations/index.txt +2 -2
- khoj/interface/compiled/chat/index.html +2 -2
- khoj/interface/compiled/chat/index.txt +2 -2
- khoj/interface/compiled/index.html +2 -2
- khoj/interface/compiled/index.txt +2 -2
- khoj/interface/compiled/search/index.html +2 -2
- khoj/interface/compiled/search/index.txt +2 -2
- khoj/interface/compiled/settings/index.html +2 -2
- khoj/interface/compiled/settings/index.txt +2 -2
- khoj/interface/compiled/share/chat/index.html +2 -2
- khoj/interface/compiled/share/chat/index.txt +2 -2
- khoj/processor/conversation/openai/utils.py +69 -36
- khoj/processor/conversation/utils.py +8 -7
- khoj/routers/api_agents.py +1 -1
- khoj/utils/constants.py +7 -6
- {khoj-1.42.3.dev6.dist-info → khoj-1.42.4.dist-info}/METADATA +2 -2
- {khoj-1.42.3.dev6.dist-info → khoj-1.42.4.dist-info}/RECORD +30 -30
- /khoj/interface/compiled/_next/static/{S9K_kSLbHFtg968UB6Ljx → Cv2JBC6ve4VZFIpF82jO8}/_buildManifest.js +0 -0
- /khoj/interface/compiled/_next/static/{S9K_kSLbHFtg968UB6Ljx → Cv2JBC6ve4VZFIpF82jO8}/_ssgManifest.js +0 -0
- {khoj-1.42.3.dev6.dist-info → khoj-1.42.4.dist-info}/WHEEL +0 -0
- {khoj-1.42.3.dev6.dist-info → khoj-1.42.4.dist-info}/entry_points.txt +0 -0
- {khoj-1.42.3.dev6.dist-info → khoj-1.42.4.dist-info}/licenses/LICENSE +0 -0
khoj/utils/constants.py
CHANGED
@@ -17,8 +17,8 @@ default_offline_chat_models = [
|
|
17
17
|
"bartowski/gemma-2-2b-it-GGUF",
|
18
18
|
"bartowski/Qwen2.5-14B-Instruct-GGUF",
|
19
19
|
]
|
20
|
-
default_openai_chat_models = ["gpt-4o-mini", "gpt-4.1"]
|
21
|
-
default_gemini_chat_models = ["gemini-2.0-flash", "gemini-2.5-flash-preview-05-20", "gemini-2.5-pro-preview-05
|
20
|
+
default_openai_chat_models = ["gpt-4o-mini", "gpt-4.1", "o3", "o4-mini"]
|
21
|
+
default_gemini_chat_models = ["gemini-2.0-flash", "gemini-2.5-flash-preview-05-20", "gemini-2.5-pro-preview-06-05"]
|
22
22
|
default_anthropic_chat_models = ["claude-sonnet-4-0", "claude-3-5-haiku-latest"]
|
23
23
|
|
24
24
|
empty_config = {
|
@@ -41,10 +41,11 @@ model_to_cost: Dict[str, Dict[str, float]] = {
|
|
41
41
|
"gpt-4.1": {"input": 2.00, "output": 8.00},
|
42
42
|
"gpt-4.1-mini": {"input": 0.40, "output": 1.60},
|
43
43
|
"gpt-4.1-nano": {"input": 0.10, "output": 0.40},
|
44
|
-
"o1": {"input": 15.0, "output": 60.00},
|
45
|
-
"o3": {"input": 10.0, "output": 40.00},
|
46
44
|
"o1-mini": {"input": 3.0, "output": 12.0},
|
45
|
+
"o1": {"input": 15.0, "output": 60.00},
|
47
46
|
"o3-mini": {"input": 1.10, "output": 4.40},
|
47
|
+
"o3": {"input": 2.0, "output": 8.00},
|
48
|
+
"o3-pro": {"input": 20.0, "output": 80.00},
|
48
49
|
"o4-mini": {"input": 1.10, "output": 4.40},
|
49
50
|
# Gemini Pricing: https://ai.google.dev/pricing
|
50
51
|
"gemini-1.5-flash": {"input": 0.075, "output": 0.30},
|
@@ -53,8 +54,8 @@ model_to_cost: Dict[str, Dict[str, float]] = {
|
|
53
54
|
"gemini-1.5-pro-002": {"input": 1.25, "output": 5.00},
|
54
55
|
"gemini-2.0-flash": {"input": 0.10, "output": 0.40},
|
55
56
|
"gemini-2.0-flash-lite": {"input": 0.0075, "output": 0.30},
|
56
|
-
"gemini-2.5-flash-preview-
|
57
|
-
"gemini-2.5-pro-preview-
|
57
|
+
"gemini-2.5-flash-preview-05-20": {"input": 0.15, "output": 0.60, "thought": 3.50},
|
58
|
+
"gemini-2.5-pro-preview-06-05": {"input": 1.25, "output": 10.0},
|
58
59
|
# Anthropic Pricing: https://www.anthropic.com/pricing#anthropic-api
|
59
60
|
"claude-3-5-haiku-20241022": {"input": 1.0, "output": 5.0, "cache_read": 0.08, "cache_write": 1.0},
|
60
61
|
"claude-3-5-haiku@20241022": {"input": 1.0, "output": 5.0, "cache_read": 0.08, "cache_write": 1.0},
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: khoj
|
3
|
-
Version: 1.42.
|
3
|
+
Version: 1.42.4
|
4
4
|
Summary: Your Second Brain
|
5
5
|
Project-URL: Homepage, https://khoj.dev
|
6
6
|
Project-URL: Documentation, https://docs.khoj.dev
|
@@ -53,7 +53,7 @@ Requires-Dist: magika~=0.5.1
|
|
53
53
|
Requires-Dist: markdown-it-py~=3.0.0
|
54
54
|
Requires-Dist: markdownify~=0.11.6
|
55
55
|
Requires-Dist: openai-whisper>=20231117
|
56
|
-
Requires-Dist: openai>=1.
|
56
|
+
Requires-Dist: openai>=1.86.0
|
57
57
|
Requires-Dist: pgvector==0.2.4
|
58
58
|
Requires-Dist: phonenumbers==8.13.27
|
59
59
|
Requires-Dist: pillow~=10.0.0
|
@@ -130,17 +130,17 @@ khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvt
|
|
130
130
|
khoj/interface/compiled/close.svg,sha256=hQ2iFLkNzHk0_iyTrSbwnWAeXYlgA-c2Eof2Iqh76n4,417
|
131
131
|
khoj/interface/compiled/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
|
132
132
|
khoj/interface/compiled/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
|
133
|
-
khoj/interface/compiled/index.html,sha256=
|
134
|
-
khoj/interface/compiled/index.txt,sha256=
|
133
|
+
khoj/interface/compiled/index.html,sha256=QcSBZ1tiJTyQ9psLkwiDN78QJ3mlBdrx0gscjyFsnzs,53043
|
134
|
+
khoj/interface/compiled/index.txt,sha256=Zk9BqlsawS0PM6mxqWMLaA2NEETlqUaFbFP32iCCASI,7616
|
135
135
|
khoj/interface/compiled/khoj.webmanifest,sha256=9wOK2BMS6xH5NKd2eaUgTLg9WepIxB2K2U33KU89LD8,2543
|
136
136
|
khoj/interface/compiled/logo.svg,sha256=_QCKVYM4WT2Qhcf7aVFImjq_s5CwjynGXYAOgI7yf8w,8059
|
137
137
|
khoj/interface/compiled/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
|
138
138
|
khoj/interface/compiled/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
|
139
139
|
khoj/interface/compiled/thumbs-down.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
|
140
140
|
khoj/interface/compiled/thumbs-up.svg,sha256=yS1wxTRtiztkN-6nZciLoYQUB_KTYNPV8xFRwH2TQFw,1036
|
141
|
-
khoj/interface/compiled/404/index.html,sha256=
|
142
|
-
khoj/interface/compiled/_next/static/
|
143
|
-
khoj/interface/compiled/_next/static/
|
141
|
+
khoj/interface/compiled/404/index.html,sha256=vC70dHcwl63v_QW5KQ_ipa3bOPCF54HbY2Fgz3XrcXY,17097
|
142
|
+
khoj/interface/compiled/_next/static/Cv2JBC6ve4VZFIpF82jO8/_buildManifest.js,sha256=f2_nYnw25hHWQJ-39Lf5OH1u6kgdbOInyfplqgjvAV4,224
|
143
|
+
khoj/interface/compiled/_next/static/Cv2JBC6ve4VZFIpF82jO8/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
144
144
|
khoj/interface/compiled/_next/static/chunks/1243.ea2826fb35adb15a.js,sha256=Y6ceAwyTH4HSGDvBRoBB-RVXRCzGGr8NSPcspYF5OM8,182
|
145
145
|
khoj/interface/compiled/_next/static/chunks/133.392ae90c3b2a67f2.js,sha256=IK-mb9ZlF6uJUdU8AuXsppc99tFL8svJvZtKNZGNtcY,411
|
146
146
|
khoj/interface/compiled/_next/static/chunks/1592.b069bdb7aaddd2eb.js,sha256=VUaP2gjX3W9tA9pOH_VIPG_2BIg7Wk1AICrfU5iHgrk,71096
|
@@ -148,7 +148,7 @@ khoj/interface/compiled/_next/static/chunks/1915-ab4353eaca76f690.js,sha256=qArq
|
|
148
148
|
khoj/interface/compiled/_next/static/chunks/2069.f060659791c0c484.js,sha256=C_oat_BkZcLOHsyJlNN_5I55fB7ee1zkkZ9FT5zOzn4,186
|
149
149
|
khoj/interface/compiled/_next/static/chunks/2117-3537ef9986be74d3.js,sha256=lTuiCOTU8XMmlt22c10pK0DmvUgmNwebKYEeobCK56A,123994
|
150
150
|
khoj/interface/compiled/_next/static/chunks/2170.45431769330fa5b7.js,sha256=C7Puu9x18DhdR5Sh8XXvTzPdP_HTK6WhsJDNW-NoB7o,24019
|
151
|
-
khoj/interface/compiled/_next/static/chunks/2327-
|
151
|
+
khoj/interface/compiled/_next/static/chunks/2327-916342b58294de9c.js,sha256=6iVqDiWlo-0qeThbdg1OxI9V-WiOydsDrytq8EcMPyw,127524
|
152
152
|
khoj/interface/compiled/_next/static/chunks/3237.c4754f02f1a388cb.js,sha256=Z5iOEX0mPj-5tuoU4Bq_IjpAlyc4MURKlBoaExsULTk,177
|
153
153
|
khoj/interface/compiled/_next/static/chunks/3305.1fc7297ba154ee95.js,sha256=mfrpv-asuYmBmbqIh1p3UnPMAxg2pKlxE3Rzmth8O6s,37266
|
154
154
|
khoj/interface/compiled/_next/static/chunks/3332.6313db5217bb1b67.js,sha256=4lNF9JhPQdTX2xDojGOvvanM0Y0VScwM3kmF4p0RHFg,3776
|
@@ -181,7 +181,7 @@ khoj/interface/compiled/_next/static/chunks/6663-133d5db72d2d5f24.js,sha256=XIWY
|
|
181
181
|
khoj/interface/compiled/_next/static/chunks/7127-a6dc754bce8b6855.js,sha256=V5WaHLMHuzeOFqBpw5Jq2LJd6_kwdQ0XmealdH3YPB4,42868
|
182
182
|
khoj/interface/compiled/_next/static/chunks/7140.4be689873f6a2d1f.js,sha256=-77DqIa_YjhKPwY8UvYjH11SaQpSO6FGa6kOvfnnSY8,76618
|
183
183
|
khoj/interface/compiled/_next/static/chunks/7200-cabc57d26c4b32da.js,sha256=xrBbOYRHGcox-mh5cLLDZd1Mj9Qtqq4oeJlnWVFthAU,11380
|
184
|
-
khoj/interface/compiled/_next/static/chunks/7211-
|
184
|
+
khoj/interface/compiled/_next/static/chunks/7211-bc820ef9de53f166.js,sha256=96q0FMJ7i8VEcNJiy09yDG9J0qeRQxEtneqBxi2L_98,1631697
|
185
185
|
khoj/interface/compiled/_next/static/chunks/7647-2aa4cf0e69b7a84d.js,sha256=5F507Hwv8Rs_p8b8VHraNOC6SpYcLFtn7gyZHm9IWWc,24433
|
186
186
|
khoj/interface/compiled/_next/static/chunks/7836.86884157d53d23a1.js,sha256=3_-E1PqyVC-Lp-iwqIDIkiTMWqU_bYXiqi2PzN-ffFk,89887
|
187
187
|
khoj/interface/compiled/_next/static/chunks/7890.f681eb1d1f83bea2.js,sha256=xd1qCSKkEUfSpKWgqUA-iAj4o5Nl-rEhbgvim5fkUKU,33661
|
@@ -206,7 +206,7 @@ khoj/interface/compiled/_next/static/chunks/framework-8e0e0f4a6b83a956.js,sha256
|
|
206
206
|
khoj/interface/compiled/_next/static/chunks/main-63d6432f34cdf74b.js,sha256=bXVce22CrDNgnPypCNcoRkRMzcxj0OXFhFE1ZTZDgjo,111290
|
207
207
|
khoj/interface/compiled/_next/static/chunks/main-app-de1f09df97a3cfc7.js,sha256=bqnztujKItXfFBzQlaBmDZyfJpQt_M93CXOuchJfpD0,471
|
208
208
|
khoj/interface/compiled/_next/static/chunks/polyfills-42372ed130431b0a.js,sha256=CXPB1kyIrcjjyVBBDLWLKI9yEY1ZZbeASUON648vloM,112594
|
209
|
-
khoj/interface/compiled/_next/static/chunks/webpack-
|
209
|
+
khoj/interface/compiled/_next/static/chunks/webpack-1c900156837baf90.js,sha256=3oFQe8pa7Vq3d5sUWd1RhsImK2kNu8sGUfs7nz4Kv2k,4891
|
210
210
|
khoj/interface/compiled/_next/static/chunks/app/layout-baa6e7974e560a7a.js,sha256=7JZS2Pr995Lwu3FeQpAvheLS1Bn5w5HOFsecV2_kyQA,3880
|
211
211
|
khoj/interface/compiled/_next/static/chunks/app/page-45ae5e99e8a61821.js,sha256=ZDK-miJC4A1jLRIqhS-v7mXdalHRyY0Eizo22f7xsUg,31218
|
212
212
|
khoj/interface/compiled/_next/static/chunks/app/_not-found/page-0ec97c4970898f2d.js,sha256=zElhiTkdu2JqrEvJ8Lrxh4HCyfLmPllBHHWOuDtrVlw,1755
|
@@ -215,7 +215,7 @@ khoj/interface/compiled/_next/static/chunks/app/agents/page-2fac1d5ac7192e73.js,
|
|
215
215
|
khoj/interface/compiled/_next/static/chunks/app/automations/layout-7f5c33a70e46b3af.js,sha256=s2wHeQ-ai9rKyU9EjOGY1Yo51L4ZEkjLtML85BqN3Zc,5143
|
216
216
|
khoj/interface/compiled/_next/static/chunks/app/automations/page-ef89ac958e78aa81.js,sha256=IrNnuUQYH0cMgS3OddjPADIYL-JXwPh18LfqAGjAfrA,34830
|
217
217
|
khoj/interface/compiled/_next/static/chunks/app/chat/layout-33934fc2d6ae6838.js,sha256=zKdgnv4zZCkeNWFODWPJKYB3VjkTq4X5LtTCs0sqxaQ,180
|
218
|
-
khoj/interface/compiled/_next/static/chunks/app/chat/page-
|
218
|
+
khoj/interface/compiled/_next/static/chunks/app/chat/page-0b31c505ddbff52d.js,sha256=yFnr4WAopPE5WQxBL2JlkBmQtRAeXgA65ZQuaAc7fNM,29132
|
219
219
|
khoj/interface/compiled/_next/static/chunks/app/search/layout-c02531d586972d7d.js,sha256=VQACqzXZcJUaa3W_0wHsrdLP22pj8yqeAOGBQfVnQxw,180
|
220
220
|
khoj/interface/compiled/_next/static/chunks/app/search/page-afb5e7ed13d221c1.js,sha256=y7Fap-jyzRv5j9diCscAi-E5bQaGh5OFlma1OeaJ5c4,32714
|
221
221
|
khoj/interface/compiled/_next/static/chunks/app/settings/layout-8a22f370d3eaeed3.js,sha256=dIfmM5C_Al-Zh_uqaJmniSxjXbu3LqPzrEw4SQ7vs0I,6132
|
@@ -309,8 +309,8 @@ khoj/interface/compiled/_next/static/media/flags.3afdda2f.webp,sha256=M2AW_HLpBn
|
|
309
309
|
khoj/interface/compiled/_next/static/media/flags@2x.5fbe9fc1.webp,sha256=BBeRPBZkxY3-aKkMnYv5TSkxmbeMbyUH4VRIPfrWg1E,137406
|
310
310
|
khoj/interface/compiled/_next/static/media/globe.98e105ca.webp,sha256=g3ofb8-W9GM75zIhlvQhaS8I2py9TtrovOKR3_7Jf04,514
|
311
311
|
khoj/interface/compiled/_next/static/media/globe@2x.974df6f8.webp,sha256=I_N7Yke3IOoS-0CC6XD8o0IUWG8PdPbrHmf6lpgWlZY,1380
|
312
|
-
khoj/interface/compiled/agents/index.html,sha256=
|
313
|
-
khoj/interface/compiled/agents/index.txt,sha256=
|
312
|
+
khoj/interface/compiled/agents/index.html,sha256=fnc3ZDBczGkmeBNmA2CtgkTiqC3oI0rjR4PsoNDXBMg,16224
|
313
|
+
khoj/interface/compiled/agents/index.txt,sha256=qhdek59Y6kQU5HRJDiC0xd7uh-OfknAWhwELe0f1sOU,7220
|
314
314
|
khoj/interface/compiled/assets/icons/khoj_lantern.ico,sha256=eggu-B_v3z1R53EjOFhIqqPnICBGdoaw1xnc0NrzHck,174144
|
315
315
|
khoj/interface/compiled/assets/icons/khoj_lantern.svg,sha256=I_8XP5X84gEOoCRhCRKOQn_GKZrz3SUBXct7WxHvY7c,8767
|
316
316
|
khoj/interface/compiled/assets/icons/khoj_lantern_1200x1200.png,sha256=xDx0bbD-WMflgg8zck9oPIIuTIvywtuED2k7CjSQS4w,66194
|
@@ -325,16 +325,16 @@ khoj/interface/compiled/assets/samples/desktop-remember-plan-sample.png,sha256=i
|
|
325
325
|
khoj/interface/compiled/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
|
326
326
|
khoj/interface/compiled/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
|
327
327
|
khoj/interface/compiled/assets/samples/phone-remember-plan-sample.png,sha256=Ma3blirRmq3X4oYSsDbbT7MDn29rymDrjwmUfA9BMuM,236285
|
328
|
-
khoj/interface/compiled/automations/index.html,sha256=
|
329
|
-
khoj/interface/compiled/automations/index.txt,sha256=
|
330
|
-
khoj/interface/compiled/chat/index.html,sha256=
|
331
|
-
khoj/interface/compiled/chat/index.txt,sha256=
|
332
|
-
khoj/interface/compiled/search/index.html,sha256=
|
333
|
-
khoj/interface/compiled/search/index.txt,sha256=
|
334
|
-
khoj/interface/compiled/settings/index.html,sha256=
|
335
|
-
khoj/interface/compiled/settings/index.txt,sha256=
|
336
|
-
khoj/interface/compiled/share/chat/index.html,sha256=
|
337
|
-
khoj/interface/compiled/share/chat/index.txt,sha256=
|
328
|
+
khoj/interface/compiled/automations/index.html,sha256=FBDHRUfOk4kGzZRfNom3m_Te3GW2DHdQipJiQflPqEQ,54094
|
329
|
+
khoj/interface/compiled/automations/index.txt,sha256=jIOB7HtoAUnMNgoq6rGRFaAGiQxvIWJ1d0CkNW81SJI,7449
|
330
|
+
khoj/interface/compiled/chat/index.html,sha256=3HcMkJM8XjdS8WGc81aZRki_dsRzWs9lyjguigfwI3s,53222
|
331
|
+
khoj/interface/compiled/chat/index.txt,sha256=lRWlPaQvE4DyaWbgaDp44iLxogZDN0UvBB-8orivT68,7858
|
332
|
+
khoj/interface/compiled/search/index.html,sha256=gNlDnH-s9aE8vLP8ttMmhf27ui6snJaqInZtYgmmkgY,55304
|
333
|
+
khoj/interface/compiled/search/index.txt,sha256=Xf5EBbbkBRSnI64AASeWCyYttPfPS601_HOasTbhMJc,6567
|
334
|
+
khoj/interface/compiled/settings/index.html,sha256=XK4JJlUwkib0-PiPD2NPoLw2pQK8Xm1uA0DpV_kAeNQ,52743
|
335
|
+
khoj/interface/compiled/settings/index.txt,sha256=UNCo9yeAOf7ap3RTtbnDxWCx9Th1jtZHPI-LMbBDfo4,7703
|
336
|
+
khoj/interface/compiled/share/chat/index.html,sha256=IG5tbwFs41hxAUC41tMyKBARSg4dMeSB3fTMAvMee0w,53802
|
337
|
+
khoj/interface/compiled/share/chat/index.txt,sha256=j___DNv_Q4-cJvbjBL53wChTkvwplbCHGB17XN6vkXY,8320
|
338
338
|
khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
|
339
339
|
khoj/interface/email/magic_link.html,sha256=372ESbTPKM9acekuZcOIKOw6kBl-KikFg_L9MOHqJkg,2094
|
340
340
|
khoj/interface/email/task.html,sha256=tY7a0gzVeQ2lSQNu7WyXR_s7VYeWTrxWEj1iHVuoVE4,2813
|
@@ -387,7 +387,7 @@ khoj/processor/content/plaintext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
387
387
|
khoj/processor/content/plaintext/plaintext_to_entries.py,sha256=wFZwK_zIc7gWbRtO9sOHo9KvfhGAzL9psX_nKWYFduo,4975
|
388
388
|
khoj/processor/conversation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
389
389
|
khoj/processor/conversation/prompts.py,sha256=XkLuA8npw4gdfXQqBJqn-13uJd1xoGtnzOsnobFrw5g,54523
|
390
|
-
khoj/processor/conversation/utils.py,sha256=
|
390
|
+
khoj/processor/conversation/utils.py,sha256=XyZVqxzQokl7bkmZB_0TmgbdOmsgesiA49QZeptGsfQ,43812
|
391
391
|
khoj/processor/conversation/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
392
392
|
khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=7QnT5no46slRahe3UlCEmPMVb7LrIcth0pkjVneaq0g,5290
|
393
393
|
khoj/processor/conversation/anthropic/utils.py,sha256=1-hwqMSVgQ5295LhcjKxMmDjDsAKLJC8YCh-D03wEMA,16765
|
@@ -400,7 +400,7 @@ khoj/processor/conversation/offline/utils.py,sha256=51McImxl6u1qgRYvMt7uzsgLGSLq
|
|
400
400
|
khoj/processor/conversation/offline/whisper.py,sha256=DJI-8y8DULO2cQ49m2VOvRyIZ2TxBypc15gM8O3HuMI,470
|
401
401
|
khoj/processor/conversation/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
402
402
|
khoj/processor/conversation/openai/gpt.py,sha256=_i0greQTSxLL5wOCqBot6cIPtdhtBL_y8fZsn8lRmYc,7174
|
403
|
-
khoj/processor/conversation/openai/utils.py,sha256=
|
403
|
+
khoj/processor/conversation/openai/utils.py,sha256=oRnsFOQIP8OotWO8fp1Q-2OXYzk1ePaq73IfVMGpo1M,28850
|
404
404
|
khoj/processor/conversation/openai/whisper.py,sha256=zoEeK1LNCg_tzP4xzYi5vRPzNPGuDGzpkrkG7d1LUn4,447
|
405
405
|
khoj/processor/image/generate.py,sha256=Om57Gz7_I0GgfYONNd2OoGOMbAE-QvUTInkWNKqMXM4,10566
|
406
406
|
khoj/processor/operator/README.md,sha256=QaV00W1IB7i8ZrvhNkpjmFMVDtORFt-OASieRQGE_UE,2308
|
@@ -422,7 +422,7 @@ khoj/processor/tools/online_search.py,sha256=MjTkD9gbf9iRWkzcbP5ZRBGKX9ppBXIk7LE
|
|
422
422
|
khoj/processor/tools/run_code.py,sha256=S1HJcV5zA-n1Ue2a5A7cY3gzsSfYHy3KdLkjkZu3aro,12555
|
423
423
|
khoj/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
424
424
|
khoj/routers/api.py,sha256=BFiKwdYjkR-4aHBumM7Hu4XdN2RvQ0Z9V4_2Wd8aPiM,8633
|
425
|
-
khoj/routers/api_agents.py,sha256=
|
425
|
+
khoj/routers/api_agents.py,sha256=PiQNqqq9ltMsxBnH47cmShCAk1Kbui5UqtNm7tR_FFM,17035
|
426
426
|
khoj/routers/api_automation.py,sha256=SwQGsVcZmtf8g3w8Xz220YhTIT6D4mLwUp_YCYLpbCY,9389
|
427
427
|
khoj/routers/api_chat.py,sha256=ZcfrGxURssTZNv0GXd534TjWQUwpGFJXwyP4VinZd2U,58606
|
428
428
|
khoj/routers/api_content.py,sha256=uLO3eir36rERkhhKU1HOdEv8KTi_z_edT9cHMCZP1W8,24578
|
@@ -447,7 +447,7 @@ khoj/search_type/text_search.py,sha256=PZzJVCXpeBM795SIqiAKXAxgnCp1NIRiVikm040r1
|
|
447
447
|
khoj/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
448
448
|
khoj/utils/cli.py,sha256=fI1XQYMtJzLGOKQZQ5XxFOrC8sGjK3Alnteg5U62rWI,3882
|
449
449
|
khoj/utils/config.py,sha256=aiOkH0je8A30DAGYTHMRePrgJonFv_i07_7CdhhhcdA,1805
|
450
|
-
khoj/utils/constants.py,sha256=
|
450
|
+
khoj/utils/constants.py,sha256=ObF_spY4OkHK6D1mGeeFOaVBsg81XktD2LQsrSV65Mo,4289
|
451
451
|
khoj/utils/fs_syncer.py,sha256=5nqwAZqRk3Nwhkwd8y4IomTPZQmW32GwAqyMzal5KyY,9996
|
452
452
|
khoj/utils/helpers.py,sha256=h-H3ioGB5PIYLBr-SmUjmNBIkN5-YDXsoK5B1DvI3i4,32005
|
453
453
|
khoj/utils/initialization.py,sha256=5eULsvGQv_Kp9bMfrHP8T_QFPjurIFyfq3-rVMWiGa4,15066
|
@@ -456,8 +456,8 @@ khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
|
|
456
456
|
khoj/utils/rawconfig.py,sha256=ASl_h3Ivaa_4lD4kCA0uZsMRgSYCjrgGUPm-Hw1jkLk,5083
|
457
457
|
khoj/utils/state.py,sha256=s_GFWOqRzpEDx0eCPStuzBTK2VEw-qgRpH0aiEdGnDo,1791
|
458
458
|
khoj/utils/yaml.py,sha256=qy1Tkc61rDMesBw_Cyx2vOR6H-Hngcsm5kYfjwQBwkE,1543
|
459
|
-
khoj-1.42.
|
460
|
-
khoj-1.42.
|
461
|
-
khoj-1.42.
|
462
|
-
khoj-1.42.
|
463
|
-
khoj-1.42.
|
459
|
+
khoj-1.42.4.dist-info/METADATA,sha256=aAlwSnBdqdcng-6taXPEFO8EqW2PMUbtDQXxuT9VFYo,8968
|
460
|
+
khoj-1.42.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
461
|
+
khoj-1.42.4.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
462
|
+
khoj-1.42.4.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
463
|
+
khoj-1.42.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|