khoj 1.42.4.dev1__py3-none-any.whl → 1.42.5.dev6__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/database/models/__init__.py +1 -1
- 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/agents/layout-e49165209d2e406c.js +1 -0
- khoj/interface/compiled/_next/static/chunks/app/chat/layout-33934fc2d6ae6838.js +1 -0
- khoj/interface/compiled/_next/static/chunks/app/chat/{page-0b8cd503b9723fd3.js → page-0b31c505ddbff52d.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-6fb51c5c80f8ec67.js +1 -0
- khoj/interface/compiled/_next/static/chunks/{webpack-66805ff7f301c13a.js → webpack-84073cf579f4406f.js} +1 -1
- khoj/interface/compiled/_next/static/css/{c34713c98384ee87.css → 2945c4a857922f3b.css} +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 +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 +2 -2
- khoj/interface/compiled/settings/index.html +2 -2
- khoj/interface/compiled/settings/index.txt +4 -4
- khoj/interface/compiled/share/chat/index.html +2 -2
- khoj/interface/compiled/share/chat/index.txt +2 -2
- khoj/processor/conversation/google/utils.py +24 -9
- khoj/processor/conversation/openai/utils.py +71 -36
- khoj/processor/conversation/utils.py +23 -9
- khoj/utils/constants.py +7 -6
- {khoj-1.42.4.dev1.dist-info → khoj-1.42.5.dev6.dist-info}/METADATA +2 -2
- {khoj-1.42.4.dev1.dist-info → khoj-1.42.5.dev6.dist-info}/RECORD +41 -41
- khoj/interface/compiled/_next/static/chunks/app/agents/layout-4e2a134ec26aa606.js +0 -1
- khoj/interface/compiled/_next/static/chunks/app/chat/layout-ad4d1792ab1a4108.js +0 -1
- khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-e8e5db7830bf3f47.js +0 -1
- /khoj/interface/compiled/_next/static/{YzN1Uv2RYxwjHlNYy9Loa → 9KBUVBqsJoQnKgtWMmcMN}/_buildManifest.js +0 -0
- /khoj/interface/compiled/_next/static/{YzN1Uv2RYxwjHlNYy9Loa → 9KBUVBqsJoQnKgtWMmcMN}/_ssgManifest.js +0 -0
- /khoj/interface/compiled/_next/static/chunks/{1915-ab4353eaca76f690.js → 1915-1943ee8a628b893c.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{2117-3537ef9986be74d3.js → 2117-056a00add390772b.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{4363-4efaf12abe696251.js → 4363-e6ac2203564d1a3b.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{4447-5d44807c40355b1a.js → 4447-e038b251d626c340.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{8667-adbe6017a66cef10.js → 8667-8136f74e9a086fca.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{9259-d8bcd9da9e80c81e.js → 9259-640fdd77408475df.js} +0 -0
- {khoj-1.42.4.dev1.dist-info → khoj-1.42.5.dev6.dist-info}/WHEEL +0 -0
- {khoj-1.42.4.dev1.dist-info → khoj-1.42.5.dev6.dist-info}/entry_points.txt +0 -0
- {khoj-1.42.4.dev1.dist-info → khoj-1.42.5.dev6.dist-info}/licenses/LICENSE +0 -0
@@ -14,6 +14,7 @@ from openai.lib.streaming.chat import (
|
|
14
14
|
ChatCompletionStreamEvent,
|
15
15
|
ContentDeltaEvent,
|
16
16
|
)
|
17
|
+
from openai.types.chat.chat_completion import ChatCompletion
|
17
18
|
from openai.types.chat.chat_completion_chunk import (
|
18
19
|
ChatCompletionChunk,
|
19
20
|
Choice,
|
@@ -78,7 +79,11 @@ def completion_with_backoff(
|
|
78
79
|
client = get_openai_client(openai_api_key, api_base_url)
|
79
80
|
openai_clients[client_key] = client
|
80
81
|
|
82
|
+
stream = not is_non_streaming_model(model_name, api_base_url)
|
81
83
|
stream_processor = default_stream_processor
|
84
|
+
if stream:
|
85
|
+
model_kwargs["stream_options"] = {"include_usage": True}
|
86
|
+
|
82
87
|
formatted_messages = format_message_for_api(messages, api_base_url)
|
83
88
|
|
84
89
|
# Tune reasoning models arguments
|
@@ -109,23 +114,33 @@ def completion_with_backoff(
|
|
109
114
|
add_qwen_no_think_tag(formatted_messages)
|
110
115
|
|
111
116
|
read_timeout = 300 if is_local_api(api_base_url) else 60
|
112
|
-
model_kwargs["stream_options"] = {"include_usage": True}
|
113
117
|
if os.getenv("KHOJ_LLM_SEED"):
|
114
118
|
model_kwargs["seed"] = int(os.getenv("KHOJ_LLM_SEED"))
|
115
119
|
|
116
120
|
aggregated_response = ""
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
121
|
+
if stream:
|
122
|
+
with client.beta.chat.completions.stream(
|
123
|
+
messages=formatted_messages, # type: ignore
|
124
|
+
model=model_name,
|
125
|
+
temperature=temperature,
|
126
|
+
timeout=httpx.Timeout(30, read=read_timeout),
|
127
|
+
**model_kwargs,
|
128
|
+
) as chat:
|
129
|
+
for chunk in stream_processor(chat):
|
130
|
+
if chunk.type == "content.delta":
|
131
|
+
aggregated_response += chunk.delta
|
132
|
+
elif chunk.type == "thought.delta":
|
133
|
+
pass
|
134
|
+
else:
|
135
|
+
# Non-streaming chat completion
|
136
|
+
chunk = client.beta.chat.completions.parse(
|
137
|
+
messages=formatted_messages, # type: ignore
|
138
|
+
model=model_name,
|
139
|
+
temperature=temperature,
|
140
|
+
timeout=httpx.Timeout(30, read=read_timeout),
|
141
|
+
**model_kwargs,
|
142
|
+
)
|
143
|
+
aggregated_response = chunk.choices[0].message.content
|
129
144
|
|
130
145
|
# Calculate cost of chat
|
131
146
|
input_tokens = chunk.usage.prompt_tokens if hasattr(chunk, "usage") and chunk.usage else 0
|
@@ -182,7 +197,13 @@ async def chat_completion_with_backoff(
|
|
182
197
|
client = get_openai_async_client(openai_api_key, api_base_url)
|
183
198
|
openai_async_clients[client_key] = client
|
184
199
|
|
200
|
+
stream = not is_non_streaming_model(model_name, api_base_url)
|
185
201
|
stream_processor = adefault_stream_processor
|
202
|
+
if stream:
|
203
|
+
model_kwargs["stream_options"] = {"include_usage": True}
|
204
|
+
else:
|
205
|
+
model_kwargs.pop("stream_options", None)
|
206
|
+
|
186
207
|
formatted_messages = format_message_for_api(messages, api_base_url)
|
187
208
|
|
188
209
|
# Configure thinking for openai reasoning models
|
@@ -228,9 +249,7 @@ async def chat_completion_with_backoff(
|
|
228
249
|
if not deepthought:
|
229
250
|
add_qwen_no_think_tag(formatted_messages)
|
230
251
|
|
231
|
-
stream = True
|
232
252
|
read_timeout = 300 if is_local_api(api_base_url) else 60
|
233
|
-
model_kwargs["stream_options"] = {"include_usage": True}
|
234
253
|
if os.getenv("KHOJ_LLM_SEED"):
|
235
254
|
model_kwargs["seed"] = int(os.getenv("KHOJ_LLM_SEED"))
|
236
255
|
|
@@ -238,7 +257,7 @@ async def chat_completion_with_backoff(
|
|
238
257
|
final_chunk = None
|
239
258
|
response_started = False
|
240
259
|
start_time = perf_counter()
|
241
|
-
|
260
|
+
response: openai.AsyncStream[ChatCompletionChunk] | ChatCompletion = await client.chat.completions.create(
|
242
261
|
messages=formatted_messages, # type: ignore
|
243
262
|
model=model_name,
|
244
263
|
stream=stream,
|
@@ -246,26 +265,34 @@ async def chat_completion_with_backoff(
|
|
246
265
|
timeout=httpx.Timeout(30, read=read_timeout),
|
247
266
|
**model_kwargs,
|
248
267
|
)
|
249
|
-
|
250
|
-
#
|
251
|
-
if not
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
268
|
+
if not stream:
|
269
|
+
# If not streaming, we can return the response directly
|
270
|
+
if len(response.choices) == 0 or not response.choices[0].message:
|
271
|
+
raise ValueError("No response by model.")
|
272
|
+
aggregated_response = response.choices[0].message.content
|
273
|
+
final_chunk = response
|
274
|
+
yield ResponseWithThought(response=aggregated_response)
|
275
|
+
else:
|
276
|
+
async for chunk in stream_processor(response):
|
277
|
+
# Log the time taken to start response
|
278
|
+
if not response_started:
|
279
|
+
response_started = True
|
280
|
+
logger.info(f"First response took: {perf_counter() - start_time:.3f} seconds")
|
281
|
+
# Keep track of the last chunk for usage data
|
282
|
+
final_chunk = chunk
|
283
|
+
# Skip empty chunks
|
284
|
+
if len(chunk.choices) == 0:
|
285
|
+
continue
|
286
|
+
# Handle streamed response chunk
|
287
|
+
response_chunk: ResponseWithThought = None
|
288
|
+
response_delta = chunk.choices[0].delta
|
289
|
+
if response_delta.content:
|
290
|
+
response_chunk = ResponseWithThought(response=response_delta.content)
|
291
|
+
aggregated_response += response_chunk.response
|
292
|
+
elif response_delta.thought:
|
293
|
+
response_chunk = ResponseWithThought(thought=response_delta.thought)
|
294
|
+
if response_chunk:
|
295
|
+
yield response_chunk
|
269
296
|
|
270
297
|
# Calculate cost of chat after stream finishes
|
271
298
|
input_tokens, output_tokens, cost = 0, 0, 0
|
@@ -354,6 +381,14 @@ def is_openai_reasoning_model(model_name: str, api_base_url: str = None) -> bool
|
|
354
381
|
return model_name.startswith("o") and is_openai_api(api_base_url)
|
355
382
|
|
356
383
|
|
384
|
+
def is_non_streaming_model(model_name: str, api_base_url: str = None) -> bool:
|
385
|
+
"""
|
386
|
+
Check if model response should not be streamed.
|
387
|
+
"""
|
388
|
+
# Some OpenAI models requires biometrics to stream. Avoid streaming their responses.
|
389
|
+
return model_name in ["o3", "o3-pro"] and is_openai_api(api_base_url)
|
390
|
+
|
391
|
+
|
357
392
|
def is_twitter_reasoning_model(model_name: str, api_base_url: str = None) -> bool:
|
358
393
|
"""
|
359
394
|
Check if the model is a Twitter reasoning model
|
@@ -20,7 +20,7 @@ import yaml
|
|
20
20
|
from langchain_core.messages.chat import ChatMessage
|
21
21
|
from llama_cpp import LlamaTokenizer
|
22
22
|
from llama_cpp.llama import Llama
|
23
|
-
from pydantic import BaseModel
|
23
|
+
from pydantic import BaseModel, ConfigDict, ValidationError, create_model
|
24
24
|
from transformers import AutoTokenizer, PreTrainedTokenizer, PreTrainedTokenizerFast
|
25
25
|
|
26
26
|
from khoj.database.adapters import ConversationAdapters
|
@@ -62,14 +62,15 @@ model_to_prompt_size = {
|
|
62
62
|
"gpt-4.1": 60000,
|
63
63
|
"gpt-4.1-mini": 120000,
|
64
64
|
"gpt-4.1-nano": 120000,
|
65
|
-
"o1":
|
66
|
-
"
|
67
|
-
"
|
68
|
-
"o3
|
69
|
-
"
|
65
|
+
"o1-mini": 90000,
|
66
|
+
"o1": 30000,
|
67
|
+
"o3-mini": 90000,
|
68
|
+
"o3": 60000,
|
69
|
+
"o3-pro": 30000,
|
70
|
+
"o4-mini": 90000,
|
70
71
|
# Google Models
|
71
|
-
"gemini-2.5-flash-preview-
|
72
|
-
"gemini-2.5-pro-preview-
|
72
|
+
"gemini-2.5-flash-preview-05-20": 120000,
|
73
|
+
"gemini-2.5-pro-preview-06-05": 60000,
|
73
74
|
"gemini-2.0-flash": 120000,
|
74
75
|
"gemini-2.0-flash-lite": 120000,
|
75
76
|
"gemini-1.5-flash": 120000,
|
@@ -361,7 +362,6 @@ def message_to_log(
|
|
361
362
|
"""Create json logs from messages, metadata for conversation log"""
|
362
363
|
default_khoj_message_metadata = {
|
363
364
|
"intent": {"type": "remember", "memory-type": "notes", "query": user_message},
|
364
|
-
"trigger-emotion": "calm",
|
365
365
|
}
|
366
366
|
khoj_response_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
367
367
|
|
@@ -376,6 +376,20 @@ def message_to_log(
|
|
376
376
|
khoj_log = merge_dicts(khoj_message_metadata, default_khoj_message_metadata)
|
377
377
|
khoj_log = merge_dicts({"message": chat_response, "by": "khoj", "created": khoj_response_time}, khoj_log)
|
378
378
|
|
379
|
+
# Validate message logs
|
380
|
+
# Only validates top-level fields, not nested fields, defined in ChatMessageModel
|
381
|
+
class StrictChatMessageModel(ChatMessageModel):
|
382
|
+
model_config = ConfigDict(extra="forbid", strict=True)
|
383
|
+
|
384
|
+
try:
|
385
|
+
StrictChatMessageModel(**human_log)
|
386
|
+
except ValidationError as e:
|
387
|
+
logger.error(f"Validation error in user chat message: {e}\nUser Message: {human_log}\n")
|
388
|
+
try:
|
389
|
+
StrictChatMessageModel(**khoj_log)
|
390
|
+
except ValidationError as e:
|
391
|
+
logger.error(f"Validation error in khoj chat message: {e}\nKhoj Message: {khoj_log}\n")
|
392
|
+
|
379
393
|
human_message = ChatMessageModel(**human_log)
|
380
394
|
khoj_message = ChatMessageModel(**khoj_log)
|
381
395
|
chat_history.extend([human_message, khoj_message])
|
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.5.dev6
|
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
|
@@ -123,32 +123,32 @@ khoj/database/migrations/0088_ratelimitrecord.py,sha256=CxlkfbA8eTO57pv0AvJYfGRp
|
|
123
123
|
khoj/database/migrations/0089_chatmodel_price_tier_and_more.py,sha256=EJ1Yf6MMzhGMwJOS3AECaU6ks4NfRW0utyDa7lreNwQ,1211
|
124
124
|
khoj/database/migrations/0090_alter_khojuser_uuid.py,sha256=2h9v-DiuqFuZKpAyWYwueqZkBHvxZbm-_guRjNaZzxg,3802
|
125
125
|
khoj/database/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
126
|
-
khoj/database/models/__init__.py,sha256=
|
126
|
+
khoj/database/models/__init__.py,sha256=9pMdW8Quz_RQhWzyUbwuWQwr0gNvJHBJQ00xotQ4Ej0,31220
|
127
127
|
khoj/interface/compiled/agents.svg,sha256=yFCRwIM-Qawa0C5ggAo3ekb-Q1ElmotBOKIGhtfIQqM,1722
|
128
128
|
khoj/interface/compiled/automation.svg,sha256=o7L2XYwJWRSMvl8h6TBv6Pt28RTRVMHqF04EPY0AFj0,1467
|
129
129
|
khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvtM3A,2424
|
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=fi6OS-wGwW6W5JBd1EYySSK0eMb5FqqNFPlPtGARUrs,53043
|
134
|
+
khoj/interface/compiled/index.txt,sha256=Eytt5OkWqcurw8ZwR8WOfUFIu1OYINjvFOzp_9dNLro,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=cGNVN10eyF91_udlztwji_NLccQIbRpGFoY1FANWfX4,17097
|
142
|
+
khoj/interface/compiled/_next/static/9KBUVBqsJoQnKgtWMmcMN/_buildManifest.js,sha256=f2_nYnw25hHWQJ-39Lf5OH1u6kgdbOInyfplqgjvAV4,224
|
143
|
+
khoj/interface/compiled/_next/static/9KBUVBqsJoQnKgtWMmcMN/_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
|
147
|
-
khoj/interface/compiled/_next/static/chunks/1915-
|
147
|
+
khoj/interface/compiled/_next/static/chunks/1915-1943ee8a628b893c.js,sha256=qArqL3leavWRcZkX4ZuWgemtKnmV6c-_yrNtMu_8SeY,11277
|
148
148
|
khoj/interface/compiled/_next/static/chunks/2069.f060659791c0c484.js,sha256=C_oat_BkZcLOHsyJlNN_5I55fB7ee1zkkZ9FT5zOzn4,186
|
149
|
-
khoj/interface/compiled/_next/static/chunks/2117-
|
149
|
+
khoj/interface/compiled/_next/static/chunks/2117-056a00add390772b.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
|
@@ -157,9 +157,9 @@ khoj/interface/compiled/_next/static/chunks/3460.39c2b9b6a3898384.js,sha256=gehY
|
|
157
157
|
khoj/interface/compiled/_next/static/chunks/4299.2aaa569416cfc208.js,sha256=3HJ8OvB9BDJW0-qCBd1eUmChoBAxaCX6R81ftWZ1CHw,21659
|
158
158
|
khoj/interface/compiled/_next/static/chunks/4327.238d15c09a039b8b.js,sha256=mZa4Oyltc9JrokqnalRTjzcvWgX4S3i3REXiHzRYH1o,296536
|
159
159
|
khoj/interface/compiled/_next/static/chunks/4357-d86d3401f6f6f802.js,sha256=KDM1m01Fz-vcAMfxQfYPO6SEZJVK7z4241JOCEvou6Y,45442
|
160
|
-
khoj/interface/compiled/_next/static/chunks/4363-
|
160
|
+
khoj/interface/compiled/_next/static/chunks/4363-e6ac2203564d1a3b.js,sha256=YFO-i3X2LrX9c4MgYY1kPsoRBaqVUkmfAKI62Rz2BVI,468054
|
161
161
|
khoj/interface/compiled/_next/static/chunks/4415.e0c0da5eedae4dd7.js,sha256=DEf8HPEstDFvBflOU0j0ilYHlVJilGcGsLgUx524FZQ,25544
|
162
|
-
khoj/interface/compiled/_next/static/chunks/4447-
|
162
|
+
khoj/interface/compiled/_next/static/chunks/4447-e038b251d626c340.js,sha256=Uw8IrcKmVR3wba-FB9maP9i9l_kAYg59r8PN1T_ipQE,19621
|
163
163
|
khoj/interface/compiled/_next/static/chunks/4609-33aa487dff03a9fd.js,sha256=1M6QAfVZa2g2Q4jXRdSI1wjrZ4G9yKjINJt8qyTKm1A,24698
|
164
164
|
khoj/interface/compiled/_next/static/chunks/4610.a1e7f40a759ed2aa.js,sha256=b5JDRPyQv2MsibYoK2TDT76LMAoDTRzFM-fa81mJxow,14102
|
165
165
|
khoj/interface/compiled/_next/static/chunks/4650.41f041da0ad365ad.js,sha256=EZeckNrMc3ZUX_LexPgaeusEq-dGBNEPm7nc5nvb4OM,33902
|
@@ -181,19 +181,19 @@ 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
|
188
188
|
khoj/interface/compiled/_next/static/chunks/7953.f6fc335a23efb959.js,sha256=8XInVs3uzJAMGBndN2k4BeJNHmgZOembNuoyPe9Z7Oo,412
|
189
189
|
khoj/interface/compiled/_next/static/chunks/8254.3145a4fbdcfdca46.js,sha256=sur8InabGfvh1HqNQhwBssc1tCPae_WKQ-efoYU1Q8A,412
|
190
190
|
khoj/interface/compiled/_next/static/chunks/8400.c95e4e79bcd79a56.js,sha256=3SlFozKtF4DYQYPT3hB5M7VEm3e_W71kC19JgADz-3k,19864
|
191
|
-
khoj/interface/compiled/_next/static/chunks/8667-
|
191
|
+
khoj/interface/compiled/_next/static/chunks/8667-8136f74e9a086fca.js,sha256=kyiAVJTylsiOPFTb63uZn_pMlk4pYhDYt_N7xL76PTM,7214
|
192
192
|
khoj/interface/compiled/_next/static/chunks/8673.be44c4d9e4f1d084.js,sha256=jiE4xU-TbkVC4R60SIgxwdo31T9mbdVBVuhP4H60i94,18629
|
193
193
|
khoj/interface/compiled/_next/static/chunks/8698.a088118fef40d302.js,sha256=mrK-3ZahVSF7sZij3l-PyXKxp-ccXU9orykXDc7YzsM,180
|
194
194
|
khoj/interface/compiled/_next/static/chunks/9022.33974a513a281fd2.js,sha256=6NmDzRbI0NyTisUT04sq9M0czUqvlwZoV4E7Onp-55Q,57192
|
195
195
|
khoj/interface/compiled/_next/static/chunks/90542734.9e6e44b1b45b30fe.js,sha256=5Ivye3p3HC-Ekf-bIPdnvmg_JtYLkCqyRPWtciOmuuo,413716
|
196
|
-
khoj/interface/compiled/_next/static/chunks/9259-
|
196
|
+
khoj/interface/compiled/_next/static/chunks/9259-640fdd77408475df.js,sha256=lZJF9qq4_MeSRsHeNPNcxkqh2vhBfag5iAxg6krHA9g,34848
|
197
197
|
khoj/interface/compiled/_next/static/chunks/9334-b22127fe2d39bc60.js,sha256=_TPWqSCbf86Ig1vIEDRLXzloZujDoxpoEWhRPUf6b5U,29065
|
198
198
|
khoj/interface/compiled/_next/static/chunks/9433.b1b5f5d050c43e3c.js,sha256=kMVC0Gg95UqjfQXpGvi-WUSg_kYp0SN7CTPTHxHxDBk,144858
|
199
199
|
khoj/interface/compiled/_next/static/chunks/94ca1967.1b3402358e0e1255.js,sha256=WJXEIy24FD6PNQePg-uahendJMNc03GgnVveitFeshI,1174524
|
@@ -206,30 +206,30 @@ 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-84073cf579f4406f.js,sha256=1WKzt9WvclViKLAdcTkCcjSwr1gpmUEmuB4Hl-nMiCM,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
|
213
|
-
khoj/interface/compiled/_next/static/chunks/app/agents/layout-
|
213
|
+
khoj/interface/compiled/_next/static/chunks/app/agents/layout-e49165209d2e406c.js,sha256=WFG6nsdtjnYHsKazIx5-xBXemVzEKXfW_U6Q9dnc7CU,180
|
214
214
|
khoj/interface/compiled/_next/static/chunks/app/agents/page-2fac1d5ac7192e73.js,sha256=pATgYmEwvudjV7rOL1P6t-KSk5dpq5hw-MenPZ7017Y,18314
|
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
|
-
khoj/interface/compiled/_next/static/chunks/app/chat/layout-
|
218
|
-
khoj/interface/compiled/_next/static/chunks/app/chat/page-
|
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-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
|
222
222
|
khoj/interface/compiled/_next/static/chunks/app/settings/page-8fb6cc97be8774a7.js,sha256=7IV60Rd8kMXB_8yjU6vvpmxIUaJtW-on3uC-SGeP-tc,27893
|
223
|
-
khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-
|
223
|
+
khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-6fb51c5c80f8ec67.js,sha256=MRWVUV6hiulN_DJo7uyZvW0HaMGGqoq6fdGK_jt4kJE,180
|
224
224
|
khoj/interface/compiled/_next/static/chunks/app/share/chat/page-da90c78180a86040.js,sha256=3MnG5yQpeHLaZPPiqEYQGX-_zc1FQYMv9KoY5d0_Fs0,5563
|
225
225
|
khoj/interface/compiled/_next/static/chunks/pages/_app-3c9ca398d360b709.js,sha256=UqtikLsCsOWtDUJOW6Tuk9P-bV1V3MhYd3ghrQuEmfs,286
|
226
226
|
khoj/interface/compiled/_next/static/chunks/pages/_error-cf5ca766ac8f493f.js,sha256=w_It3VzKT8O1M3CrJ_hZHsaU7M7dq3EAaVG8KvJ-fhU,253
|
227
|
+
khoj/interface/compiled/_next/static/css/2945c4a857922f3b.css,sha256=ARp32IQvPZk88JXcPUb7fkM6WuvAEL1EqqGwhdnR2T8,9831
|
227
228
|
khoj/interface/compiled/_next/static/css/37a73b87f02df402.css,sha256=hp0vlekKu0K2eITR5YIqFmLHQPqV3JETFnRd_-Uh0mk,165
|
228
229
|
khoj/interface/compiled/_next/static/css/7017ee76c2f2cd87.css,sha256=crgwDRN7r35lT_QXQDaW3_i48PPhIekfbPdHBz3IIv4,3075782
|
229
230
|
khoj/interface/compiled/_next/static/css/76c658ee459140a9.css,sha256=7tI24VB66ZUsAPUxRdQhboopun0AXLUnF64uv9RkC08,1833
|
230
231
|
khoj/interface/compiled/_next/static/css/7889a30fe9c83846.css,sha256=IUkZhkx4GpYOIhN-EJw9T1DqGMO3Wa3mNpUwaOBuZoY,7204
|
231
232
|
khoj/interface/compiled/_next/static/css/9a460202d29476e5.css,sha256=a_XgoX4KgZtVmEy4mQGNNsub734BSan37_XgE6I5mQk,30494
|
232
|
-
khoj/interface/compiled/_next/static/css/c34713c98384ee87.css,sha256=uypGqyDrKf-9vcU_Rf9as1XLvMSMDDfKQjmHnLaixfM,9831
|
233
233
|
khoj/interface/compiled/_next/static/css/e4eb883b5265d372.css,sha256=6LaW-lQ_ZpgOJNWYwU1Q1egXZ1aqJDEuRj66oRCIU_E,17748
|
234
234
|
khoj/interface/compiled/_next/static/css/ea5485b3f3859a5a.css,sha256=tn6qi2xSLTWhtzDUE8UlC8iipH9QGV6A9oGj1ap-Sk4,1659
|
235
235
|
khoj/interface/compiled/_next/static/media/1d8a05b60287ae6c-s.p.woff2,sha256=IzKBwB_bpSGvO7C9aRv29Js-jAbZPRDI-D-P4H2P918,14508
|
@@ -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=xBdzgYAz5UE5glLZkPyjDse_7JuVcySHwEgdOF6N2Gc,16224
|
313
|
+
khoj/interface/compiled/agents/index.txt,sha256=zWxwQ7OmcvvObDaAvZ13xOEbcbbjqa1GVsezEoyLTDY,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=oi6AXDPrcFGN0mz3YdSjTV-qJP4Drba5w5J_nZzq8Io,54094
|
329
|
+
khoj/interface/compiled/automations/index.txt,sha256=-sRiMllHfsgw9gLyYIM5qw-IzNk38cPLUn2vSds4IVk,7449
|
330
|
+
khoj/interface/compiled/chat/index.html,sha256=iwtELIketv1BJ6PlTwWDPNvnjvlRY5V8SRJbevoJ8fI,53222
|
331
|
+
khoj/interface/compiled/chat/index.txt,sha256=gx52j9mUh4P74CeLNs9dw6MDFixTicT0RqptkUMN-eU,7858
|
332
|
+
khoj/interface/compiled/search/index.html,sha256=gIdc9rS4fCfYP-osCEeGsHcphxwzpDs3MDXreZXm3b8,55304
|
333
|
+
khoj/interface/compiled/search/index.txt,sha256=KoGn-BrUxRB_lL9Q79-zuwW9o-_vX_YD3vmP6uPqMqw,6567
|
334
|
+
khoj/interface/compiled/settings/index.html,sha256=7YRRcfy_6k29RKR-Aw0EG4qeqVwdmBxzdC4sFIGBQzo,52743
|
335
|
+
khoj/interface/compiled/settings/index.txt,sha256=BhX0gW2T3OGA5witITSHXBikBAojbVnr6v7SGuxa-Ho,7703
|
336
|
+
khoj/interface/compiled/share/chat/index.html,sha256=NzzBwRy23Ta_ancZzT7-V3egMjpHo_5j8AE_kmdneTs,53802
|
337
|
+
khoj/interface/compiled/share/chat/index.txt,sha256=7UEmA3sJbz7Zdn9anvXoyy-00a9rI5O3KNLxagi5YAI,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,20 +387,20 @@ 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=DZtxhdnBK1woXuVnEZ5MewSRWJm-MtZZemvbcj_QJG4,44415
|
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
|
394
394
|
khoj/processor/conversation/google/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
395
395
|
khoj/processor/conversation/google/gemini_chat.py,sha256=L8a4NYstCGQlax_HHaeaqlu_qs6pITeCX7sD5BDeEC0,5659
|
396
|
-
khoj/processor/conversation/google/utils.py,sha256=
|
396
|
+
khoj/processor/conversation/google/utils.py,sha256=jBb3SbPoqm91I7T987TKjGugvGVd11kPi4rEs6d6K5Y,16802
|
397
397
|
khoj/processor/conversation/offline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
398
398
|
khoj/processor/conversation/offline/chat_model.py,sha256=lD2sIGEKBuF9AZSyU2UUHAZHeTyE6v1B2-qUoVoSiXg,8579
|
399
399
|
khoj/processor/conversation/offline/utils.py,sha256=51McImxl6u1qgRYvMt7uzsgLGSLq5SMFy74ymlNjIcc,3033
|
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=jQpOvAcnxI3dMFlnMkPU5xJVRI8g28_qxMv2AVl99GI,28909
|
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
|
@@ -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.5.dev6.dist-info/METADATA,sha256=qKxhdunAXOpB2BFmw2WIFbk4pJORnfE5aiF194DAKbw,8973
|
460
|
+
khoj-1.42.5.dev6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
461
|
+
khoj-1.42.5.dev6.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
462
|
+
khoj-1.42.5.dev6.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
463
|
+
khoj-1.42.5.dev6.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[8459,3317,7138,244],{63521:function(){}},function(n){n.O(0,[2971,2117,1744],function(){return n(n.s=63521)}),_N_E=n.O()}]);
|
@@ -1 +0,0 @@
|
|
1
|
-
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[3317,8459,7138,244],{63521:function(){}},function(n){n.O(0,[2971,2117,1744],function(){return n(n.s=63521)}),_N_E=n.O()}]);
|
@@ -1 +0,0 @@
|
|
1
|
-
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[7138,8459,3317,244],{63521:function(){}},function(n){n.O(0,[2971,2117,1744],function(){return n(n.s=63521)}),_N_E=n.O()}]);
|
File without changes
|
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{1915-ab4353eaca76f690.js → 1915-1943ee8a628b893c.js}
RENAMED
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{2117-3537ef9986be74d3.js → 2117-056a00add390772b.js}
RENAMED
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{4363-4efaf12abe696251.js → 4363-e6ac2203564d1a3b.js}
RENAMED
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{4447-5d44807c40355b1a.js → 4447-e038b251d626c340.js}
RENAMED
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{8667-adbe6017a66cef10.js → 8667-8136f74e9a086fca.js}
RENAMED
File without changes
|
/khoj/interface/compiled/_next/static/chunks/{9259-d8bcd9da9e80c81e.js → 9259-640fdd77408475df.js}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|