khoj 1.37.2__py3-none-any.whl → 1.37.3.dev5__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/app/agents/{layout-5961c3717e1d8813.js → layout-948ca256650845ce.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/agents/{page-013290d1487a8879.js → page-df5446aa4fb82e1a.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/automations/{page-03ba7391a044d9c7.js → page-0a44416f9183aec0.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/chat/{page-53cab1cceb3cf72b.js → page-d273748c128b0103.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/{page-e1b468a86df933ad.js → page-aad371f66ac52191.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/search/{layout-9ccd090dcc2aa58a.js → layout-d7f7528ff387fba5.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/search/{page-80e6a849e9094668.js → page-1df7b236b30620f7.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/settings/{page-eb25ff8598b5137a.js → page-3473bab693ef81b2.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/share/chat/{layout-991b6deed2f9eae2.js → layout-246d0e8125219fff.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/share/chat/{page-df6bbbb0f2010e76.js → page-6f26fe7f2f7edc56.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/{webpack-5b68cca74d64e35f.js → webpack-639e8a9d35bd5e13.js} +1 -1
- khoj/interface/compiled/_next/static/css/f29752d6e1be7624.css +1 -0
- khoj/interface/compiled/_next/static/css/{0db53bacf81896f5.css → fca983d49c3dd1a3.css} +1 -1
- khoj/interface/compiled/agents/index.html +2 -2
- khoj/interface/compiled/agents/index.txt +3 -3
- khoj/interface/compiled/automations/index.html +2 -2
- khoj/interface/compiled/automations/index.txt +3 -3
- 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 +3 -3
- khoj/interface/compiled/settings/index.html +2 -2
- khoj/interface/compiled/settings/index.txt +5 -5
- khoj/interface/compiled/share/chat/index.html +2 -2
- khoj/interface/compiled/share/chat/index.txt +3 -3
- khoj/processor/conversation/anthropic/utils.py +10 -2
- khoj/processor/conversation/google/gemini_chat.py +3 -6
- khoj/processor/conversation/google/utils.py +8 -6
- khoj/processor/conversation/openai/gpt.py +4 -0
- khoj/processor/conversation/openai/utils.py +14 -6
- khoj/routers/helpers.py +2 -0
- khoj/routers/research.py +4 -0
- khoj/utils/constants.py +8 -8
- khoj/utils/helpers.py +31 -5
- {khoj-1.37.2.dist-info → khoj-1.37.3.dev5.dist-info}/METADATA +1 -1
- {khoj-1.37.2.dist-info → khoj-1.37.3.dev5.dist-info}/RECORD +50 -50
- khoj/interface/compiled/_next/static/css/55d4a822f8d94b67.css +0 -1
- /khoj/interface/compiled/_next/static/{OMCU-HYObtqt-uYJGIRO2 → CJpmb1iVXzcrEC9TreVsS}/_buildManifest.js +0 -0
- /khoj/interface/compiled/_next/static/{OMCU-HYObtqt-uYJGIRO2 → CJpmb1iVXzcrEC9TreVsS}/_ssgManifest.js +0 -0
- /khoj/interface/compiled/_next/static/chunks/{1915-1943ee8a628b893c.js → 1915-ab4353eaca76f690.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{2117-5a41630a2bd2eae8.js → 2117-1c18aa2098982bf9.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{4363-e6ac2203564d1a3b.js → 4363-4efaf12abe696251.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{4447-e038b251d626c340.js → 4447-5d44807c40355b1a.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{8667-8136f74e9a086fca.js → 8667-adbe6017a66cef10.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{9259-640fdd77408475df.js → 9259-d8bcd9da9e80c81e.js} +0 -0
- {khoj-1.37.2.dist-info → khoj-1.37.3.dev5.dist-info}/WHEEL +0 -0
- {khoj-1.37.2.dist-info → khoj-1.37.3.dev5.dist-info}/entry_points.txt +0 -0
- {khoj-1.37.2.dist-info → khoj-1.37.3.dev5.dist-info}/licenses/LICENSE +0 -0
@@ -51,6 +51,7 @@ def completion_with_backoff(
|
|
51
51
|
temperature=0.8,
|
52
52
|
openai_api_key=None,
|
53
53
|
api_base_url=None,
|
54
|
+
deepthought: bool = False,
|
54
55
|
model_kwargs: dict = {},
|
55
56
|
tracer: dict = {},
|
56
57
|
) -> str:
|
@@ -93,7 +94,9 @@ def completion_with_backoff(
|
|
93
94
|
chunk.usage.model_extra.get("estimated_cost", 0) if hasattr(chunk, "usage") and chunk.usage else 0
|
94
95
|
) # Estimated costs returned by DeepInfra API
|
95
96
|
|
96
|
-
tracer["usage"] = get_chat_usage_metrics(
|
97
|
+
tracer["usage"] = get_chat_usage_metrics(
|
98
|
+
model_name, input_tokens, output_tokens, usage=tracer.get("usage"), cost=cost
|
99
|
+
)
|
97
100
|
|
98
101
|
# Save conversation trace
|
99
102
|
tracer["chat_model"] = model_name
|
@@ -126,13 +129,14 @@ def chat_completion_with_backoff(
|
|
126
129
|
openai_api_key=None,
|
127
130
|
api_base_url=None,
|
128
131
|
completion_func=None,
|
132
|
+
deepthought=False,
|
129
133
|
model_kwargs=None,
|
130
134
|
tracer: dict = {},
|
131
135
|
):
|
132
136
|
g = ThreadedGenerator(compiled_references, online_results, completion_func=completion_func)
|
133
137
|
t = Thread(
|
134
138
|
target=llm_thread,
|
135
|
-
args=(g, messages, model_name, temperature, openai_api_key, api_base_url, model_kwargs, tracer),
|
139
|
+
args=(g, messages, model_name, temperature, openai_api_key, api_base_url, deepthought, model_kwargs, tracer),
|
136
140
|
)
|
137
141
|
t.start()
|
138
142
|
return g
|
@@ -145,6 +149,7 @@ def llm_thread(
|
|
145
149
|
temperature,
|
146
150
|
openai_api_key=None,
|
147
151
|
api_base_url=None,
|
152
|
+
deepthought=False,
|
148
153
|
model_kwargs: dict = {},
|
149
154
|
tracer: dict = {},
|
150
155
|
):
|
@@ -158,10 +163,11 @@ def llm_thread(
|
|
158
163
|
formatted_messages = [{"role": message.role, "content": message.content} for message in messages]
|
159
164
|
|
160
165
|
# Tune reasoning models arguments
|
161
|
-
if model_name.startswith("o1"):
|
162
|
-
temperature = 1
|
163
|
-
elif model_name.startswith("o3"):
|
166
|
+
if model_name.startswith("o1") or model_name.startswith("o3"):
|
164
167
|
temperature = 1
|
168
|
+
model_kwargs["reasoning_effort"] = "medium"
|
169
|
+
|
170
|
+
if model_name.startswith("o3"):
|
165
171
|
# Get the first system message and add the string `Formatting re-enabled` to it.
|
166
172
|
# See https://platform.openai.com/docs/guides/reasoning-best-practices
|
167
173
|
if len(formatted_messages) > 0:
|
@@ -226,7 +232,9 @@ def llm_thread(
|
|
226
232
|
cost = (
|
227
233
|
chunk.usage.model_extra.get("estimated_cost", 0) if hasattr(chunk, "usage") and chunk.usage else 0
|
228
234
|
) # Estimated costs returned by DeepInfra API
|
229
|
-
tracer["usage"] = get_chat_usage_metrics(
|
235
|
+
tracer["usage"] = get_chat_usage_metrics(
|
236
|
+
model_name, input_tokens, output_tokens, usage=tracer.get("usage"), cost=cost
|
237
|
+
)
|
230
238
|
|
231
239
|
# Save conversation trace
|
232
240
|
tracer["chat_model"] = model_name
|
khoj/routers/helpers.py
CHANGED
@@ -1215,6 +1215,7 @@ async def send_message_to_model_wrapper(
|
|
1215
1215
|
model=chat_model_name,
|
1216
1216
|
response_type=response_type,
|
1217
1217
|
response_schema=response_schema,
|
1218
|
+
deepthought=deepthought,
|
1218
1219
|
api_base_url=api_base_url,
|
1219
1220
|
tracer=tracer,
|
1220
1221
|
)
|
@@ -1511,6 +1512,7 @@ def generate_chat_response(
|
|
1511
1512
|
generated_files=raw_generated_files,
|
1512
1513
|
generated_asset_results=generated_asset_results,
|
1513
1514
|
program_execution_context=program_execution_context,
|
1515
|
+
deepthought=deepthought,
|
1514
1516
|
tracer=tracer,
|
1515
1517
|
)
|
1516
1518
|
|
khoj/routers/research.py
CHANGED
@@ -233,6 +233,10 @@ async def execute_information_collection(
|
|
233
233
|
if this_iteration.warning:
|
234
234
|
logger.warning(f"Research mode: {this_iteration.warning}.")
|
235
235
|
|
236
|
+
# Terminate research if query, tool not set for next iteration
|
237
|
+
elif not this_iteration.query or not this_iteration.tool:
|
238
|
+
current_iteration = MAX_ITERATIONS
|
239
|
+
|
236
240
|
elif this_iteration.tool == ConversationCommand.Notes:
|
237
241
|
this_iteration.context = []
|
238
242
|
document_results = []
|
khoj/utils/constants.py
CHANGED
@@ -47,12 +47,12 @@ model_to_cost: Dict[str, Dict[str, float]] = {
|
|
47
47
|
"gemini-1.5-pro": {"input": 1.25, "output": 5.00},
|
48
48
|
"gemini-1.5-pro-002": {"input": 1.25, "output": 5.00},
|
49
49
|
"gemini-2.0-flash": {"input": 0.10, "output": 0.40},
|
50
|
-
# Anthropic Pricing: https://www.anthropic.com/pricing#anthropic-
|
51
|
-
"claude-3-5-haiku-20241022": {"input": 1.0, "output": 5.0},
|
52
|
-
"claude-3-5-haiku@20241022": {"input": 1.0, "output": 5.0},
|
53
|
-
"claude-3-5-sonnet-20241022": {"input": 3.0, "output": 15.0},
|
54
|
-
"claude-3-5-sonnet-latest": {"input": 3.0, "output": 15.0},
|
55
|
-
"claude-3-7-sonnet-20250219": {"input": 3.0, "output": 15.0},
|
56
|
-
"claude-3-7-sonnet@20250219": {"input": 3.0, "output": 15.0},
|
57
|
-
"claude-3-7-sonnet-latest": {"input": 3.0, "output": 15.0},
|
50
|
+
# Anthropic Pricing: https://www.anthropic.com/pricing#anthropic-api
|
51
|
+
"claude-3-5-haiku-20241022": {"input": 1.0, "output": 5.0, "cache_read": 0.08, "cache_write": 1.0},
|
52
|
+
"claude-3-5-haiku@20241022": {"input": 1.0, "output": 5.0, "cache_read": 0.08, "cache_write": 1.0},
|
53
|
+
"claude-3-5-sonnet-20241022": {"input": 3.0, "output": 15.0, "cache_read": 0.3, "cache_write": 3.75},
|
54
|
+
"claude-3-5-sonnet-latest": {"input": 3.0, "output": 15.0, "cache_read": 0.3, "cache_write": 3.75},
|
55
|
+
"claude-3-7-sonnet-20250219": {"input": 3.0, "output": 15.0, "cache_read": 0.3, "cache_write": 3.75},
|
56
|
+
"claude-3-7-sonnet@20250219": {"input": 3.0, "output": 15.0, "cache_read": 0.3, "cache_write": 3.75},
|
57
|
+
"claude-3-7-sonnet-latest": {"input": 3.0, "output": 15.0, "cache_read": 0.3, "cache_write": 3.75},
|
58
58
|
}
|
khoj/utils/helpers.py
CHANGED
@@ -596,7 +596,14 @@ def get_country_name_from_timezone(tz: str) -> str:
|
|
596
596
|
return country_names.get(get_country_code_from_timezone(tz), "United States")
|
597
597
|
|
598
598
|
|
599
|
-
def get_cost_of_chat_message(
|
599
|
+
def get_cost_of_chat_message(
|
600
|
+
model_name: str,
|
601
|
+
input_tokens: int = 0,
|
602
|
+
output_tokens: int = 0,
|
603
|
+
cache_read_tokens: int = 0,
|
604
|
+
cache_write_tokens: int = 0,
|
605
|
+
prev_cost: float = 0.0,
|
606
|
+
):
|
600
607
|
"""
|
601
608
|
Calculate cost of chat message based on input and output tokens
|
602
609
|
"""
|
@@ -604,21 +611,40 @@ def get_cost_of_chat_message(model_name: str, input_tokens: int = 0, output_toke
|
|
604
611
|
# Calculate cost of input and output tokens. Costs are per million tokens
|
605
612
|
input_cost = constants.model_to_cost.get(model_name, {}).get("input", 0) * (input_tokens / 1e6)
|
606
613
|
output_cost = constants.model_to_cost.get(model_name, {}).get("output", 0) * (output_tokens / 1e6)
|
614
|
+
cache_read_cost = constants.model_to_cost.get(model_name, {}).get("cache_read", 0) * (cache_read_tokens / 1e6)
|
615
|
+
cache_write_cost = constants.model_to_cost.get(model_name, {}).get("cache_write", 0) * (cache_write_tokens / 1e6)
|
607
616
|
|
608
|
-
return input_cost + output_cost + prev_cost
|
617
|
+
return input_cost + output_cost + cache_read_cost + cache_write_cost + prev_cost
|
609
618
|
|
610
619
|
|
611
620
|
def get_chat_usage_metrics(
|
612
|
-
model_name: str,
|
621
|
+
model_name: str,
|
622
|
+
input_tokens: int = 0,
|
623
|
+
output_tokens: int = 0,
|
624
|
+
cache_read_tokens: int = 0,
|
625
|
+
cache_write_tokens: int = 0,
|
626
|
+
usage: dict = {},
|
627
|
+
cost: float = None,
|
613
628
|
):
|
614
629
|
"""
|
615
630
|
Get usage metrics for chat message based on input and output tokens and cost
|
616
631
|
"""
|
617
|
-
prev_usage = usage or {
|
632
|
+
prev_usage = usage or {
|
633
|
+
"input_tokens": 0,
|
634
|
+
"output_tokens": 0,
|
635
|
+
"cache_read_tokens": 0,
|
636
|
+
"cache_write_tokens": 0,
|
637
|
+
"cost": 0.0,
|
638
|
+
}
|
618
639
|
return {
|
619
640
|
"input_tokens": prev_usage["input_tokens"] + input_tokens,
|
620
641
|
"output_tokens": prev_usage["output_tokens"] + output_tokens,
|
621
|
-
"
|
642
|
+
"cache_read_tokens": prev_usage.get("cache_read_tokens", 0) + cache_read_tokens,
|
643
|
+
"cache_write_tokens": prev_usage.get("cache_write_tokens", 0) + cache_write_tokens,
|
644
|
+
"cost": cost
|
645
|
+
or get_cost_of_chat_message(
|
646
|
+
model_name, input_tokens, output_tokens, cache_read_tokens, cache_write_tokens, prev_cost=prev_usage["cost"]
|
647
|
+
),
|
622
648
|
}
|
623
649
|
|
624
650
|
|
@@ -127,24 +127,24 @@ khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvt
|
|
127
127
|
khoj/interface/compiled/close.svg,sha256=hQ2iFLkNzHk0_iyTrSbwnWAeXYlgA-c2Eof2Iqh76n4,417
|
128
128
|
khoj/interface/compiled/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
|
129
129
|
khoj/interface/compiled/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
|
130
|
-
khoj/interface/compiled/index.html,sha256=
|
131
|
-
khoj/interface/compiled/index.txt,sha256=
|
130
|
+
khoj/interface/compiled/index.html,sha256=4mywKePob3sNyE4zm94F_tNn2-XifN-yVLgPFnTCJmw,53009
|
131
|
+
khoj/interface/compiled/index.txt,sha256=xiZSx3pOoofxatwN9DgbWMpMHF4CHB1crC5O0d9UF94,7584
|
132
132
|
khoj/interface/compiled/khoj.webmanifest,sha256=9wOK2BMS6xH5NKd2eaUgTLg9WepIxB2K2U33KU89LD8,2543
|
133
133
|
khoj/interface/compiled/logo.svg,sha256=_QCKVYM4WT2Qhcf7aVFImjq_s5CwjynGXYAOgI7yf8w,8059
|
134
134
|
khoj/interface/compiled/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
|
135
135
|
khoj/interface/compiled/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
|
136
136
|
khoj/interface/compiled/thumbs-down.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
|
137
137
|
khoj/interface/compiled/thumbs-up.svg,sha256=yS1wxTRtiztkN-6nZciLoYQUB_KTYNPV8xFRwH2TQFw,1036
|
138
|
-
khoj/interface/compiled/404/index.html,sha256=
|
139
|
-
khoj/interface/compiled/_next/static/
|
140
|
-
khoj/interface/compiled/_next/static/
|
138
|
+
khoj/interface/compiled/404/index.html,sha256=9o9mTeihsIVoKLk6Nct-e7EfOhqQ92AVjB4JfUWSFQs,17063
|
139
|
+
khoj/interface/compiled/_next/static/CJpmb1iVXzcrEC9TreVsS/_buildManifest.js,sha256=f2_nYnw25hHWQJ-39Lf5OH1u6kgdbOInyfplqgjvAV4,224
|
140
|
+
khoj/interface/compiled/_next/static/CJpmb1iVXzcrEC9TreVsS/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
141
141
|
khoj/interface/compiled/_next/static/chunks/1160-8e7e42e77145b712.js,sha256=-QFyQbKtlBEXOxl_xK246z8WERbIc88SU1RehiTjcaI,317731
|
142
142
|
khoj/interface/compiled/_next/static/chunks/1243.ea2826fb35adb15a.js,sha256=Y6ceAwyTH4HSGDvBRoBB-RVXRCzGGr8NSPcspYF5OM8,182
|
143
143
|
khoj/interface/compiled/_next/static/chunks/133.392ae90c3b2a67f2.js,sha256=IK-mb9ZlF6uJUdU8AuXsppc99tFL8svJvZtKNZGNtcY,411
|
144
144
|
khoj/interface/compiled/_next/static/chunks/1592.b069bdb7aaddd2eb.js,sha256=VUaP2gjX3W9tA9pOH_VIPG_2BIg7Wk1AICrfU5iHgrk,71096
|
145
|
-
khoj/interface/compiled/_next/static/chunks/1915-
|
145
|
+
khoj/interface/compiled/_next/static/chunks/1915-ab4353eaca76f690.js,sha256=qArqL3leavWRcZkX4ZuWgemtKnmV6c-_yrNtMu_8SeY,11277
|
146
146
|
khoj/interface/compiled/_next/static/chunks/2069.f060659791c0c484.js,sha256=C_oat_BkZcLOHsyJlNN_5I55fB7ee1zkkZ9FT5zOzn4,186
|
147
|
-
khoj/interface/compiled/_next/static/chunks/2117-
|
147
|
+
khoj/interface/compiled/_next/static/chunks/2117-1c18aa2098982bf9.js,sha256=3KtUs1Aeno0OfsXZ2ymJ0d5HXwO2_Osq2uGIIGiDagI,123994
|
148
148
|
khoj/interface/compiled/_next/static/chunks/2170.45431769330fa5b7.js,sha256=C7Puu9x18DhdR5Sh8XXvTzPdP_HTK6WhsJDNW-NoB7o,24019
|
149
149
|
khoj/interface/compiled/_next/static/chunks/2327-0bbe3ee35f80659f.js,sha256=8yNIQilcj1QOr7dEYHN0zCYS46ckF5KuvrckvgEPEEk,127377
|
150
150
|
khoj/interface/compiled/_next/static/chunks/3237.c4754f02f1a388cb.js,sha256=Z5iOEX0mPj-5tuoU4Bq_IjpAlyc4MURKlBoaExsULTk,177
|
@@ -155,9 +155,9 @@ khoj/interface/compiled/_next/static/chunks/3460.39c2b9b6a3898384.js,sha256=gehY
|
|
155
155
|
khoj/interface/compiled/_next/static/chunks/4299.2aaa569416cfc208.js,sha256=3HJ8OvB9BDJW0-qCBd1eUmChoBAxaCX6R81ftWZ1CHw,21659
|
156
156
|
khoj/interface/compiled/_next/static/chunks/4327.238d15c09a039b8b.js,sha256=mZa4Oyltc9JrokqnalRTjzcvWgX4S3i3REXiHzRYH1o,296536
|
157
157
|
khoj/interface/compiled/_next/static/chunks/4357-d86d3401f6f6f802.js,sha256=KDM1m01Fz-vcAMfxQfYPO6SEZJVK7z4241JOCEvou6Y,45442
|
158
|
-
khoj/interface/compiled/_next/static/chunks/4363-
|
158
|
+
khoj/interface/compiled/_next/static/chunks/4363-4efaf12abe696251.js,sha256=YFO-i3X2LrX9c4MgYY1kPsoRBaqVUkmfAKI62Rz2BVI,468054
|
159
159
|
khoj/interface/compiled/_next/static/chunks/4415.e0c0da5eedae4dd7.js,sha256=DEf8HPEstDFvBflOU0j0ilYHlVJilGcGsLgUx524FZQ,25544
|
160
|
-
khoj/interface/compiled/_next/static/chunks/4447-
|
160
|
+
khoj/interface/compiled/_next/static/chunks/4447-5d44807c40355b1a.js,sha256=Uw8IrcKmVR3wba-FB9maP9i9l_kAYg59r8PN1T_ipQE,19621
|
161
161
|
khoj/interface/compiled/_next/static/chunks/4609-33aa487dff03a9fd.js,sha256=1M6QAfVZa2g2Q4jXRdSI1wjrZ4G9yKjINJt8qyTKm1A,24698
|
162
162
|
khoj/interface/compiled/_next/static/chunks/4610.a1e7f40a759ed2aa.js,sha256=b5JDRPyQv2MsibYoK2TDT76LMAoDTRzFM-fa81mJxow,14102
|
163
163
|
khoj/interface/compiled/_next/static/chunks/4650.41f041da0ad365ad.js,sha256=EZeckNrMc3ZUX_LexPgaeusEq-dGBNEPm7nc5nvb4OM,33902
|
@@ -185,12 +185,12 @@ khoj/interface/compiled/_next/static/chunks/7953.f6fc335a23efb959.js,sha256=8XIn
|
|
185
185
|
khoj/interface/compiled/_next/static/chunks/8254.3145a4fbdcfdca46.js,sha256=sur8InabGfvh1HqNQhwBssc1tCPae_WKQ-efoYU1Q8A,412
|
186
186
|
khoj/interface/compiled/_next/static/chunks/8400.c95e4e79bcd79a56.js,sha256=3SlFozKtF4DYQYPT3hB5M7VEm3e_W71kC19JgADz-3k,19864
|
187
187
|
khoj/interface/compiled/_next/static/chunks/8515-f305779d95dd5780.js,sha256=QyTarawMADcAup6ipG9JMVnvkbkoYh0Ury2EWkflZ3o,1619194
|
188
|
-
khoj/interface/compiled/_next/static/chunks/8667-
|
188
|
+
khoj/interface/compiled/_next/static/chunks/8667-adbe6017a66cef10.js,sha256=kyiAVJTylsiOPFTb63uZn_pMlk4pYhDYt_N7xL76PTM,7214
|
189
189
|
khoj/interface/compiled/_next/static/chunks/8673.be44c4d9e4f1d084.js,sha256=jiE4xU-TbkVC4R60SIgxwdo31T9mbdVBVuhP4H60i94,18629
|
190
190
|
khoj/interface/compiled/_next/static/chunks/8698.a088118fef40d302.js,sha256=mrK-3ZahVSF7sZij3l-PyXKxp-ccXU9orykXDc7YzsM,180
|
191
191
|
khoj/interface/compiled/_next/static/chunks/9022.33974a513a281fd2.js,sha256=6NmDzRbI0NyTisUT04sq9M0czUqvlwZoV4E7Onp-55Q,57192
|
192
192
|
khoj/interface/compiled/_next/static/chunks/90542734.9e6e44b1b45b30fe.js,sha256=5Ivye3p3HC-Ekf-bIPdnvmg_JtYLkCqyRPWtciOmuuo,413716
|
193
|
-
khoj/interface/compiled/_next/static/chunks/9259-
|
193
|
+
khoj/interface/compiled/_next/static/chunks/9259-d8bcd9da9e80c81e.js,sha256=lZJF9qq4_MeSRsHeNPNcxkqh2vhBfag5iAxg6krHA9g,34848
|
194
194
|
khoj/interface/compiled/_next/static/chunks/9334-b22127fe2d39bc60.js,sha256=_TPWqSCbf86Ig1vIEDRLXzloZujDoxpoEWhRPUf6b5U,29065
|
195
195
|
khoj/interface/compiled/_next/static/chunks/9433.b1b5f5d050c43e3c.js,sha256=kMVC0Gg95UqjfQXpGvi-WUSg_kYp0SN7CTPTHxHxDBk,144858
|
196
196
|
khoj/interface/compiled/_next/static/chunks/94ca1967.1b3402358e0e1255.js,sha256=WJXEIy24FD6PNQePg-uahendJMNc03GgnVveitFeshI,1174524
|
@@ -203,32 +203,32 @@ khoj/interface/compiled/_next/static/chunks/framework-8e0e0f4a6b83a956.js,sha256
|
|
203
203
|
khoj/interface/compiled/_next/static/chunks/main-876327ac335776ab.js,sha256=JkQUmA9vh1B4VVGF5dbZ8Kun0AnIVUbZr5IBK90T4Zs,111290
|
204
204
|
khoj/interface/compiled/_next/static/chunks/main-app-de1f09df97a3cfc7.js,sha256=bqnztujKItXfFBzQlaBmDZyfJpQt_M93CXOuchJfpD0,471
|
205
205
|
khoj/interface/compiled/_next/static/chunks/polyfills-42372ed130431b0a.js,sha256=CXPB1kyIrcjjyVBBDLWLKI9yEY1ZZbeASUON648vloM,112594
|
206
|
-
khoj/interface/compiled/_next/static/chunks/webpack-
|
206
|
+
khoj/interface/compiled/_next/static/chunks/webpack-639e8a9d35bd5e13.js,sha256=QSmy64I4VwSeyHlSrBW5sfepv-kKV3QbWXP_rW1NC2Y,4891
|
207
207
|
khoj/interface/compiled/_next/static/chunks/app/layout-bd8210ff1de491d7.js,sha256=8gTcL8-sV5oa7vJRTxlgOpZvhNrsKomsu75DpVpqfE0,3983
|
208
|
-
khoj/interface/compiled/_next/static/chunks/app/page-
|
208
|
+
khoj/interface/compiled/_next/static/chunks/app/page-aad371f66ac52191.js,sha256=WYybaSmeeef9dlJmJZNPM0FYBKrtKu0cNT8ZO9sWYnc,31218
|
209
209
|
khoj/interface/compiled/_next/static/chunks/app/_not-found/page-0ec97c4970898f2d.js,sha256=zElhiTkdu2JqrEvJ8Lrxh4HCyfLmPllBHHWOuDtrVlw,1755
|
210
|
-
khoj/interface/compiled/_next/static/chunks/app/agents/layout-
|
211
|
-
khoj/interface/compiled/_next/static/chunks/app/agents/page-
|
210
|
+
khoj/interface/compiled/_next/static/chunks/app/agents/layout-948ca256650845ce.js,sha256=90UW-xl1JYse_51fviRzfAE7LpAwkMxCymL-V2vJ6v4,3455
|
211
|
+
khoj/interface/compiled/_next/static/chunks/app/agents/page-df5446aa4fb82e1a.js,sha256=I_L7ZSMnaB2S_8G4GqkbnjSZH8IPvZV6j9b-3Afr8e8,18314
|
212
212
|
khoj/interface/compiled/_next/static/chunks/app/automations/layout-7f5c33a70e46b3af.js,sha256=s2wHeQ-ai9rKyU9EjOGY1Yo51L4ZEkjLtML85BqN3Zc,5143
|
213
|
-
khoj/interface/compiled/_next/static/chunks/app/automations/page-
|
213
|
+
khoj/interface/compiled/_next/static/chunks/app/automations/page-0a44416f9183aec0.js,sha256=kNkQ123aqeoAe5yTaHWdSUMGaK_JJYHYASI3tYTiNbI,34831
|
214
214
|
khoj/interface/compiled/_next/static/chunks/app/chat/layout-603285e3b1400e74.js,sha256=jbpQcSbkDmThEkwRrkjoPtYprnltiMeVRA4Mr5XXz6g,3455
|
215
|
-
khoj/interface/compiled/_next/static/chunks/app/chat/page-
|
216
|
-
khoj/interface/compiled/_next/static/chunks/app/search/layout-
|
217
|
-
khoj/interface/compiled/_next/static/chunks/app/search/page-
|
215
|
+
khoj/interface/compiled/_next/static/chunks/app/chat/page-d273748c128b0103.js,sha256=dmvRZosKH-SUZ4K8yVQjpzFiVtS3COnSa4oWqWmh76o,28289
|
216
|
+
khoj/interface/compiled/_next/static/chunks/app/search/layout-d7f7528ff387fba5.js,sha256=gqFAh3XbMePX_EKoABr5uOnxwNLGa-cl5G84h0cGcnM,3455
|
217
|
+
khoj/interface/compiled/_next/static/chunks/app/search/page-1df7b236b30620f7.js,sha256=pMegRbrl32l9jxn1EvT9u-o877tSZ9jzOq7keoNxeDQ,32714
|
218
218
|
khoj/interface/compiled/_next/static/chunks/app/settings/layout-a7262b2bb8c7ae64.js,sha256=lvyfWVLYyJsxhQvh5UWUVUBM71nmq9DdsmmnVfFXCgk,9401
|
219
|
-
khoj/interface/compiled/_next/static/chunks/app/settings/page-
|
220
|
-
khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-
|
221
|
-
khoj/interface/compiled/_next/static/chunks/app/share/chat/page-
|
219
|
+
khoj/interface/compiled/_next/static/chunks/app/settings/page-3473bab693ef81b2.js,sha256=NJ-y_h09m915fni0dLftBeDlzkWKP50XbtXbFU-tJZM,30570
|
220
|
+
khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-246d0e8125219fff.js,sha256=T-U3NCxwKqNYQ0Y40U0zFgL-fHEZu30sQbK4lalDNrE,3455
|
221
|
+
khoj/interface/compiled/_next/static/chunks/app/share/chat/page-6f26fe7f2f7edc56.js,sha256=e6wQT-yRzXBuJXjT7CobubWPIVed2NbvP1VxTC186HU,4826
|
222
222
|
khoj/interface/compiled/_next/static/chunks/pages/_app-3c9ca398d360b709.js,sha256=UqtikLsCsOWtDUJOW6Tuk9P-bV1V3MhYd3ghrQuEmfs,286
|
223
223
|
khoj/interface/compiled/_next/static/chunks/pages/_error-cf5ca766ac8f493f.js,sha256=w_It3VzKT8O1M3CrJ_hZHsaU7M7dq3EAaVG8KvJ-fhU,253
|
224
|
-
khoj/interface/compiled/_next/static/css/0db53bacf81896f5.css,sha256=7Kq40hXKsqTnQEz4otvA49gEDms7a0XAFCB0rwrnXQo,30547
|
225
224
|
khoj/interface/compiled/_next/static/css/37a73b87f02df402.css,sha256=hp0vlekKu0K2eITR5YIqFmLHQPqV3JETFnRd_-Uh0mk,165
|
226
|
-
khoj/interface/compiled/_next/static/css/55d4a822f8d94b67.css,sha256=b-RKnqiBrS6JXlJlzLyBaduMx3mJEF8LLjNKyxUW9lA,6259
|
227
225
|
khoj/interface/compiled/_next/static/css/7889a30fe9c83846.css,sha256=IUkZhkx4GpYOIhN-EJw9T1DqGMO3Wa3mNpUwaOBuZoY,7204
|
228
226
|
khoj/interface/compiled/_next/static/css/b061a6aedf367349.css,sha256=TBw0S55aM8UbisYpvbVjM9Ch7bUG16L5WlNXd6KTs1g,3075676
|
229
227
|
khoj/interface/compiled/_next/static/css/b15666ef52060cd0.css,sha256=JMH_WAG7ZoebkDxeKdDq1L4liB_nAh3ayim8JT6r1Js,1737
|
230
228
|
khoj/interface/compiled/_next/static/css/e4eb883b5265d372.css,sha256=6LaW-lQ_ZpgOJNWYwU1Q1egXZ1aqJDEuRj66oRCIU_E,17748
|
231
229
|
khoj/interface/compiled/_next/static/css/ea5485b3f3859a5a.css,sha256=tn6qi2xSLTWhtzDUE8UlC8iipH9QGV6A9oGj1ap-Sk4,1659
|
230
|
+
khoj/interface/compiled/_next/static/css/f29752d6e1be7624.css,sha256=mLPRnYpBFaVhTMJ3CFou5_lrwLJs2mhBlAjNY2lrRYs,6354
|
231
|
+
khoj/interface/compiled/_next/static/css/fca983d49c3dd1a3.css,sha256=3F1qPtz6PQG-gIpo8h3rAfxreAc2Uvxy8F_G2e78EsM,30452
|
232
232
|
khoj/interface/compiled/_next/static/media/1d8a05b60287ae6c-s.p.woff2,sha256=IzKBwB_bpSGvO7C9aRv29Js-jAbZPRDI-D-P4H2P918,14508
|
233
233
|
khoj/interface/compiled/_next/static/media/2aa11a72f7f24b58-s.woff2,sha256=QjuuSKmViymmy-itXLB1UbSARxFNHWuMiPpCrYqClFI,22728
|
234
234
|
khoj/interface/compiled/_next/static/media/383a65b63658737d-s.woff2,sha256=VH1XkI87HdFVhsurH5D5ekEjG_ZORTVBVg6xz7p87C8,16704
|
@@ -306,8 +306,8 @@ khoj/interface/compiled/_next/static/media/flags.3afdda2f.webp,sha256=M2AW_HLpBn
|
|
306
306
|
khoj/interface/compiled/_next/static/media/flags@2x.5fbe9fc1.webp,sha256=BBeRPBZkxY3-aKkMnYv5TSkxmbeMbyUH4VRIPfrWg1E,137406
|
307
307
|
khoj/interface/compiled/_next/static/media/globe.98e105ca.webp,sha256=g3ofb8-W9GM75zIhlvQhaS8I2py9TtrovOKR3_7Jf04,514
|
308
308
|
khoj/interface/compiled/_next/static/media/globe@2x.974df6f8.webp,sha256=I_N7Yke3IOoS-0CC6XD8o0IUWG8PdPbrHmf6lpgWlZY,1380
|
309
|
-
khoj/interface/compiled/agents/index.html,sha256=
|
310
|
-
khoj/interface/compiled/agents/index.txt,sha256=
|
309
|
+
khoj/interface/compiled/agents/index.html,sha256=UKZGv1k0MIWOV7rWaGPQm6CISljTo-hdf83d3ah7IEA,19256
|
310
|
+
khoj/interface/compiled/agents/index.txt,sha256=_9LOxjB45dHxQDZityVHpG9-FT15aBwwcaZEUk48aBU,8706
|
311
311
|
khoj/interface/compiled/assets/icons/khoj_lantern.ico,sha256=eggu-B_v3z1R53EjOFhIqqPnICBGdoaw1xnc0NrzHck,174144
|
312
312
|
khoj/interface/compiled/assets/icons/khoj_lantern.svg,sha256=I_8XP5X84gEOoCRhCRKOQn_GKZrz3SUBXct7WxHvY7c,8767
|
313
313
|
khoj/interface/compiled/assets/icons/khoj_lantern_1200x1200.png,sha256=xDx0bbD-WMflgg8zck9oPIIuTIvywtuED2k7CjSQS4w,66194
|
@@ -322,16 +322,16 @@ khoj/interface/compiled/assets/samples/desktop-remember-plan-sample.png,sha256=i
|
|
322
322
|
khoj/interface/compiled/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
|
323
323
|
khoj/interface/compiled/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
|
324
324
|
khoj/interface/compiled/assets/samples/phone-remember-plan-sample.png,sha256=Ma3blirRmq3X4oYSsDbbT7MDn29rymDrjwmUfA9BMuM,236285
|
325
|
-
khoj/interface/compiled/automations/index.html,sha256=
|
326
|
-
khoj/interface/compiled/automations/index.txt,sha256=
|
327
|
-
khoj/interface/compiled/chat/index.html,sha256=
|
328
|
-
khoj/interface/compiled/chat/index.txt,sha256=
|
329
|
-
khoj/interface/compiled/search/index.html,sha256=
|
330
|
-
khoj/interface/compiled/search/index.txt,sha256=
|
331
|
-
khoj/interface/compiled/settings/index.html,sha256=
|
332
|
-
khoj/interface/compiled/settings/index.txt,sha256=
|
333
|
-
khoj/interface/compiled/share/chat/index.html,sha256=
|
334
|
-
khoj/interface/compiled/share/chat/index.txt,sha256=
|
325
|
+
khoj/interface/compiled/automations/index.html,sha256=vO9T8RcRVnGNFXJ963fPuk1RqtN-SI6GNL6pgRwoq5s,55923
|
326
|
+
khoj/interface/compiled/automations/index.txt,sha256=1sTq6jmLg8x8UgO8v8cOHGMzUJQkGGzIF5wTpN0Suxg,8303
|
327
|
+
khoj/interface/compiled/chat/index.html,sha256=KfJC7IAnOYO0rpW2jgtQVxd7UVlI926JaoPcNSBFbgs,56251
|
328
|
+
khoj/interface/compiled/chat/index.txt,sha256=KB-YRalrtFWYBGomqVnRM45BFwf4at307ph32Rnz_KA,9342
|
329
|
+
khoj/interface/compiled/search/index.html,sha256=vV8IkMf3LYweCkqqPnLyZTte2ly8vHTWPUIKTW1T0QA,58213
|
330
|
+
khoj/interface/compiled/search/index.txt,sha256=HJmBqbCCc-4sjBCLucLTiEB-BSA2YAHzyU_-IrP48FI,7990
|
331
|
+
khoj/interface/compiled/settings/index.html,sha256=T-O7qzEJ9eCF-sn1PDklJ9xCdehIVTd2C84A_hTnWHg,55947
|
332
|
+
khoj/interface/compiled/settings/index.txt,sha256=qcwK_e76gnLDPRUBrSDFhkiU8xLwd3N2yKGjtIXUIAA,9431
|
333
|
+
khoj/interface/compiled/share/chat/index.html,sha256=QYcHff-Yhj7Az5YHRO_mFuzk2HIhqEiF7NtwLHyLVsI,56843
|
334
|
+
khoj/interface/compiled/share/chat/index.txt,sha256=g0Qwb4d_o5yN_FakxaCErV3NTX5bH9R9MdfkSgqRLz4,9810
|
335
335
|
khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
|
336
336
|
khoj/interface/email/magic_link.html,sha256=372ESbTPKM9acekuZcOIKOw6kBl-KikFg_L9MOHqJkg,2094
|
337
337
|
khoj/interface/email/task.html,sha256=tY7a0gzVeQ2lSQNu7WyXR_s7VYeWTrxWEj1iHVuoVE4,2813
|
@@ -387,17 +387,17 @@ khoj/processor/conversation/prompts.py,sha256=wM7XmOztzFdHN4xXe340bahVt9rb96SSE4
|
|
387
387
|
khoj/processor/conversation/utils.py,sha256=TYASt3HV3Rm0s2oc9yBZu7H52O7D2kpPiRJhBpouiJE,33942
|
388
388
|
khoj/processor/conversation/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
389
389
|
khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=lFsHMq1WgW7r9KWYOlYR0jqj-7xfwyP9Iw9MIOcTbhg,9228
|
390
|
-
khoj/processor/conversation/anthropic/utils.py,sha256=
|
390
|
+
khoj/processor/conversation/anthropic/utils.py,sha256=Yns9eVGcLFlJDz17EVBCvjj31zNM3AXhVV-23W06_Pc,9460
|
391
391
|
khoj/processor/conversation/google/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
392
|
-
khoj/processor/conversation/google/gemini_chat.py,sha256=
|
393
|
-
khoj/processor/conversation/google/utils.py,sha256=
|
392
|
+
khoj/processor/conversation/google/gemini_chat.py,sha256=jTAwoSxZb57KFKVDpAqv48hTaBrClPxDZ0qIZcyg2PY,9250
|
393
|
+
khoj/processor/conversation/google/utils.py,sha256=Zoz5A-esxCKvi8mJl80Deaarv_5wpOPx6WPfydwtUxk,11962
|
394
394
|
khoj/processor/conversation/offline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
395
395
|
khoj/processor/conversation/offline/chat_model.py,sha256=Sr0VpCipeWdEnuOQjgBo89uPZzQkQRSdTo5fm0EZTpI,11326
|
396
396
|
khoj/processor/conversation/offline/utils.py,sha256=51McImxl6u1qgRYvMt7uzsgLGSLq5SMFy74ymlNjIcc,3033
|
397
397
|
khoj/processor/conversation/offline/whisper.py,sha256=DJI-8y8DULO2cQ49m2VOvRyIZ2TxBypc15gM8O3HuMI,470
|
398
398
|
khoj/processor/conversation/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
399
|
-
khoj/processor/conversation/openai/gpt.py,sha256=
|
400
|
-
khoj/processor/conversation/openai/utils.py,sha256=
|
399
|
+
khoj/processor/conversation/openai/gpt.py,sha256=svdfFZtQz5J9Wf3aOn750u89Qj6Ys-xXEn0ZP7eRr1E,8965
|
400
|
+
khoj/processor/conversation/openai/utils.py,sha256=N8V8RuxvmPNsb0sJTCjTcTSzSC4Bh6LubS0RerMlOVw,9522
|
401
401
|
khoj/processor/conversation/openai/whisper.py,sha256=zoEeK1LNCg_tzP4xzYi5vRPzNPGuDGzpkrkG7d1LUn4,447
|
402
402
|
khoj/processor/image/generate.py,sha256=FAIIsr8TIHxWxK-INNK4jJOOswBxQFyi_G4tI8NNEI8,10571
|
403
403
|
khoj/processor/speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -415,9 +415,9 @@ khoj/routers/api_phone.py,sha256=p9yfc4WeMHDC0hg3aQk60a2VBy8rZPdEnz9wdJ7DzkU,220
|
|
415
415
|
khoj/routers/api_subscription.py,sha256=qnbKwA6N1TWK8Aiu1FFLka_JhbPOuwqT262NSHGZDiQ,5569
|
416
416
|
khoj/routers/auth.py,sha256=W6iKUDdZ4rUwl-LAjiunTjvKJtEupVRIOSKXBseMXMY,10659
|
417
417
|
khoj/routers/email.py,sha256=wvr6_fpk0RuKcTPC6suI8JDZPLYzJ9hAhz_G41yZytc,3923
|
418
|
-
khoj/routers/helpers.py,sha256=
|
418
|
+
khoj/routers/helpers.py,sha256=qqwbMjcnMtT3Hiy_SHZaCHZ7DL0AWBWLkx4mkb9LsxI,96731
|
419
419
|
khoj/routers/notion.py,sha256=g53xyYFmjr2JnuIrTW2vytbfkiK_UkoRTxqnnLSmD5o,2802
|
420
|
-
khoj/routers/research.py,sha256=
|
420
|
+
khoj/routers/research.py,sha256=RJWJa2BzZQEB9bE0a4DBL_Gw0Vwis4eJmqdxJC-Pfuw,18161
|
421
421
|
khoj/routers/storage.py,sha256=lao0DvsF49QleZvOdjKM98RU2cGfCJDBb7WeoI7Rr3I,2172
|
422
422
|
khoj/routers/twilio.py,sha256=MLsuCm4--ETvr3sLxbF0CL_ehlg_l2rKBSLR2Qh2Xls,1081
|
423
423
|
khoj/routers/web_client.py,sha256=_vyfDaHZZjNoI2LwGNQFRiFmGLkNcgYJe7dOr3mrxH8,4386
|
@@ -431,17 +431,17 @@ khoj/search_type/text_search.py,sha256=PZzJVCXpeBM795SIqiAKXAxgnCp1NIRiVikm040r1
|
|
431
431
|
khoj/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
432
432
|
khoj/utils/cli.py,sha256=IIZ2qH0v7Jmqw3JRH1K5EMp9TRze6en3GYsASnglMEM,3916
|
433
433
|
khoj/utils/config.py,sha256=aiOkH0je8A30DAGYTHMRePrgJonFv_i07_7CdhhhcdA,1805
|
434
|
-
khoj/utils/constants.py,sha256=
|
434
|
+
khoj/utils/constants.py,sha256=nMOZy2lfxI8H4zAGOI81QXPQsL1HJWkXB3Hs-UBC4M8,2848
|
435
435
|
khoj/utils/fs_syncer.py,sha256=5nqwAZqRk3Nwhkwd8y4IomTPZQmW32GwAqyMzal5KyY,9996
|
436
|
-
khoj/utils/helpers.py,sha256=
|
436
|
+
khoj/utils/helpers.py,sha256=SRAotrYgxvyzti4FXdOAL7tjdxplRtGyaCK5tDJqPy0,27290
|
437
437
|
khoj/utils/initialization.py,sha256=wDBlLAmKWKYEpZKEyxbOo0Cos9_CrUoVLkiy9SwqzfY,14723
|
438
438
|
khoj/utils/jsonl.py,sha256=0Ac_COqr8sLCXntzZtquxuCEVRM2c3yKeDRGhgOBRpQ,1192
|
439
439
|
khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
|
440
440
|
khoj/utils/rawconfig.py,sha256=wfZTk-Aifb-_q9Yh-NPfh9LlLTioYG-yBqrasgvo4pc,5045
|
441
441
|
khoj/utils/state.py,sha256=axjZhnby8L3bY-N1VVoWgBH1RpFGK6U3_ZeNo1Kt7hs,1679
|
442
442
|
khoj/utils/yaml.py,sha256=qy1Tkc61rDMesBw_Cyx2vOR6H-Hngcsm5kYfjwQBwkE,1543
|
443
|
-
khoj-1.37.
|
444
|
-
khoj-1.37.
|
445
|
-
khoj-1.37.
|
446
|
-
khoj-1.37.
|
447
|
-
khoj-1.37.
|
443
|
+
khoj-1.37.3.dev5.dist-info/METADATA,sha256=aJoOKdgkeQ_13D-dN7EyBsHkX5TesUcbrCZM0IiFgl0,7720
|
444
|
+
khoj-1.37.3.dev5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
445
|
+
khoj-1.37.3.dev5.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
446
|
+
khoj-1.37.3.dev5.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
447
|
+
khoj-1.37.3.dev5.dist-info/RECORD,,
|
@@ -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}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}}.loginPrompt_gsiMaterialButton__8QVFH{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-appearance:none;background-image:none;border-radius:20px;box-sizing:border-box;color:#1f1f1f;cursor:pointer;font-family:Roboto,arial,sans-serif;font-size:14px;height:40px;letter-spacing:.25px;outline:none;overflow:hidden;padding:0;position:relative;text-align:center;transition:background-color .218s,border-color .218s,box-shadow .218s;vertical-align:middle;white-space:nowrap;width:40px;max-width:400px;min-width:-moz-min-content;min-width:min-content}.loginPrompt_gsiMaterialButton__8QVFH .loginPrompt_gsiMaterialButtonIcon__6TSC5{height:100%;min-width:20px;width:100%;margin:0;padding:9px}.loginPrompt_gsiMaterialButton__8QVFH .loginPrompt_gsiMaterialButtonContentWrapper__9tahB{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;height:100%;justify-content:space-between;position:relative;width:100%}.loginPrompt_gsiMaterialButton__8QVFH .loginPrompt_gsiMaterialButtonContents__3_YcB{flex-grow:1;font-family:Roboto,arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.loginPrompt_gsiMaterialButton__8QVFH .loginPrompt_gsiMaterialButtonState__CDGQm{transition:opacity .218s;bottom:0;left:0;opacity:0;position:absolute;right:0;top:0}.loginPrompt_gsiMaterialButton__8QVFH:disabled{cursor:default;background-color:#ffffff61;border-color:#1f1f1f1f}.loginPrompt_gsiMaterialButton__8QVFH:disabled .loginPrompt_gsiMaterialButtonContents__3_YcB,.loginPrompt_gsiMaterialButton__8QVFH:disabled .loginPrompt_gsiMaterialButtonIcon__6TSC5{opacity:38%}.loginPrompt_gsiMaterialButton__8QVFH:not(:disabled):active .loginPrompt_gsiMaterialButton-State__mAfCZ,.loginPrompt_gsiMaterialButton__8QVFH:not(:disabled):focus .loginPrompt_gsiMaterialButtonState__CDGQm{background-color:#303030;opacity:12%}.loginPrompt_gsiMaterialButton__8QVFH:not(:disabled):hover{box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15)}.loginPrompt_gsiMaterialButton__8QVFH:not(:disabled):hover .loginPrompt_gsiMaterialButtonState__CDGQm{background-color:#303030;opacity:8%}div.sidePanel_session__EeNjH{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__CUgIn{grid-template-columns:minmax(12rem,100%) 1fr 1fr}div.sidePanel_sessionHover__cf_VO,div.sidePanel_session__EeNjH:hover{background-color:hsla(var(--popover))}div.sidePanel_session__EeNjH:hover{color:hsla(var(--popover-foreground))}div.sidePanel_session__EeNjH a{text-decoration:none}button.sidePanel_button__NzdN_{border:none;outline:none;background-color:transparent;cursor:pointer;color:var(--main-text-color);width:24px}button.sidePanel_showMoreButton__nDt4Z{border-radius:.5rem;padding:8px}div.sidePanel_panel__9offQ{display:flex;flex-direction:column;padding:1rem;overflow-y:auto;max-width:auto;transition:background-color .5s}div.sidePanel_expanded__aHnYV{gap:1rem;background-color:hsla(var(--muted));height:100%}div.sidePanel_collapsed__ewO3e{display:grid;grid-template-columns:1fr;height:-moz-fit-content;height:fit-content;padding:1rem 0 0 1rem}p.sidePanel_session__EeNjH{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-align:left;font-size:small}p.sidePanel_compressed__CUgIn{width:11rem}p.sidePanel_expanded__aHnYV{max-width:20rem}div.sidePanel_header__NCT_v{display:grid;grid-template-columns:1fr auto}div.sidePanel_profile__pfAJU{display:grid;grid-template-columns:auto 1fr;gap:1rem;align-items:center;margin-top:auto}div.sidePanel_panelWrapper__cDMvb{display:grid;grid-template-rows:1fr auto auto;height:100%}div.sidePanel_modalSessionsList___u3aa{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___u3aa div.sidePanel_content__z60YO{max-width:80%;max-height:80%;background-color:hsla(var(--frosted-background-color));overflow:auto;padding:20px;border-radius:10px}div.sidePanel_modalSessionsList___u3aa div.sidePanel_session__EeNjH{max-width:100%;text-overflow:ellipsis}@media screen and (max-width:768px){div.sidePanel_panel__9offQ{padding:.25rem;width:100%}div.sidePanel_expanded__aHnYV{z-index:1}div.sidePanel_singleReference__vmXZr{padding:4px}div.sidePanel_panelWrapper__cDMvb{width:100%;padding:0 1rem}div.sidePanel_session__EeNjH.sidePanel_compressed__CUgIn{max-width:100%;display:grid;grid-template-columns:70vw auto;justify-content:space-between}div.sidePanel_session__EeNjH{max-width:100%;grid-template-columns:minmax(auto,70vw) 1fr}}.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.automations_automationsLayout__Atoh_{display:grid;grid-template-columns:1fr 1fr;gap:1rem}div.automations_automationCard__BKidA{display:grid;grid-template-rows:auto 1fr auto}div.automations_pageLayout__OaoYA{max-width:60vw;margin:auto auto 2rem}@media screen and (max-width:768px){div.automations_automationsLayout__Atoh_{grid-template-columns:1fr}div.automations_pageLayout__OaoYA{max-width:90vw}}
|
File without changes
|
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{1915-1943ee8a628b893c.js → 1915-ab4353eaca76f690.js}
RENAMED
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{2117-5a41630a2bd2eae8.js → 2117-1c18aa2098982bf9.js}
RENAMED
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{4363-e6ac2203564d1a3b.js → 4363-4efaf12abe696251.js}
RENAMED
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{4447-e038b251d626c340.js → 4447-5d44807c40355b1a.js}
RENAMED
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{8667-8136f74e9a086fca.js → 8667-adbe6017a66cef10.js}
RENAMED
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{9259-640fdd77408475df.js → 9259-d8bcd9da9e80c81e.js}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|