khoj 1.24.2.dev15__py3-none-any.whl → 1.24.2.dev33__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/adapters/__init__.py +31 -15
- khoj/interface/compiled/404/index.html +1 -1
- khoj/interface/compiled/_next/static/chunks/app/agents/page-25b91e88abb7f976.js +1 -0
- khoj/interface/compiled/_next/static/chunks/app/automations/{page-2edc21f30819def4.js → page-5480731341f34450.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/chat/{page-4309c98e6dc497dd.js → page-702057ccbcf27881.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/factchecker/{page-f2c83e3a87a28657.js → page-e7b34316ec6f44de.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/{page-ab9beb5a26e396f7.js → page-10a5aad6e04f3cf8.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/search/{page-b807caebd7f278c7.js → page-d56541c746fded7d.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/settings/{page-2932356ad11c2f7b.js → page-e044a999468a7c5d.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/share/chat/{page-a736a0826570af2b.js → page-fbbd66a4d4633438.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/{webpack-3875a06385370d08.js → webpack-2651a68f46ac3cb7.js} +1 -1
- khoj/interface/compiled/_next/static/css/2de69f0be774c768.css +1 -0
- khoj/interface/compiled/_next/static/css/592ca99f5122e75a.css +1 -0
- khoj/interface/compiled/_next/static/css/7a2b0a2d7c3d86eb.css +25 -0
- khoj/interface/compiled/agents/index.html +1 -1
- khoj/interface/compiled/agents/index.txt +2 -2
- khoj/interface/compiled/automations/index.html +1 -1
- khoj/interface/compiled/automations/index.txt +2 -2
- khoj/interface/compiled/chat/index.html +1 -1
- khoj/interface/compiled/chat/index.txt +2 -2
- khoj/interface/compiled/factchecker/index.html +1 -1
- khoj/interface/compiled/factchecker/index.txt +2 -2
- khoj/interface/compiled/index.html +1 -1
- khoj/interface/compiled/index.txt +2 -2
- khoj/interface/compiled/search/index.html +1 -1
- khoj/interface/compiled/search/index.txt +2 -2
- khoj/interface/compiled/settings/index.html +1 -1
- khoj/interface/compiled/settings/index.txt +2 -2
- khoj/interface/compiled/share/chat/index.html +1 -1
- khoj/interface/compiled/share/chat/index.txt +2 -2
- khoj/processor/conversation/google/gemini_chat.py +4 -19
- khoj/processor/conversation/google/utils.py +29 -15
- khoj/processor/conversation/prompts.py +14 -3
- khoj/processor/conversation/utils.py +3 -7
- khoj/processor/embeddings.py +5 -3
- khoj/routers/api_agents.py +2 -2
- khoj/routers/api_chat.py +33 -18
- khoj/routers/helpers.py +18 -4
- khoj/utils/helpers.py +8 -8
- {khoj-1.24.2.dev15.dist-info → khoj-1.24.2.dev33.dist-info}/METADATA +1 -1
- {khoj-1.24.2.dev15.dist-info → khoj-1.24.2.dev33.dist-info}/RECORD +49 -49
- khoj/interface/compiled/_next/static/chunks/app/agents/page-ed5d036c3feea4fa.js +0 -1
- khoj/interface/compiled/_next/static/css/4cae6c0e5c72fb2d.css +0 -1
- khoj/interface/compiled/_next/static/css/50d972a8c787730b.css +0 -25
- khoj/interface/compiled/_next/static/css/f768dddada62459d.css +0 -1
- /khoj/interface/compiled/_next/static/chunks/{9178-f208a3e6404714a9.js → 9178-899fe9a6b754ecfe.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{9417-1d158bf46d3a0dc9.js → 9417-29502e39c3e7d60c.js} +0 -0
- /khoj/interface/compiled/_next/static/chunks/{9479-563e4d61f91d5a7c.js → 9479-7eed36fc954ef804.js} +0 -0
- /khoj/interface/compiled/_next/static/{HX2l2qUivyEEnCP5dAVD3 → lHwFhwhZGEZT4IMv1TNBH}/_buildManifest.js +0 -0
- /khoj/interface/compiled/_next/static/{HX2l2qUivyEEnCP5dAVD3 → lHwFhwhZGEZT4IMv1TNBH}/_ssgManifest.js +0 -0
- {khoj-1.24.2.dev15.dist-info → khoj-1.24.2.dev33.dist-info}/WHEEL +0 -0
- {khoj-1.24.2.dev15.dist-info → khoj-1.24.2.dev33.dist-info}/entry_points.txt +0 -0
- {khoj-1.24.2.dev15.dist-info → khoj-1.24.2.dev33.dist-info}/licenses/LICENSE +0 -0
khoj/routers/api_chat.py
CHANGED
@@ -209,14 +209,17 @@ def chat_history(
|
|
209
209
|
|
210
210
|
agent_metadata = None
|
211
211
|
if conversation.agent:
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
212
|
+
if conversation.agent.privacy_level == Agent.PrivacyLevel.PRIVATE:
|
213
|
+
conversation.agent = None
|
214
|
+
else:
|
215
|
+
agent_metadata = {
|
216
|
+
"slug": conversation.agent.slug,
|
217
|
+
"name": conversation.agent.name,
|
218
|
+
"isCreator": conversation.agent.creator == user,
|
219
|
+
"color": conversation.agent.style_color,
|
220
|
+
"icon": conversation.agent.style_icon,
|
221
|
+
"persona": conversation.agent.personality,
|
222
|
+
}
|
220
223
|
|
221
224
|
meta_log = conversation.conversation_log
|
222
225
|
meta_log.update(
|
@@ -265,14 +268,17 @@ def get_shared_chat(
|
|
265
268
|
|
266
269
|
agent_metadata = None
|
267
270
|
if conversation.agent:
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
271
|
+
if conversation.agent.privacy_level == Agent.PrivacyLevel.PRIVATE:
|
272
|
+
conversation.agent = None
|
273
|
+
else:
|
274
|
+
agent_metadata = {
|
275
|
+
"slug": conversation.agent.slug,
|
276
|
+
"name": conversation.agent.name,
|
277
|
+
"isCreator": conversation.agent.creator == user,
|
278
|
+
"color": conversation.agent.style_color,
|
279
|
+
"icon": conversation.agent.style_icon,
|
280
|
+
"persona": conversation.agent.personality,
|
281
|
+
}
|
276
282
|
|
277
283
|
meta_log = conversation.conversation_log
|
278
284
|
scrubbed_title = conversation.title if conversation.title else conversation.slug
|
@@ -758,7 +764,12 @@ async def chat(
|
|
758
764
|
yield result
|
759
765
|
|
760
766
|
response = await extract_relevant_summary(
|
761
|
-
q,
|
767
|
+
q,
|
768
|
+
contextual_data,
|
769
|
+
conversation_history=meta_log,
|
770
|
+
subscribed=subscribed,
|
771
|
+
uploaded_image_url=uploaded_image_url,
|
772
|
+
agent=agent,
|
762
773
|
)
|
763
774
|
response_log = str(response)
|
764
775
|
async for result in send_llm_response(response_log):
|
@@ -1238,7 +1249,11 @@ async def get_chat(
|
|
1238
1249
|
yield result
|
1239
1250
|
|
1240
1251
|
response = await extract_relevant_summary(
|
1241
|
-
q,
|
1252
|
+
q,
|
1253
|
+
contextual_data,
|
1254
|
+
conversation_history=meta_log,
|
1255
|
+
subscribed=subscribed,
|
1256
|
+
uploaded_image_url=uploaded_image_url,
|
1242
1257
|
)
|
1243
1258
|
response_log = str(response)
|
1244
1259
|
async for result in send_llm_response(response_log):
|
khoj/routers/helpers.py
CHANGED
@@ -208,7 +208,7 @@ def get_next_url(request: Request) -> str:
|
|
208
208
|
def construct_chat_history(conversation_history: dict, n: int = 4, agent_name="AI") -> str:
|
209
209
|
chat_history = ""
|
210
210
|
for chat in conversation_history.get("chat", [])[-n:]:
|
211
|
-
if chat["by"] == "khoj" and chat["intent"].get("type") in ["remember", "reminder"]:
|
211
|
+
if chat["by"] == "khoj" and chat["intent"].get("type") in ["remember", "reminder", "summarize"]:
|
212
212
|
chat_history += f"User: {chat['intent']['query']}\n"
|
213
213
|
chat_history += f"{agent_name}: {chat['message']}\n"
|
214
214
|
elif chat["by"] == "khoj" and ("text-to-image" in chat["intent"].get("type")):
|
@@ -348,11 +348,17 @@ async def aget_relevant_information_sources(
|
|
348
348
|
final_response.append(ConversationCommand(llm_suggested_tool))
|
349
349
|
|
350
350
|
if is_none_or_empty(final_response):
|
351
|
-
|
351
|
+
if len(agent_tools) == 0:
|
352
|
+
final_response = [ConversationCommand.Default]
|
353
|
+
else:
|
354
|
+
final_response = [ConversationCommand.General]
|
352
355
|
return final_response
|
353
356
|
except Exception as e:
|
354
357
|
logger.error(f"Invalid response for determining relevant tools: {response}")
|
355
|
-
|
358
|
+
if len(agent_tools) == 0:
|
359
|
+
final_response = [ConversationCommand.Default]
|
360
|
+
else:
|
361
|
+
final_response = agent_tools
|
356
362
|
|
357
363
|
|
358
364
|
async def aget_relevant_output_modes(
|
@@ -568,7 +574,12 @@ async def extract_relevant_info(q: str, corpus: str, subscribed: bool, agent: Ag
|
|
568
574
|
|
569
575
|
|
570
576
|
async def extract_relevant_summary(
|
571
|
-
q: str,
|
577
|
+
q: str,
|
578
|
+
corpus: str,
|
579
|
+
conversation_history: dict,
|
580
|
+
subscribed: bool = False,
|
581
|
+
uploaded_image_url: str = None,
|
582
|
+
agent: Agent = None,
|
572
583
|
) -> Union[str, None]:
|
573
584
|
"""
|
574
585
|
Extract relevant information for a given query from the target corpus
|
@@ -581,8 +592,11 @@ async def extract_relevant_summary(
|
|
581
592
|
prompts.personality_context.format(personality=agent.personality) if agent and agent.personality else ""
|
582
593
|
)
|
583
594
|
|
595
|
+
chat_history = construct_chat_history(conversation_history)
|
596
|
+
|
584
597
|
extract_relevant_information = prompts.extract_relevant_summary.format(
|
585
598
|
query=q,
|
599
|
+
chat_history=chat_history,
|
586
600
|
corpus=corpus.strip(),
|
587
601
|
personality_context=personality_context,
|
588
602
|
)
|
khoj/utils/helpers.py
CHANGED
@@ -321,7 +321,7 @@ command_descriptions = {
|
|
321
321
|
ConversationCommand.Notes: "Only talk about information that is available in your knowledge base.",
|
322
322
|
ConversationCommand.Default: "The default command when no command specified. It intelligently auto-switches between general and notes mode.",
|
323
323
|
ConversationCommand.Online: "Search for information on the internet.",
|
324
|
-
ConversationCommand.Webpage: "Get information from webpage
|
324
|
+
ConversationCommand.Webpage: "Get information from webpage suggested by you.",
|
325
325
|
ConversationCommand.Image: "Generate images by describing your imagination in words.",
|
326
326
|
ConversationCommand.Automation: "Automatically run your query at a specified time or interval.",
|
327
327
|
ConversationCommand.Help: "Get help with how to use or setup Khoj from the documentation",
|
@@ -329,11 +329,11 @@ command_descriptions = {
|
|
329
329
|
}
|
330
330
|
|
331
331
|
command_descriptions_for_agent = {
|
332
|
-
ConversationCommand.General: "
|
333
|
-
ConversationCommand.Notes: "
|
334
|
-
ConversationCommand.Online: "
|
335
|
-
ConversationCommand.Webpage: "
|
336
|
-
ConversationCommand.Summarize: "
|
332
|
+
ConversationCommand.General: "Agent can use the agents knowledge base and general knowledge.",
|
333
|
+
ConversationCommand.Notes: "Agent can search the users knowledge base for information.",
|
334
|
+
ConversationCommand.Online: "Agent can search the internet for information.",
|
335
|
+
ConversationCommand.Webpage: "Agent can read suggested web pages for information.",
|
336
|
+
ConversationCommand.Summarize: "Agent can read an entire document. Agents knowledge base must be a single document.",
|
337
337
|
}
|
338
338
|
|
339
339
|
tool_descriptions_for_llm = {
|
@@ -352,8 +352,8 @@ mode_descriptions_for_llm = {
|
|
352
352
|
}
|
353
353
|
|
354
354
|
mode_descriptions_for_agent = {
|
355
|
-
ConversationCommand.Image: "
|
356
|
-
ConversationCommand.Text: "
|
355
|
+
ConversationCommand.Image: "Agent can generate image in response.",
|
356
|
+
ConversationCommand.Text: "Agent can generate text in response.",
|
357
357
|
}
|
358
358
|
|
359
359
|
|
@@ -11,7 +11,7 @@ khoj/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
khoj/database/admin.py,sha256=ZKywmGF3q_YdPtoTVUCCpxZ_zYm3d3bhGRzSf9wi7FM,9218
|
12
12
|
khoj/database/apps.py,sha256=pM4tkX5Odw4YW_hLLKK8Nd5kqGddf1en0oMCea44RZw,153
|
13
13
|
khoj/database/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
|
14
|
-
khoj/database/adapters/__init__.py,sha256=
|
14
|
+
khoj/database/adapters/__init__.py,sha256=u9YciwUWeGO_ohm8xEQda0XL0jdi50Jg9xjwvRDNAAs,59159
|
15
15
|
khoj/database/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
khoj/database/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
17
|
khoj/database/management/commands/change_generated_images_url.py,sha256=w52FwRlyOL4YRpp9O6jJUjSIuGLxVhaS2w1D7gtQgOE,2644
|
@@ -103,17 +103,15 @@ khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvt
|
|
103
103
|
khoj/interface/compiled/close.svg,sha256=hQ2iFLkNzHk0_iyTrSbwnWAeXYlgA-c2Eof2Iqh76n4,417
|
104
104
|
khoj/interface/compiled/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
|
105
105
|
khoj/interface/compiled/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
|
106
|
-
khoj/interface/compiled/index.html,sha256=
|
107
|
-
khoj/interface/compiled/index.txt,sha256=
|
106
|
+
khoj/interface/compiled/index.html,sha256=QrvFvT9eFEkfa7RUIRQmJFNubO_0PMtw7fXBQeTjh_M,11791
|
107
|
+
khoj/interface/compiled/index.txt,sha256=lZJYLMzBGs8NddPe1lQcg-FXUQD54z_sxR1xwMzE574,5479
|
108
108
|
khoj/interface/compiled/khoj.webmanifest,sha256=lsknYkvEdMbRTOUYKXPM_8krN2gamJmM4u3qj8u9lrU,1682
|
109
109
|
khoj/interface/compiled/logo.svg,sha256=_QCKVYM4WT2Qhcf7aVFImjq_s5CwjynGXYAOgI7yf8w,8059
|
110
110
|
khoj/interface/compiled/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
|
111
111
|
khoj/interface/compiled/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
|
112
112
|
khoj/interface/compiled/thumbs-down.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
|
113
113
|
khoj/interface/compiled/thumbs-up.svg,sha256=yS1wxTRtiztkN-6nZciLoYQUB_KTYNPV8xFRwH2TQFw,1036
|
114
|
-
khoj/interface/compiled/404/index.html,sha256=
|
115
|
-
khoj/interface/compiled/_next/static/HX2l2qUivyEEnCP5dAVD3/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
|
116
|
-
khoj/interface/compiled/_next/static/HX2l2qUivyEEnCP5dAVD3/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
114
|
+
khoj/interface/compiled/404/index.html,sha256=HvgpPEyKXUSo8Dx_KJd1usqdEIYOIDiyCrxUA5a_oQY,12051
|
117
115
|
khoj/interface/compiled/_next/static/chunks/121-7024f479c297aef0.js,sha256=CcRT2AArGYTo7Orl5w69nrnMqdI_EmyEP_YqIj3FU1c,20952
|
118
116
|
khoj/interface/compiled/_next/static/chunks/1269-2e52d48e7d0e5c61.js,sha256=8iWbeeo_pCFEivsCeLB8dCtO2mMw8Z3LqWi2g5bE-OA,33828
|
119
117
|
khoj/interface/compiled/_next/static/chunks/1603-67a89278e2c5dbe6.js,sha256=2ZLMR7DmmkCjtMyIwUy2FrHXh8fAmEEdlzhjr4Zll3k,71252
|
@@ -129,44 +127,46 @@ khoj/interface/compiled/_next/static/chunks/51-e8f5bdb69b5ea421.js,sha256=djNz3m
|
|
129
127
|
khoj/interface/compiled/_next/static/chunks/6297-d1c842ed3f714ab0.js,sha256=4nzZ2umR-q6wQ-8L4RSivWXKV_SE1dWoN9qA1I9lCRI,25675
|
130
128
|
khoj/interface/compiled/_next/static/chunks/7023-a5bf5744d19b3bd3.js,sha256=TBJA7dTnI8nymtbljKuZzo2hbStXWR-P8Qkl57k2Tw8,123898
|
131
129
|
khoj/interface/compiled/_next/static/chunks/9001-3b27af6d5f21df44.js,sha256=ran2mMGTO2kiAJebRGMyfyAu4Sdjw-WobS_m6g-qjz8,34223
|
132
|
-
khoj/interface/compiled/_next/static/chunks/9178-
|
133
|
-
khoj/interface/compiled/_next/static/chunks/9417-
|
134
|
-
khoj/interface/compiled/_next/static/chunks/9479-
|
130
|
+
khoj/interface/compiled/_next/static/chunks/9178-899fe9a6b754ecfe.js,sha256=AkZ8mx8fdZKFZxR0wXVkQ_0hkcd8NYbNoSSF8sthUSY,17798
|
131
|
+
khoj/interface/compiled/_next/static/chunks/9417-29502e39c3e7d60c.js,sha256=RCdrdKyvMQRMyVnZPALFw_EU0IMNvl3x0DN4_1XzJig,19473
|
132
|
+
khoj/interface/compiled/_next/static/chunks/9479-7eed36fc954ef804.js,sha256=c4VtkdNKRyB4nl1tAEqPKQHOJUEzcsQ8shdC4y2YFI8,22261
|
135
133
|
khoj/interface/compiled/_next/static/chunks/d3ac728e-a9e3522eef9b6b28.js,sha256=wK1TsLdl56xtbQG6HMRDpylzTOYXQaAnnn2xobFnX40,267216
|
136
134
|
khoj/interface/compiled/_next/static/chunks/fd9d1056-2b978342deb60015.js,sha256=2lquiZSfbI-gX4j4TW4JSMLL_D5ShqwydgWpFyXrTy8,172834
|
137
135
|
khoj/interface/compiled/_next/static/chunks/framework-8e0e0f4a6b83a956.js,sha256=sFFnSyDnFoOc61lP-EtTzTyf-zGA78ejDyMgPFMDw2Q,140001
|
138
136
|
khoj/interface/compiled/_next/static/chunks/main-app-6d6ee3495efe03d4.js,sha256=i52E7sWOcSq1G8eYZL3mtTxbUbwRNxcAbSWQ6uWpMsY,475
|
139
137
|
khoj/interface/compiled/_next/static/chunks/main-f84cd3c1873cd842.js,sha256=jKg2A4pPMmEAQmrA10rACH3daS8XXJeMnGOz1AsTkdI,111099
|
140
138
|
khoj/interface/compiled/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
141
|
-
khoj/interface/compiled/_next/static/chunks/webpack-
|
139
|
+
khoj/interface/compiled/_next/static/chunks/webpack-2651a68f46ac3cb7.js,sha256=jtUDQjg7zeARPca7r7i_f8Ii6KQxr6zjlJGhyrVpc6E,3724
|
142
140
|
khoj/interface/compiled/_next/static/chunks/app/layout-f3e40d346da53112.js,sha256=nekGSUVbvB81OfqGgJa2UoDmbxPhNwFwtc4o11O_1jI,442
|
143
|
-
khoj/interface/compiled/_next/static/chunks/app/page-
|
141
|
+
khoj/interface/compiled/_next/static/chunks/app/page-10a5aad6e04f3cf8.js,sha256=eugKXd0nrJGg9NbfmNmUrkCxT-w5opawTRxpheHICQ4,28641
|
144
142
|
khoj/interface/compiled/_next/static/chunks/app/_not-found/page-07ff4ab42b07845e.js,sha256=3mCUnxfMxyK44eqk21TVBrC6u--WSbvx31fTmQuOvMQ,1755
|
145
143
|
khoj/interface/compiled/_next/static/chunks/app/agents/layout-e71c8e913cccf792.js,sha256=VyIMrkvntFObMzXF-elNtngJ8mBdjg8XrOGfboJ2f_4,372
|
146
|
-
khoj/interface/compiled/_next/static/chunks/app/agents/page-
|
144
|
+
khoj/interface/compiled/_next/static/chunks/app/agents/page-25b91e88abb7f976.js,sha256=06LVl5qtov4HKBut43ZtiuUyD2PfQzWeSUklZJsZ7uY,40600
|
147
145
|
khoj/interface/compiled/_next/static/chunks/app/automations/layout-27c28e923c9b1ff0.js,sha256=d2vJ_lVB0pfeFXNUPzHAe1ca5NzdNowHPh___SPqugM,5143
|
148
|
-
khoj/interface/compiled/_next/static/chunks/app/automations/page-
|
146
|
+
khoj/interface/compiled/_next/static/chunks/app/automations/page-5480731341f34450.js,sha256=PgsFxtYymaDBMcJR31xPXLp4HX--uFJt6OAES95jM8k,35441
|
149
147
|
khoj/interface/compiled/_next/static/chunks/app/chat/layout-8102549127db3067.js,sha256=YIoA3fqOBt8nKWw5iQAwA_avg2t1Q5Afn65IA5PBOz4,374
|
150
|
-
khoj/interface/compiled/_next/static/chunks/app/chat/page-
|
148
|
+
khoj/interface/compiled/_next/static/chunks/app/chat/page-702057ccbcf27881.js,sha256=Fge4qq3mFhPk0-tI5ts5JsJErlfjmlgHwbEugyVyAnk,5666
|
151
149
|
khoj/interface/compiled/_next/static/chunks/app/factchecker/layout-7b30c541c05fb904.js,sha256=yub2AuBKHKSCqrHRFnkZv9JXLmLJLOB99iiaD3DtZQM,170
|
152
|
-
khoj/interface/compiled/_next/static/chunks/app/factchecker/page-
|
150
|
+
khoj/interface/compiled/_next/static/chunks/app/factchecker/page-e7b34316ec6f44de.js,sha256=DPWy4Lh773zmhmrgEu8TPTI-r5DfZDeaoIOUGPKhi18,14032
|
153
151
|
khoj/interface/compiled/_next/static/chunks/app/search/layout-3720f1362310bebb.js,sha256=Smpa4MQaw5ItashtspsDKsOvRa6sOXH_lv4jIfWIbNI,170
|
154
|
-
khoj/interface/compiled/_next/static/chunks/app/search/page-
|
152
|
+
khoj/interface/compiled/_next/static/chunks/app/search/page-d56541c746fded7d.js,sha256=4uRb6Ns9ichFXH7kBmbFLa7g8KgSgUsKFEYXEQqx9CQ,6958
|
155
153
|
khoj/interface/compiled/_next/static/chunks/app/settings/layout-6f9314b0d7a26046.js,sha256=ikl3vCXnp81sa24uPSuRbgvgDtpHGWfhxEs4OAOYXIM,5347
|
156
|
-
khoj/interface/compiled/_next/static/chunks/app/settings/page-
|
154
|
+
khoj/interface/compiled/_next/static/chunks/app/settings/page-e044a999468a7c5d.js,sha256=PgBPWWlZyx65XgxrttZlHREESMDt44ICdrrZiO5gH9M,31848
|
157
155
|
khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-39f03f9e32399f0f.js,sha256=ClS8wrj6HOsRL4VX8DMiqX_MlQDsi_3CA-AQt4m7vuA,373
|
158
|
-
khoj/interface/compiled/_next/static/chunks/app/share/chat/page-
|
156
|
+
khoj/interface/compiled/_next/static/chunks/app/share/chat/page-fbbd66a4d4633438.js,sha256=NfaF2T_Do-HHf0aFKmWqMUIQIXBJDzFiyxInUV7ulgw,4820
|
159
157
|
khoj/interface/compiled/_next/static/chunks/pages/_app-f870474a17b7f2fd.js,sha256=eqdFPAN_XFyMUzZ9qwFk-_rhMWZrU7lgNVt1foVUANo,286
|
160
158
|
khoj/interface/compiled/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
|
161
159
|
khoj/interface/compiled/_next/static/css/1538cedb321e3a97.css,sha256=-qLZhPN-wA3kcrVODVTaG1sN0pmuzRCqNH12gs5_qYc,2569
|
162
160
|
khoj/interface/compiled/_next/static/css/2272c73fc7a3b571.css,sha256=1fHKFd8zLOHosAHx-kxv4b9lVSqHag_E71WkV3dXx2Y,26940
|
161
|
+
khoj/interface/compiled/_next/static/css/2de69f0be774c768.css,sha256=E00JnHdJVDT2Ai0dxE6VRD0odoBTLEyeQW48rlv5zH4,7849
|
163
162
|
khoj/interface/compiled/_next/static/css/3e1f1fdd70775091.css,sha256=HT70_NVRMtV5IPc5k9JBGrVirjDZ3tyap7mEPXjQlGM,1634
|
164
|
-
khoj/interface/compiled/_next/static/css/4cae6c0e5c72fb2d.css,sha256=3CjTMmtMrm_MYt1ywtUh2MHEjSLSl356SQLl4hdBuYw,534
|
165
|
-
khoj/interface/compiled/_next/static/css/50d972a8c787730b.css,sha256=L8dshoqZ3Gnz_tPqukg5VnMU8IeI9VjALhaTaZ2KW-c,1882235
|
166
163
|
khoj/interface/compiled/_next/static/css/553f9cdcc7a2bcd6.css,sha256=JpjOOwmqP9Hba-w_8Lx9jWW0ZD0kD3wR0HvdPGDyUPo,2134
|
164
|
+
khoj/interface/compiled/_next/static/css/592ca99f5122e75a.css,sha256=BSqRkeb9vBh0phx5GkAlZirTFZintbyggGaUkuOBfaU,914
|
167
165
|
khoj/interface/compiled/_next/static/css/5a400c87d295e68a.css,sha256=ojDUPJ9fJpEo9DzTAsEa-k1cg7Bef-nSTfpszMiqknQ,17711
|
166
|
+
khoj/interface/compiled/_next/static/css/7a2b0a2d7c3d86eb.css,sha256=dYeXulJ9Gx-Urisp7N8aOkinGTOZP7M3ff6a8t-k_xE,1882260
|
168
167
|
khoj/interface/compiled/_next/static/css/c808691c459e3887.css,sha256=Xj1SLFCKntSIqZSDCMg2MnzZowIiKFtqPT3KxrT4i94,1857
|
169
|
-
khoj/interface/compiled/_next/static/
|
168
|
+
khoj/interface/compiled/_next/static/lHwFhwhZGEZT4IMv1TNBH/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
|
169
|
+
khoj/interface/compiled/_next/static/lHwFhwhZGEZT4IMv1TNBH/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
170
170
|
khoj/interface/compiled/_next/static/media/0e790e04fd40ad16-s.p.woff2,sha256=41ewITd0G1ZAoB62BTHMW58a1q8Hl6vSbTQkkHP7EbI,39372
|
171
171
|
khoj/interface/compiled/_next/static/media/4221e1667cd19c7d-s.woff2,sha256=_Y3g0keA8P6nZnFfm_VO5o2Sne1iST3v9xz4fBo3fwM,75532
|
172
172
|
khoj/interface/compiled/_next/static/media/6c276159aa0eb14b-s.woff2,sha256=i9Ibzi_O7y5KpImujj2rEdOZf96lpNYxYzVvCryW5Uc,140408
|
@@ -239,8 +239,8 @@ khoj/interface/compiled/_next/static/media/flags.3afdda2f.webp,sha256=M2AW_HLpBn
|
|
239
239
|
khoj/interface/compiled/_next/static/media/flags@2x.5fbe9fc1.webp,sha256=BBeRPBZkxY3-aKkMnYv5TSkxmbeMbyUH4VRIPfrWg1E,137406
|
240
240
|
khoj/interface/compiled/_next/static/media/globe.98e105ca.webp,sha256=g3ofb8-W9GM75zIhlvQhaS8I2py9TtrovOKR3_7Jf04,514
|
241
241
|
khoj/interface/compiled/_next/static/media/globe@2x.974df6f8.webp,sha256=I_N7Yke3IOoS-0CC6XD8o0IUWG8PdPbrHmf6lpgWlZY,1380
|
242
|
-
khoj/interface/compiled/agents/index.html,sha256=
|
243
|
-
khoj/interface/compiled/agents/index.txt,sha256=
|
242
|
+
khoj/interface/compiled/agents/index.html,sha256=mxn8UYU5osevGDVAw8WYo4M6wrnix0aGijd1GvmmYh4,12830
|
243
|
+
khoj/interface/compiled/agents/index.txt,sha256=Jvl5SRP9gOPSaKViZtPD3camEu1Fj_mYtQsEdBHY378,6126
|
244
244
|
khoj/interface/compiled/assets/icons/khoj_lantern.ico,sha256=eggu-B_v3z1R53EjOFhIqqPnICBGdoaw1xnc0NrzHck,174144
|
245
245
|
khoj/interface/compiled/assets/icons/khoj_lantern_128x128.png,sha256=aTxivDb3CYyThkVZWz8A19xl_dNut5DbkXhODWF3A9Q,5640
|
246
246
|
khoj/interface/compiled/assets/icons/khoj_lantern_256x256.png,sha256=xPCMLHiaL7lYOdQLZrKwWE-Qjn5ZaysSZB0ScYv4UZU,12312
|
@@ -251,18 +251,18 @@ khoj/interface/compiled/assets/samples/desktop-remember-plan-sample.png,sha256=i
|
|
251
251
|
khoj/interface/compiled/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
|
252
252
|
khoj/interface/compiled/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
|
253
253
|
khoj/interface/compiled/assets/samples/phone-remember-plan-sample.png,sha256=Ma3blirRmq3X4oYSsDbbT7MDn29rymDrjwmUfA9BMuM,236285
|
254
|
-
khoj/interface/compiled/automations/index.html,sha256=
|
255
|
-
khoj/interface/compiled/automations/index.txt,sha256=
|
256
|
-
khoj/interface/compiled/chat/index.html,sha256=
|
257
|
-
khoj/interface/compiled/chat/index.txt,sha256=
|
258
|
-
khoj/interface/compiled/factchecker/index.html,sha256=
|
259
|
-
khoj/interface/compiled/factchecker/index.txt,sha256=
|
260
|
-
khoj/interface/compiled/search/index.html,sha256=
|
261
|
-
khoj/interface/compiled/search/index.txt,sha256=
|
262
|
-
khoj/interface/compiled/settings/index.html,sha256=
|
263
|
-
khoj/interface/compiled/settings/index.txt,sha256=
|
264
|
-
khoj/interface/compiled/share/chat/index.html,sha256=
|
265
|
-
khoj/interface/compiled/share/chat/index.txt,sha256=
|
254
|
+
khoj/interface/compiled/automations/index.html,sha256=CXgMZHcoyxXvhnB7qPIS2uXLhusDyq-QJhryE02Oq60,30624
|
255
|
+
khoj/interface/compiled/automations/index.txt,sha256=1sINYd1x1IlvrRkU_Xfc6LsQ5UF4MLT3fMnIWeUKmVA,5494
|
256
|
+
khoj/interface/compiled/chat/index.html,sha256=mIk3IQEgHEjM10cMS3f3aPWwNFcR326mMgUcoUQmjAI,13724
|
257
|
+
khoj/interface/compiled/chat/index.txt,sha256=GSzdbnpVDVCt2hQ4aTkqie6lzq-YkNknc5frXduUksQ,6486
|
258
|
+
khoj/interface/compiled/factchecker/index.html,sha256=BDaf57sXbFJhQdDBOPNJ4M24m-Y3Rru7b2UCcFIySWU,29973
|
259
|
+
khoj/interface/compiled/factchecker/index.txt,sha256=M_KkrJMJKe2758P7zvGvmnwb6r7Tgdx8utX-22cyx6w,5788
|
260
|
+
khoj/interface/compiled/search/index.html,sha256=Orwx5nAQWZD1W9mEf6ygaAt9dkb86ggoHoM5x-D-iNA,30161
|
261
|
+
khoj/interface/compiled/search/index.txt,sha256=KYCIbcFlKIjQwJTyy5m_fsHh5BP0wE-YYKnUeL0E0Jw,5256
|
262
|
+
khoj/interface/compiled/settings/index.html,sha256=sacF5n89qZXT_sAaKnYJRLvfng3F-0Y9zgFlkhia-QU,12831
|
263
|
+
khoj/interface/compiled/settings/index.txt,sha256=ShwFRmBZULS4cPUdt_9TWE8VCikpfeOSAtUiYabi2-A,6078
|
264
|
+
khoj/interface/compiled/share/chat/index.html,sha256=6mTFiTkoLJMQp-03CRaSjqKSePPq_7T0CbiiOwJxBUQ,15049
|
265
|
+
khoj/interface/compiled/share/chat/index.txt,sha256=F9q9asJv-d6t90bqKDfN4qMr08SOK9aDysFN_RHePGM,7297
|
266
266
|
khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
|
267
267
|
khoj/interface/email/magic_link.html,sha256=EoGKQucfPj3xQrWXhSZAzPFOYCHF_ZX94TWCd1XHl1M,941
|
268
268
|
khoj/interface/email/task.html,sha256=tY7a0gzVeQ2lSQNu7WyXR_s7VYeWTrxWEj1iHVuoVE4,2813
|
@@ -293,7 +293,7 @@ khoj/migrations/migrate_processor_config_openai.py,sha256=FfeUU2JPQMtlr1iYoc4Cer
|
|
293
293
|
khoj/migrations/migrate_server_pg.py,sha256=b6ULFFBEF__W10YpgF28deKoOzGqDbdvyL4nBdj3eNU,5015
|
294
294
|
khoj/migrations/migrate_version.py,sha256=6CTsLuxiLnFVF8A7CjsIz3PcnJd8fAOZeIx6tTu6Vgg,569
|
295
295
|
khoj/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
296
|
-
khoj/processor/embeddings.py,sha256=
|
296
|
+
khoj/processor/embeddings.py,sha256=qL2Vx5SxDJXJ7TZJNl6s4xclq-zJiVMLYbdnvod5_Cw,5427
|
297
297
|
khoj/processor/content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
298
298
|
khoj/processor/content/text_to_entries.py,sha256=Oa4Ny8c5S1_IGCmjCtUI45hX1fPTRwxXhHg1lHFqHy8,14537
|
299
299
|
khoj/processor/content/docx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -313,14 +313,14 @@ khoj/processor/content/pdf/pdf_to_entries.py,sha256=OE90osFchohih3RYvDmZepbtzWoG
|
|
313
313
|
khoj/processor/content/plaintext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
314
314
|
khoj/processor/content/plaintext/plaintext_to_entries.py,sha256=97i7Cm0DTY7jW4iqKOT_oVc2ooa_XhQ8iImsljp1Kek,4994
|
315
315
|
khoj/processor/conversation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
316
|
-
khoj/processor/conversation/prompts.py,sha256=
|
317
|
-
khoj/processor/conversation/utils.py,sha256=
|
316
|
+
khoj/processor/conversation/prompts.py,sha256=w6mCZ-_j1CC61dMuZU-GipTTERuJh6KQa1snYn2pkWo,36268
|
317
|
+
khoj/processor/conversation/utils.py,sha256=16Y8DUHcw7SQa65qnA1jFzJjoKyuTek9-5BGsnt1Qhk,11963
|
318
318
|
khoj/processor/conversation/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
319
319
|
khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=2O44WySb7xZqXxqA0M12gT9YsOLdBn4mz-mtJKj6fgY,8143
|
320
320
|
khoj/processor/conversation/anthropic/utils.py,sha256=GHCz-xll_DBipqSc5e5qdVhLQiKX5Kso3KQRf1BXbVA,3456
|
321
321
|
khoj/processor/conversation/google/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
322
|
-
khoj/processor/conversation/google/gemini_chat.py,sha256=
|
323
|
-
khoj/processor/conversation/google/utils.py,sha256=
|
322
|
+
khoj/processor/conversation/google/gemini_chat.py,sha256=WMXsufumpQBqq2onpJ_Wc6CFrJd0YsvYajiYpstM3Qo,7823
|
323
|
+
khoj/processor/conversation/google/utils.py,sha256=jdeI4dscid9I59YhTvDv91uCmD0mMgjL27tO20IvLB0,8766
|
324
324
|
khoj/processor/conversation/offline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
325
325
|
khoj/processor/conversation/offline/chat_model.py,sha256=aqAhf2N-Kw3klTg3StrKWev6FWmFCH2BN9Jqq2Nm_FU,9740
|
326
326
|
khoj/processor/conversation/offline/utils.py,sha256=51McImxl6u1qgRYvMt7uzsgLGSLq5SMFy74ymlNjIcc,3033
|
@@ -336,14 +336,14 @@ khoj/processor/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
336
336
|
khoj/processor/tools/online_search.py,sha256=xViS7wWRysTMun0p7DeM-313mYzkw4fsuTOPManfrv8,10353
|
337
337
|
khoj/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
338
338
|
khoj/routers/api.py,sha256=qTXRV40GTqvk7IIVNxPBAMi56C47IqiXdp013LWLkFg,27586
|
339
|
-
khoj/routers/api_agents.py,sha256=
|
340
|
-
khoj/routers/api_chat.py,sha256=
|
339
|
+
khoj/routers/api_agents.py,sha256=ntG5CDbYDxTrxCh5T_dPhh-PQhG-mtmgg_Qa0cMXAW4,8808
|
340
|
+
khoj/routers/api_chat.py,sha256=vULnZcKAiq31dY02doR_wVotQRyA1Id_UhhVEWC8EoM,60560
|
341
341
|
khoj/routers/api_content.py,sha256=lWunOwVWYvnl1ue_D81g9ZSwBc0UxHmBIrdJoVPxN_A,17900
|
342
342
|
khoj/routers/api_model.py,sha256=5m7JWwgd9jILiLivRu7NEyY2E-tUkqoEkGg6j6uM1g0,4646
|
343
343
|
khoj/routers/api_phone.py,sha256=p9yfc4WeMHDC0hg3aQk60a2VBy8rZPdEnz9wdJ7DzkU,2208
|
344
344
|
khoj/routers/auth.py,sha256=pCOLSRihJWcn097DRPxLjPdlejsjHJFRs9jHIzLujZU,6247
|
345
345
|
khoj/routers/email.py,sha256=SGYNPQvfcvYeHf70F0YqpY0FLMRElF2ZekROXdwGI18,3821
|
346
|
-
khoj/routers/helpers.py,sha256=
|
346
|
+
khoj/routers/helpers.py,sha256=yWjuxFIpawWVVlf0veNmNyiEqA77CjnaK9fzq9peNds,68098
|
347
347
|
khoj/routers/notion.py,sha256=Lp67xP9rVgpAF9BQoGTjZFcVdF1HYtvPP0kjq6uurKU,2802
|
348
348
|
khoj/routers/storage.py,sha256=tJrwhFRVWv0MHv7V7huMc1Diwm-putZSwnZXJ3tqT_c,2338
|
349
349
|
khoj/routers/subscription.py,sha256=qEyV7m7mrY6MGtaij8W3v61tpzX2a7ydm2B-E8h_R-M,4285
|
@@ -361,15 +361,15 @@ khoj/utils/cli.py,sha256=AgO3rO-bN5oI71sIReGxrJXPeXEH80fnCIsyVlZYgjI,3695
|
|
361
361
|
khoj/utils/config.py,sha256=aiOkH0je8A30DAGYTHMRePrgJonFv_i07_7CdhhhcdA,1805
|
362
362
|
khoj/utils/constants.py,sha256=UwE7U9bNsfeqTb0K2lcdXdAscM4-7uuVoR3KbZS03Pg,1216
|
363
363
|
khoj/utils/fs_syncer.py,sha256=bQgcbYYC3x11RyCqI_kUzzqGpcKTodGgdT-3OTQsXqw,9977
|
364
|
-
khoj/utils/helpers.py,sha256=
|
364
|
+
khoj/utils/helpers.py,sha256=4DR3kWn5wrgrZRPAWNg1GB4JJdAvuqwJcIyzPwphes0,15976
|
365
365
|
khoj/utils/initialization.py,sha256=wlGtgThdRx77trd8H83Cp0cxAtkel0789eyFoF7iToA,10315
|
366
366
|
khoj/utils/jsonl.py,sha256=0Ac_COqr8sLCXntzZtquxuCEVRM2c3yKeDRGhgOBRpQ,1192
|
367
367
|
khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
|
368
368
|
khoj/utils/rawconfig.py,sha256=kURDuk7x0MDtniGLU4x1IsvU4UIBS-V9dSM4GD8X-LY,4274
|
369
369
|
khoj/utils/state.py,sha256=x4GTewP1YhOA6c_32N4wOjnV-3AA3xG_qbY1-wC2Uxc,1559
|
370
370
|
khoj/utils/yaml.py,sha256=H0mfw0ZvBFUvFmCQn8pWkfxdmIebsrSykza7D8Wv6wQ,1430
|
371
|
-
khoj-1.24.2.
|
372
|
-
khoj-1.24.2.
|
373
|
-
khoj-1.24.2.
|
374
|
-
khoj-1.24.2.
|
375
|
-
khoj-1.24.2.
|
371
|
+
khoj-1.24.2.dev33.dist-info/METADATA,sha256=8zX6QaQb5NwSvEDj3y0JdSJG52p4K8xu2uquhT4i5xc,6496
|
372
|
+
khoj-1.24.2.dev33.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
373
|
+
khoj-1.24.2.dev33.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
374
|
+
khoj-1.24.2.dev33.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
375
|
+
khoj-1.24.2.dev33.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[9718],{1813:function(e,t,s){Promise.resolve().then(s.bind(s,45050))},45050:function(e,t,s){"use strict";s.r(t),s.d(t,{default:function(){return eh}});var a=s(57437),n=s(15283),l=s.n(n),r=s(29039),i=s(2265),o=s(79306),c=s(50495),d=s(58284),u=s(5989),h=s(12275),m=s(18444),x=s(31784),f=s(20319),p=s(98750),g=s(55362),j=s(57691),v=s(68029),b=s(68131),N=s(83632),w=s(9950),y=s(35418),_=s(84120),C=s(15780),k=s(26058),O=s(64945),z=s(59772),S=s(36013),T=s(90837),I=s(7951),P=s(66820),V=s(58485),M=s(48861),A=s(89417),R=s(58575),E=s(47412),Z=s(69591),q=s(32653),W=s(39343),J=s(83102),B=s(31014),F=s(93146),L=s(46294),D=s(13304),X=s(40882);let G=X.fC,Y=X.wy,K=X.Fw;var Q=s(37440),U=s(42491),$=s(9557),H=s(6780),ee=s(70571),et=s(19573),es=s(18642),ea=s(19666);async function en(e,t){let s="/login?next=/agents?agent=".concat(e);if(!t){window.location.href=s;return}let a=await fetch("/api/chat/sessions?agent_slug=".concat(e),{method:"POST"}),n=await a.json();200==a.status?window.location.href="/chat?conversationId=".concat(n.conversation_id):403==a.status||401==a.status?window.location.href=s:alert("Failed to start chat session")}function el(e){var t;let s=(null===(t=e.text)||void 0===t?void 0:t.replace(/^\w/,e=>e.toUpperCase()))||"";return(0,a.jsx)(ea.pn,{children:(0,a.jsxs)(ea.u,{children:[(0,a.jsx)(ea._v,{asChild:!0,children:(0,a.jsx)("div",{className:"text-sm",children:e.hoverText||s})}),(0,a.jsx)(ea.aJ,{children:(0,a.jsxs)("div",{className:"flex items-center space-x-2 rounded-full border-accent-500 border p-1.5",children:[(0,a.jsx)("div",{className:"text-muted-foreground",children:e.icon}),s&&s.length>0&&(0,a.jsx)("div",{className:"text-muted-foreground text-sm",children:s})]})})]})})}let er=()=>window.fetch("/api/agents").then(e=>e.json()).catch(e=>console.log(e)),ei=e=>fetch(e).then(e=>e.json());function eo(e){let[t,s]=(0,i.useState)(e.agentSlug===e.data.slug),[n,r]=(0,i.useState)(!1),[o,v]=(0,i.useState)(null),b=(0,a.jsx)(d.H,{}),N="Private agents are only visible to you.";"public"===e.data.privacy_level?(b=(0,a.jsx)(u.T,{}),N="Public agents are visible to everyone."):"protected"===e.data.privacy_level&&(b=(0,a.jsx)(h.M,{}),N="Protected agents are visible to anyone with a direct link.");let w=e.userProfile,y=(0,W.cI)({resolver:(0,B.F)(ec),defaultValues:{name:e.data.name,persona:e.data.persona,color:e.data.color,icon:e.data.icon,privacy_level:e.data.privacy_level,chat_model:e.data.chat_model,files:e.data.files,input_tools:e.data.input_tools,output_modes:e.data.output_modes}});t&&window.history.pushState({},"Khoj AI - Agent ".concat(e.data.slug),"/agents?agent=".concat(e.data.slug));let _=t=>{fetch("/api/agents",{method:e.editCard?"PATCH":"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)}).then(t=>{console.log(t),200===t.status?(y.reset(),s(!1),v(null),e.setAgentChangeTriggered(!0)):t.json().then(e=>{console.error(e),y.clearErrors(),e.error&&v(e.error)})}).catch(e=>{console.error("Error:",e),v(e),y.clearErrors()})},C=(0,R.oz)(e.data.color);function k(){return(0,a.jsxs)("div",{className:"flex flex-wrap items-center gap-1",children:[e.editCard&&(0,a.jsx)(el,{icon:b,text:e.data.privacy_level,hoverText:N}),e.data.files&&e.data.files.length>0&&(0,a.jsx)(el,{icon:(0,a.jsx)(m.f,{}),text:"knowledge",hoverText:"The agent has a custom knowledge base it can use to give you answers."}),(0,a.jsx)(el,{icon:(0,a.jsx)(x.a,{}),text:e.data.chat_model,hoverText:"The agent uses the ".concat(e.data.chat_model," model to chat with you.")}),e.data.output_modes.map(t=>(0,a.jsx)(el,{icon:(0,A.vH)(t),hoverText:"".concat(t,": ").concat(e.outputModeOptions[t])},t)),e.data.input_tools.map(t=>(0,a.jsx)(el,{icon:(0,A.vH)(t),hoverText:"".concat(t,": ").concat(e.inputToolOptions[t])},t))]})}return(0,a.jsxs)(S.Zb,{className:"shadow-sm bg-gradient-to-b from-white 20% to-".concat(e.data.color?e.data.color:"gray","-100/50 dark:from-[hsl(var(--background))] dark:to-").concat(e.data.color?e.data.color:"gray","-950/50 rounded-xl hover:shadow-md"),children:[n&&(0,a.jsx)(P.Z,{loginRedirectMessage:"Sign in to start chatting with ".concat(e.data.name),onOpenChange:r}),(0,a.jsx)(S.Ol,{children:(0,a.jsx)(S.ll,{children:e.isMobileWidth?(0,a.jsxs)(I.dy,{open:t,onOpenChange:e=>{s(e),window.history.pushState({},"Khoj AI - Agents","/agents")},children:[(0,a.jsx)(I.Qz,{children:(0,a.jsxs)("div",{className:"flex items-center",children:[(0,A.TI)(e.data.icon,e.data.color),e.data.name]})}),(0,a.jsxs)("div",{className:"flex float-right",children:[e.editCard&&(0,a.jsx)("div",{className:"float-right",children:(0,a.jsxs)(et.J2,{children:[(0,a.jsx)(et.xo,{children:(0,a.jsx)(c.z,{className:"bg-[hsl(var(--background))] w-14 h-14 rounded-xl border dark:border-neutral-700 shadow-sm hover:bg-stone-100 dark:hover:bg-neutral-900",children:(0,a.jsx)(f.F,{className:"w-6 h-6 ".concat((0,R.oz)(e.data.color))})})}),(0,a.jsxs)(et.yk,{className:"w-fit grid p-1",side:"bottom",align:"end",children:[(0,a.jsxs)(c.z,{className:"items-center justify-start",variant:"ghost",onClick:()=>s(!0),children:[(0,a.jsx)(p.z,{className:"w-4 h-4 mr-2"}),"Edit"]}),e.editCard&&"private"!==e.data.privacy_level&&(0,a.jsx)(es.Z,{buttonTitle:"Share",title:"Share Agent",description:"Share a link to this agent with others. They'll be able to chat with it, and ask questions to all of its knowledge base.",buttonVariant:"ghost",includeIcon:!0,url:"".concat(window.location.origin,"/agents?agent=").concat(e.data.slug)}),e.data.creator===(null==w?void 0:w.username)&&(0,a.jsxs)(c.z,{className:"items-center justify-start",variant:"destructive",onClick:()=>{fetch("/api/agents/".concat(e.data.slug),{method:"DELETE"}).then(()=>{e.setAgentChangeTriggered(!0)})},children:[(0,a.jsx)(g.r,{className:"w-4 h-4 mr-2"}),"Delete"]})]})]})}),(0,a.jsx)("div",{className:"float-right",children:e.userProfile?(0,a.jsx)(c.z,{className:"bg-[hsl(var(--background))] w-14 h-14 rounded-xl border dark:border-neutral-700 shadow-sm hover:bg-stone-100 dark:hover:bg-neutral-900",onClick:()=>en(e.data.slug,w),children:(0,a.jsx)(j.g,{className:"w-6 h-6 ".concat((0,R.oz)(e.data.color))})}):(0,a.jsx)(c.z,{className:"bg-[hsl(var(--background))] w-14 h-14 rounded-xl border dark:border-neutral-700 shadow-sm hover:bg-stone-100 dark:hover:bg-neutral-900",onClick:()=>r(!0),children:(0,a.jsx)(j.g,{className:"w-6 h-6 ".concat((0,R.oz)(e.data.color))})})})]}),e.editCard?(0,a.jsx)(I.sc,{className:"whitespace-pre-line p-2",children:(0,a.jsx)(ed,{form:y,onSubmit:_,create:!1,errors:o,filesOptions:e.filesOptions,modelOptions:e.modelOptions,slug:e.data.slug,inputToolOptions:e.inputToolOptions,outputModeOptions:e.outputModeOptions})}):(0,a.jsxs)(I.sc,{className:"whitespace-pre-line p-2",children:[(0,a.jsxs)(I.OX,{children:[(0,a.jsx)(I.iI,{children:e.data.name}),(0,a.jsx)(I.u6,{children:"Persona"})]}),e.data.persona,(0,a.jsx)("div",{className:"flex flex-wrap items-center gap-1",children:k()}),(0,a.jsx)(I.ze,{children:(0,a.jsx)(I.uh,{children:"Done"})})]})]}):(0,a.jsxs)(T.Vq,{open:t,onOpenChange:()=>{s(!t),window.history.pushState({},"Khoj AI - Agents","/agents")},children:[(0,a.jsx)(T.hg,{children:(0,a.jsxs)("div",{className:"flex items-center relative top-2",children:[(0,A.TI)(e.data.icon,e.data.color),e.data.name]})}),(0,a.jsxs)("div",{className:"flex float-right",children:[e.editCard&&(0,a.jsx)("div",{className:"float-right",children:(0,a.jsxs)(et.J2,{children:[(0,a.jsx)(et.xo,{children:(0,a.jsx)(c.z,{className:"bg-[hsl(var(--background))] w-14 h-14 rounded-xl border dark:border-neutral-700 shadow-sm hover:bg-stone-100 dark:hover:bg-neutral-900",children:(0,a.jsx)(f.F,{className:"w-6 h-6 ".concat((0,R.oz)(e.data.color))})})}),(0,a.jsxs)(et.yk,{className:"w-fit grid p-1",side:"bottom",align:"end",children:[(0,a.jsxs)(c.z,{className:"items-center justify-start",variant:"ghost",onClick:()=>s(!0),children:[(0,a.jsx)(p.z,{className:"w-4 h-4 mr-2"}),"Edit"]}),e.editCard&&"private"!==e.data.privacy_level&&(0,a.jsx)(es.Z,{buttonTitle:"Share",title:"Share Agent",description:"Share a link to this agent with others. They'll be able to chat with it, and ask questions to all of its knowledge base.",buttonVariant:"ghost",includeIcon:!0,url:"".concat(window.location.origin,"/agents?agent=").concat(e.data.slug)}),e.data.creator===(null==w?void 0:w.username)&&(0,a.jsxs)(c.z,{className:"items-center justify-start",variant:"destructive",onClick:()=>{fetch("/api/agents/".concat(e.data.slug),{method:"DELETE"}).then(()=>{e.setAgentChangeTriggered(!0)})},children:[(0,a.jsx)(g.r,{className:"w-4 h-4 mr-2"}),"Delete"]})]})]})}),(0,a.jsx)("div",{className:"float-right",children:e.userProfile?(0,a.jsx)(c.z,{className:"bg-[hsl(var(--background))] w-14 h-14 rounded-xl border dark:border-neutral-700 shadow-sm hover:bg-stone-100 dark:hover:bg-neutral-900",onClick:()=>en(e.data.slug,w),children:(0,a.jsx)(j.g,{className:"w-6 h-6 ".concat((0,R.oz)(e.data.color))})}):(0,a.jsx)(c.z,{className:"bg-[hsl(var(--background))] w-14 h-14 rounded-xl border dark:border-neutral-700 shadow-sm hover:bg-stone-100 dark:hover:bg-neutral-900",onClick:()=>r(!0),children:(0,a.jsx)(j.g,{className:"w-6 h-6 ".concat((0,R.oz)(e.data.color))})})})]}),e.editCard?(0,a.jsxs)(T.cZ,{className:"lg:max-w-screen-lg overflow-y-scroll max-h-screen",children:[(0,a.jsxs)(D.$N,{children:["Edit ",(0,a.jsx)("b",{children:e.data.name})]}),(0,a.jsx)(ed,{form:y,onSubmit:_,create:!1,errors:o,filesOptions:e.filesOptions,modelOptions:e.modelOptions,slug:e.data.slug,inputToolOptions:e.inputToolOptions,outputModeOptions:e.outputModeOptions})]}):(0,a.jsxs)(T.cZ,{className:"whitespace-pre-line max-h-[80vh]",children:[(0,a.jsx)(T.fK,{children:(0,a.jsxs)("div",{className:"flex items-center",children:[(0,A.TI)(e.data.icon,e.data.color),(0,a.jsx)("p",{className:"font-bold text-lg",children:e.data.name})]})}),(0,a.jsx)("div",{className:"max-h-[60vh] overflow-y-scroll text-neutral-500 dark:text-white",children:e.data.persona}),(0,a.jsx)("div",{className:"flex flex-wrap items-center gap-1",children:k()}),(0,a.jsx)(T.cN,{children:(0,a.jsxs)(c.z,{className:"pt-6 pb-6 ".concat(C," bg-white dark:bg-[hsl(var(--background))] text-neutral-500 dark:text-white border-2 border-stone-100 shadow-sm rounded-xl hover:bg-stone-100 dark:hover:bg-neutral-900 dark:border-neutral-700"),onClick:()=>{en(e.data.slug,w),s(!1)},children:[(0,a.jsx)(j.g,{className:"w-6 h-6 m-2 ".concat((0,R.oz)(e.data.color))}),"Start Chatting"]})})]})]})})}),(0,a.jsx)(S.aY,{children:(0,a.jsx)("div",{className:l().agentPersonality,children:(0,a.jsx)("button",{className:"".concat(l().infoButton," text-neutral-500 dark:text-white"),onClick:()=>s(!0),children:(0,a.jsx)("p",{children:e.data.persona})})})}),(0,a.jsx)(S.eW,{children:(0,a.jsx)("div",{className:"flex flex-wrap items-center gap-1",children:k()})})]})}let ec=z.z.object({name:z.z.string({required_error:"Name is required"}).min(1,"Name is required"),persona:z.z.string({required_error:"Personality is required"}).min(1,"Personality is required"),color:z.z.string({required_error:"Color is required"}).min(1,"Color is required"),icon:z.z.string({required_error:"Icon is required"}).min(1,"Icon is required"),privacy_level:z.z.string({required_error:"Privacy level is required"}).min(1,"Privacy level is required"),chat_model:z.z.string({required_error:"Chat model is required"}).min(1,"Chat model is required"),files:z.z.array(z.z.string()).default([]).optional(),input_tools:z.z.array(z.z.string()).default([]).optional(),output_modes:z.z.array(z.z.string()).default([]).optional()});function ed(e){let[t,s]=(0,i.useState)(!1),n=(0,A.BI)(),l=R.xF,r=(0,R.oz)(e.form.getValues("color")),[o,d]=(0,i.useState)(!1),[u,h]=(0,i.useState)(null),[m,x]=(0,i.useState)(null),[f,p]=(0,i.useState)(!1),[g,j]=(0,i.useState)(0),[O,z]=(0,i.useState)([]),S=(0,i.useRef)(null);function T(e){e.preventDefault(),d(!0)}function I(e){e.preventDefault(),d(!1)}function P(e){e.preventDefault(),d(!1),e.dataTransfer.files&&V(e.dataTransfer.files)}function V(e){(0,$.ko)(e,h,p,x,z)}function M(){S&&S.current&&S.current.click()}function Z(e){e.target.files&&V(e.target.files)}(0,i.useEffect)(()=>{if(f||j(0),f){let e=setInterval(()=>{j(e=>{let t=e+(Math.floor(5*Math.random())+1);return t<100?t:100})},800);return()=>clearInterval(e)}},[f]),(0,i.useEffect)(()=>{O.length>0&&W(O)},[O]),(0,i.useEffect)(()=>{e.errors&&s(!1)},[e.errors]);let W=t=>{for(let s of t){let t=e.form.getValues("files")||[],a=t.includes(s)?t.filter(e=>e!==s):[...t,s];e.form.setValue("files",a)}},B=["public","private","protected"];return(0,a.jsx)(q.l0,{...e.form,children:(0,a.jsxs)("form",{onSubmit:e.form.handleSubmit(t=>{e.onSubmit(t),s(!0)}),className:"space-y-6",children:[(0,a.jsx)(q.Wi,{control:e.form.control,name:"name",render:e=>{let{field:t}=e;return(0,a.jsxs)(q.xJ,{className:"space-y-0",children:[(0,a.jsx)(q.lX,{children:"Name"}),(0,a.jsx)(q.pf,{children:"What should this agent be called? Pick something descriptive & memorable."}),(0,a.jsx)(q.NI,{children:(0,a.jsx)(J.I,{placeholder:"Biologist",...t})}),(0,a.jsx)(q.zG,{})]})}}),(0,a.jsx)(q.Wi,{control:e.form.control,name:"persona",render:e=>{let{field:t}=e;return(0,a.jsxs)(q.xJ,{className:"space-y-1",children:[(0,a.jsx)(q.lX,{children:"Personality"}),(0,a.jsx)(q.pf,{children:"What is the personality, thought process, or tuning of this agent? Get creative; this is how you can influence the agent constitution."}),(0,a.jsx)(q.NI,{children:(0,a.jsx)(F.g,{placeholder:"You are an excellent biologist, at the top of your field in marine biology.",...t})}),(0,a.jsx)(q.zG,{})]})}}),(0,a.jsx)(q.Wi,{control:e.form.control,name:"chat_model",render:t=>{let{field:s}=t;return(0,a.jsxs)(q.xJ,{className:"space-y-1",children:[(0,a.jsx)(q.lX,{children:"Chat Model"}),(0,a.jsx)(q.pf,{children:"Which large language model should this agent use?"}),(0,a.jsxs)(L.Ph,{onValueChange:s.onChange,defaultValue:s.value,children:[(0,a.jsx)(q.NI,{children:(0,a.jsx)(L.i4,{className:"text-left",children:(0,a.jsx)(L.ki,{})})}),(0,a.jsx)(L.Bw,{className:"items-start space-y-1 inline-flex flex-col",children:e.modelOptions.map(e=>(0,a.jsx)(L.Ql,{value:e.name,children:(0,a.jsx)("div",{className:"flex items-center space-x-2",children:e.name})},e.id))})]}),(0,a.jsx)(q.zG,{})]})}}),(0,a.jsx)(q.Wi,{control:e.form.control,name:"privacy_level",render:e=>{let{field:t}=e;return(0,a.jsxs)(q.xJ,{className:"",children:[(0,a.jsx)(q.lX,{children:(0,a.jsx)("div",{children:"Privacy Level"})}),(0,a.jsx)(q.pf,{children:(0,a.jsxs)(et.J2,{children:[(0,a.jsx)(et.xo,{asChild:!0,children:(0,a.jsx)(c.z,{variant:"ghost",className:"p-0 h-fit",children:(0,a.jsxs)("span",{className:"items-center flex gap-1 text-sm",children:[(0,a.jsx)(v.k,{className:"inline"}),(0,a.jsx)("p",{className:"text-sm",children:"Learn more"})]})})}),(0,a.jsxs)(et.yk,{children:[(0,a.jsx)("b",{children:"Private"}),": only visible to you.",(0,a.jsx)("br",{}),(0,a.jsx)("b",{children:"Protected"}),": visible to anyone with a link.",(0,a.jsx)("br",{}),(0,a.jsx)("b",{children:"Public"}),": visible to everyone.",(0,a.jsx)("br",{}),"All public agents will be reviewed by us before they are launched."]})]})}),(0,a.jsxs)(L.Ph,{onValueChange:t.onChange,defaultValue:t.value,children:[(0,a.jsx)(q.NI,{children:(0,a.jsx)(L.i4,{className:"w-[200px]",children:(0,a.jsx)(L.ki,{placeholder:"private"})})}),(0,a.jsx)(L.Bw,{className:"items-center space-y-1 inline-flex flex-col",children:B.map(e=>(0,a.jsx)(L.Ql,{value:e,children:(0,a.jsx)("div",{className:"flex items-center space-x-2",children:e})},e))})]}),(0,a.jsx)(q.zG,{})]})}}),(0,a.jsxs)("div",{className:"grid",children:[(0,a.jsx)(q.lX,{className:"mb-2",children:"Look & Feel"}),(0,a.jsxs)("div",{className:"flex gap-1 justify-left",children:[(0,a.jsx)(q.Wi,{control:e.form.control,name:"color",render:e=>{let{field:t}=e;return(0,a.jsxs)(q.xJ,{className:"space-y-3",children:[(0,a.jsxs)(L.Ph,{onValueChange:t.onChange,defaultValue:t.value,children:[(0,a.jsx)(q.NI,{children:(0,a.jsx)(L.i4,{className:"w-[200px]",children:(0,a.jsx)(L.ki,{placeholder:"Color"})})}),(0,a.jsx)(L.Bw,{className:"items-center space-y-1 inline-flex flex-col",children:l.map(e=>(0,a.jsx)(L.Ql,{value:e,children:(0,a.jsxs)("div",{className:"flex items-center space-x-2",children:[(0,a.jsx)(b.C,{className:"w-6 h-6 mr-2 ".concat((0,R.oz)(e)),weight:"fill"}),e]})},e))})]}),(0,a.jsx)(q.zG,{})]})}}),(0,a.jsx)(q.Wi,{control:e.form.control,name:"icon",render:t=>{let{field:s}=t;return(0,a.jsxs)(q.xJ,{className:"space-y-3",children:[(0,a.jsxs)(L.Ph,{onValueChange:s.onChange,defaultValue:s.value,children:[(0,a.jsx)(q.NI,{children:(0,a.jsx)(L.i4,{className:"w-[200px]",children:(0,a.jsx)(L.ki,{placeholder:"Icon"})})}),(0,a.jsx)(L.Bw,{className:"items-center space-y-1 inline-flex flex-col",children:n.map(t=>(0,a.jsx)(L.Ql,{value:t,children:(0,a.jsxs)("div",{className:"flex items-center space-x-2",children:[(0,A.TI)(t,e.form.getValues("color"),"w-6","h-6"),t]})},t))})]}),(0,a.jsx)(q.zG,{})]})}})]})]}),(0,a.jsxs)(q.xJ,{className:"flex flex-col",children:[(0,a.jsx)(q.lX,{className:"text-md",children:"Advanced Settings"}),(0,a.jsx)(q.pf,{children:"These are optional settings that you can use to customize your agent."})]}),(0,a.jsx)(q.Wi,{control:e.form.control,name:"files",render:t=>{let{field:s}=t;return(0,a.jsxs)(q.xJ,{className:"flex flex-col",children:[(0,a.jsx)(q.lX,{children:"Knowledge Base"}),(0,a.jsxs)(q.pf,{children:["Which information should be part of its digital brain?"," ",(0,a.jsx)("a",{href:"/settings",children:"Manage data"}),"."]}),(0,a.jsxs)(G,{children:[(0,a.jsxs)(Y,{className:"flex items-center justify-between text-sm gap-2",children:[(0,a.jsx)(N.K,{}),s.value&&s.value.length>0?"".concat(s.value.length," files selected"):"Select files"]}),(0,a.jsx)(K,{children:(0,a.jsxs)(U.mY,{children:[(0,a.jsx)(H.aR,{open:null!==u||null!=m,children:(0,a.jsxs)(H._T,{children:[(0,a.jsx)(H.fY,{children:(0,a.jsx)(H.f$,{children:"Alert"})}),(0,a.jsx)(H.yT,{children:u||m}),(0,a.jsx)(H.OL,{className:"bg-slate-400 hover:bg-slate-500",onClick:()=>{h(null),x(null),p(!1)},children:"Close"})]})}),(0,a.jsxs)("div",{className:"flex flex-col h-full cursor-pointer",onDragOver:T,onDragLeave:I,onDrop:P,onClick:M,children:[(0,a.jsx)("input",{type:"file",multiple:!0,ref:S,style:{display:"none"},onChange:Z}),(0,a.jsx)("div",{className:"flex-none p-4",children:f&&(0,a.jsx)(ee.E,{indicatorColor:"bg-slate-500",className:"w-full h-2 rounded-full",value:g})}),(0,a.jsx)("div",{className:"flex-none p-4 bg-secondary border-b ".concat(o?"animate-pulse":""," rounded-lg"),children:(0,a.jsx)("div",{className:"flex items-center justify-center w-full h-16 border-2 border-dashed border-gray-300 rounded-lg",children:o?(0,a.jsxs)("div",{className:"flex items-center justify-center w-full h-full",children:[(0,a.jsx)(w.u,{className:"h-6 w-6 mr-2"}),(0,a.jsx)("span",{children:"Drop files to upload"})]}):(0,a.jsxs)("div",{className:"flex items-center justify-center w-full h-full",children:[(0,a.jsx)(y.v,{className:"h-6 w-6 mr-2"}),(0,a.jsx)("span",{children:"Drag and drop files here"})]})})})]}),(0,a.jsx)(U.sZ,{placeholder:"Select files..."}),(0,a.jsxs)(U.e8,{children:[(0,a.jsx)(U.rb,{children:"No files found."}),(0,a.jsx)(U.fu,{children:e.filesOptions.map(t=>(0,a.jsxs)(U.di,{value:t,onSelect:()=>{let s=e.form.getValues("files")||[],a=s.includes(t)?s.filter(e=>e!==t):[...s,t];e.form.setValue("files",a)},children:[(0,a.jsx)(_.J,{className:(0,Q.cn)("mr-2 h-4 w-4",s.value&&s.value.includes(t)?"opacity-100":"opacity-0")}),t]},t))})]})]})})]})]})}}),(0,a.jsx)(q.Wi,{control:e.form.control,name:"input_tools",render:t=>{let{field:s}=t;return(0,a.jsxs)(q.xJ,{className:"flex flex-col",children:[(0,a.jsx)(q.lX,{children:"Restrict Input Tools"}),(0,a.jsxs)(q.pf,{children:["Which knowledge retrieval tools should this agent be limited to?",(0,a.jsx)("br",{}),(0,a.jsx)("b",{children:"Default:"})," No limitations."]}),(0,a.jsxs)(G,{children:[(0,a.jsxs)(Y,{className:"flex items-center justify-between text-sm gap-2",children:[(0,a.jsx)(N.K,{}),s.value&&s.value.length>0?"".concat(s.value.length," tools selected"):"All tools"]}),(0,a.jsx)(K,{children:(0,a.jsx)(U.mY,{children:(0,a.jsx)(U.e8,{children:(0,a.jsx)(U.fu,{children:Object.entries(e.inputToolOptions).map(t=>{let[n,l]=t;return(0,a.jsxs)(U.di,{value:n,onSelect:()=>{let t=e.form.getValues("input_tools")||[],s=t.includes(n)?t.filter(e=>e!==n):[...t,n];e.form.setValue("input_tools",s)},children:[(0,a.jsx)(_.J,{className:(0,Q.cn)("mr-2 h-4 w-4",s.value&&s.value.includes(n)?"opacity-100":"opacity-0")}),(0,a.jsx)("b",{children:n}),": ",l]},n)})})})})})]})]})}}),(0,a.jsx)(q.Wi,{control:e.form.control,name:"output_modes",render:t=>{let{field:s}=t;return(0,a.jsxs)(q.xJ,{className:"flex flex-col",children:[(0,a.jsx)(q.lX,{children:"Restrict Output Modes"}),(0,a.jsxs)(q.pf,{children:["Which output modes should this agent be limited to?",(0,a.jsx)("br",{}),(0,a.jsx)("b",{children:"Default:"})," No limitations."]}),(0,a.jsxs)(G,{children:[(0,a.jsxs)(Y,{className:"flex items-center justify-between text-sm gap-2",children:[(0,a.jsx)(N.K,{}),s.value&&s.value.length>0?"".concat(s.value.length," modes selected"):"All modes"]}),(0,a.jsx)(K,{children:(0,a.jsx)(U.mY,{children:(0,a.jsx)(U.e8,{children:(0,a.jsx)(U.fu,{children:Object.entries(e.outputModeOptions).map(t=>{let[n,l]=t;return(0,a.jsxs)(U.di,{value:n,onSelect:()=>{let t=e.form.getValues("output_modes")||[],s=t.includes(n)?t.filter(e=>e!==n):[...t,n];e.form.setValue("output_modes",s)},children:[(0,a.jsx)(_.J,{className:(0,Q.cn)("mr-2 h-4 w-4",s.value&&s.value.includes(n)?"opacity-100":"opacity-0")}),(0,a.jsx)("b",{children:n}),": ",l]},n)})})})})})]})]})}}),e.errors&&(0,a.jsx)(E.bZ,{className:"bg-secondary border-none my-4",children:(0,a.jsxs)(E.X,{className:"flex items-center gap-1",children:[(0,a.jsx)(C.f,{weight:"fill",className:"h-4 w-4 text-yellow-400 inline"}),(0,a.jsx)("span",{children:e.errors})]})}),(0,a.jsxs)("fieldset",{children:[(0,a.jsxs)(c.z,{type:"submit",variant:"ghost",disabled:t,className:"items-center ".concat(t?"bg-stone-100 dark:bg-neutral-900":""," text-white ").concat(r),children:[(0,a.jsx)(k.B,{className:"h-4 w-4 mr-2"}),t?"Booting...":"Save"]}),!e.create&&"private"!==e.form.getValues("privacy_level")&&(0,a.jsx)(es.Z,{buttonTitle:"Share",title:"Share Agent",description:"Share a link to this agent with others. They'll be able to chat with it, and ask questions to all of its knowledge base.",buttonVariant:"ghost",buttonClassName:"".concat(r),includeIcon:!0,url:"".concat(window.location.origin,"/agents?agent=").concat(e.slug)})]})]})})}function eu(e){let[t,s]=(0,i.useState)(!1),[n,l]=(0,i.useState)(null),r=(0,W.cI)({resolver:(0,B.F)(ec),defaultValues:{name:e.data.name,persona:e.data.persona,color:e.data.color,icon:e.data.icon,privacy_level:e.data.privacy_level,chat_model:e.selectedChatModelOption,files:[]}});(0,i.useEffect)(()=>{r.reset({name:e.data.name,persona:e.data.persona,color:e.data.color,icon:e.data.icon,privacy_level:e.data.privacy_level,chat_model:e.selectedChatModelOption,files:[]})},[e.selectedChatModelOption,e.data]);let o=t=>{console.log(JSON.stringify(t)),fetch("/api/agents",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)}).then(t=>{200===t.status?(r.reset(),s(!1),l(null),e.setAgentChangeTriggered(!0)):t.json().then(e=>{console.error(e),e.error&&l(e.error)})}).catch(e=>{console.error("Error:",e),l(e)})};return e.isMobileWidth?(0,a.jsxs)(I.dy,{open:t,onOpenChange:s,children:[(0,a.jsx)(I.Qz,{children:(0,a.jsxs)("div",{className:"flex items-center",children:[(0,a.jsx)(y.v,{}),"Create Agent"]})}),(0,a.jsxs)(I.sc,{className:"p-2",children:[(0,a.jsx)(I.OX,{children:(0,a.jsx)(I.iI,{children:"Create Agent"})}),(0,a.jsx)(ed,{form:r,onSubmit:o,create:!0,errors:n,filesOptions:e.filesOptions,modelOptions:e.modelOptions,inputToolOptions:e.inputToolOptions,outputModeOptions:e.outputModeOptions}),(0,a.jsx)(I.ze,{children:(0,a.jsx)(I.uh,{children:"Dismiss"})})]})]}):(0,a.jsxs)(T.Vq,{open:t,onOpenChange:s,children:[(0,a.jsx)(T.hg,{children:(0,a.jsxs)("div",{className:"flex items-center text-md gap-2",children:[(0,a.jsx)(y.v,{}),"Create Agent"]})}),(0,a.jsxs)(T.cZ,{className:"lg:max-w-screen-lg overflow-y-scroll max-h-screen",children:[(0,a.jsx)(T.fK,{children:"Create Agent"}),(0,a.jsx)(ed,{form:r,onSubmit:o,create:!0,errors:n,filesOptions:e.filesOptions,modelOptions:e.modelOptions,inputToolOptions:e.inputToolOptions,outputModeOptions:e.outputModeOptions})]})]})}function eh(){let{data:e,error:t,mutate:s}=(0,r.ZP)("agents",er,{revalidateOnFocus:!1}),n=(0,o.GW)(),{userConfig:c}=(0,o.h2)(!0),[d,u]=(0,i.useState)(!1),h=(0,Z.IC)(),[m,x]=(0,i.useState)([]),[f,p]=(0,i.useState)([]),[g,j]=(0,i.useState)(null),{data:v,error:b}=(0,r.ZP)("/api/content/computer",ei),{data:N,error:w}=(0,r.ZP)("/api/agents/options",ei),[y,_]=(0,i.useState)(!1);if((0,i.useEffect)(()=>{y&&(s(),_(!1))},[y]),(0,i.useEffect)(()=>{if(e){x(e.filter(e=>e.creator===(null==n?void 0:n.username))),p(e.filter(e=>"private"!==e.privacy_level&&e.creator!==(null==n?void 0:n.username)));{let t=new URLSearchParams(window.location.search).get("agent");t&&(j(t),e.find(e=>e.slug===t)||fetch("/api/agents/".concat(t)).then(e=>{if(404===e.status)throw Error("Agent not found");return e.json()}).then(e=>{"protected"===e.privacy_level&&p(t=>[...t,e])}))}}},[e]),t)return(0,a.jsxs)("main",{className:l().main,children:[(0,a.jsx)("div",{className:"".concat(l().titleBar," text-5xl"),children:"Agents"}),(0,a.jsx)("div",{className:l().agentList,children:"Error loading agents"})]});if(!e)return(0,a.jsx)("main",{className:l().main,children:(0,a.jsxs)("div",{className:l().agentList,children:[(0,a.jsx)(V.l,{})," booting up your agents"]})});let C=(null==c?void 0:c.chat_model_options)||[],k=(null==c?void 0:c.selected_chat_model_config)||0,z=(null==c?void 0:c.subscription_state)&&(null==c?void 0:c.subscription_state)in[o.o9.SUBSCRIBED,o.o9.TRIAL]||!1,S=C.find(e=>e.id===k);return(0,a.jsx)("main",{className:"w-full mx-auto",children:(0,a.jsxs)("div",{className:"grid w-full mx-auto",children:[(0,a.jsx)("div",{className:"".concat(l().sidePanel," top-0"),children:(0,a.jsx)(M.ZP,{conversationId:null,uploadedFiles:[],isMobileWidth:h})}),(0,a.jsxs)("div",{className:"".concat(l().pageLayout," w-full"),children:[(0,a.jsxs)("div",{className:"pt-6 md:pt-8 flex justify-between",children:[(0,a.jsx)("h1",{className:"text-3xl flex items-center",children:"Agents"}),(0,a.jsx)("div",{className:"ml-auto float-right border p-2 pt-3 rounded-xl font-bold hover:bg-stone-100 dark:hover:bg-neutral-900",children:(0,a.jsx)(eu,{data:{slug:"",name:"",persona:"",color:"",icon:"",privacy_level:"private",managed_by_admin:!1,chat_model:"",input_tools:[],output_modes:[]},userProfile:n,isMobileWidth:h,filesOptions:v||[],modelOptions:(null==c?void 0:c.chat_model_options)||[],selectedChatModelOption:(null==S?void 0:S.name)||"",isSubscribed:z,setAgentChangeTriggered:_,inputToolOptions:(null==N?void 0:N.input_tools)||{},outputModeOptions:(null==N?void 0:N.output_modes)||{}})})]}),d&&(0,a.jsx)(P.Z,{loginRedirectMessage:"Sign in to start chatting with a specialized agent",onOpenChange:u}),(0,a.jsx)(E.bZ,{className:"bg-secondary border-none my-4",children:(0,a.jsxs)(E.X,{children:[(0,a.jsx)(O.B,{weight:"fill",className:"h-4 w-4 text-purple-400 inline"}),(0,a.jsx)("span",{className:"font-bold",children:"How it works"})," Use any of these specialized personas to tune your conversation to your needs."]})}),(0,a.jsx)("div",{className:"pt-6 md:pt-8",children:(0,a.jsx)("div",{className:"".concat(l().agentList),children:m.map(e=>(0,a.jsx)(eo,{data:e,userProfile:n,isMobileWidth:h,filesOptions:null!=v?v:[],selectedChatModelOption:(null==S?void 0:S.name)||"",isSubscribed:z,setAgentChangeTriggered:_,modelOptions:(null==c?void 0:c.chat_model_options)||[],editCard:!0,agentSlug:g||"",inputToolOptions:(null==N?void 0:N.input_tools)||{},outputModeOptions:(null==N?void 0:N.output_modes)||{}},e.slug))})}),(0,a.jsxs)("div",{className:"pt-6 md:pt-8",children:[(0,a.jsx)("h2",{className:"text-2xl",children:"Explore"}),(0,a.jsx)("div",{className:"".concat(l().agentList),children:f.map(e=>(0,a.jsx)(eo,{data:e,userProfile:n,isMobileWidth:h,editCard:!1,filesOptions:null!=v?v:[],selectedChatModelOption:(null==S?void 0:S.name)||"",isSubscribed:z,setAgentChangeTriggered:_,modelOptions:(null==c?void 0:c.chat_model_options)||[],agentSlug:g||"",inputToolOptions:(null==N?void 0:N.input_tools)||{},outputModeOptions:(null==N?void 0:N.output_modes)||{}},e.slug))})]})]})]})})}},66820:function(e,t,s){"use strict";s.d(t,{Z:function(){return r}});var a=s(57437),n=s(6780),l=s(87138);function r(e){return(0,a.jsx)(n.aR,{open:!0,onOpenChange:e.onOpenChange,children:(0,a.jsxs)(n._T,{children:[(0,a.jsx)(n.fY,{children:(0,a.jsx)(n.f$,{children:"Sign in to Khoj to continue"})}),(0,a.jsxs)(n.yT,{children:[e.loginRedirectMessage,". By logging in, you agree to our"," ",(0,a.jsx)(l.default,{href:"https://khoj.dev/terms-of-service",children:"Terms of Service."})]}),(0,a.jsxs)(n.xo,{children:[(0,a.jsx)(n.le,{children:"Dismiss"}),(0,a.jsx)(n.OL,{className:"bg-slate-400 hover:bg-slate-500",onClick:()=>{window.location.href="/login?next=".concat(encodeURIComponent(window.location.pathname))},children:(0,a.jsxs)(l.default,{href:"/login?next=".concat(encodeURIComponent(window.location.pathname)),children:[" ","Login"]})})]})]})})}},18642:function(e,t,s){"use strict";s.d(t,{Z:function(){return c}});var a=s(57437),n=s(90837),l=s(50495),r=s(83102),i=s(67135),o=s(34797);function c(e){var t;return(0,a.jsxs)(n.Vq,{children:[(0,a.jsx)(n.hg,{asChild:!0,onClick:e.onShare,children:(0,a.jsxs)(l.z,{size:"sm",className:"".concat(e.buttonClassName||"px-3"),variant:null!==(t=e.buttonVariant)&&void 0!==t?t:"default",children:[e.includeIcon&&(0,a.jsx)(o.m,{className:"w-4 h-4 mr-2"}),e.buttonTitle]})}),(0,a.jsxs)(n.cZ,{children:[(0,a.jsxs)(n.fK,{children:[(0,a.jsx)(n.$N,{children:e.title}),(0,a.jsx)(n.Be,{children:e.description})]}),(0,a.jsxs)("div",{className:"flex items-center space-x-2",children:[(0,a.jsxs)("div",{className:"grid flex-1 gap-2",children:[(0,a.jsx)(i._,{htmlFor:"link",className:"sr-only",children:"Link"}),(0,a.jsx)(r.I,{id:"link",defaultValue:e.url,readOnly:!0})]}),(0,a.jsx)(l.z,{type:"submit",size:"sm",className:"px-3",onClick:()=>(function(e){let t=navigator.clipboard;t&&t.writeText(e)})(e.url),children:(0,a.jsx)("span",{children:"Copy"})})]})]})]})}},47412:function(e,t,s){"use strict";s.d(t,{X:function(){return c},bZ:function(){return o}});var a=s(57437),n=s(2265),l=s(12218),r=s(37440);let i=(0,l.j)("relative w-full rounded-lg border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground",{variants:{variant:{default:"bg-background text-foreground",destructive:"border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive"}},defaultVariants:{variant:"default"}}),o=n.forwardRef((e,t)=>{let{className:s,variant:n,...l}=e;return(0,a.jsx)("div",{ref:t,role:"alert",className:(0,r.cn)(i({variant:n}),s),...l})});o.displayName="Alert",n.forwardRef((e,t)=>{let{className:s,...n}=e;return(0,a.jsx)("h5",{ref:t,className:(0,r.cn)("mb-1 font-medium leading-none tracking-tight",s),...n})}).displayName="AlertTitle";let c=n.forwardRef((e,t)=>{let{className:s,...n}=e;return(0,a.jsx)("div",{ref:t,className:(0,r.cn)("text-sm [&_p]:leading-relaxed",s),...n})});c.displayName="AlertDescription"},32653:function(e,t,s){"use strict";s.d(t,{NI:function(){return p},Wi:function(){return u},l0:function(){return c},lX:function(){return f},pf:function(){return g},xJ:function(){return x},zG:function(){return j}});var a=s(57437),n=s(2265),l=s(71538),r=s(39343),i=s(37440),o=s(67135);let c=r.RV,d=n.createContext({}),u=e=>{let{...t}=e;return(0,a.jsx)(d.Provider,{value:{name:t.name},children:(0,a.jsx)(r.Qr,{...t})})},h=()=>{let e=n.useContext(d),t=n.useContext(m),{getFieldState:s,formState:a}=(0,r.Gc)(),l=s(e.name,a);if(!e)throw Error("useFormField should be used within <FormField>");let{id:i}=t;return{id:i,name:e.name,formItemId:"".concat(i,"-form-item"),formDescriptionId:"".concat(i,"-form-item-description"),formMessageId:"".concat(i,"-form-item-message"),...l}},m=n.createContext({}),x=n.forwardRef((e,t)=>{let{className:s,...l}=e,r=n.useId();return(0,a.jsx)(m.Provider,{value:{id:r},children:(0,a.jsx)("div",{ref:t,className:(0,i.cn)("space-y-2",s),...l})})});x.displayName="FormItem";let f=n.forwardRef((e,t)=>{let{className:s,...n}=e,{error:l,formItemId:r}=h();return(0,a.jsx)(o._,{ref:t,className:(0,i.cn)(l&&"text-destructive",s),htmlFor:r,...n})});f.displayName="FormLabel";let p=n.forwardRef((e,t)=>{let{...s}=e,{error:n,formItemId:r,formDescriptionId:i,formMessageId:o}=h();return(0,a.jsx)(l.g7,{ref:t,id:r,"aria-describedby":n?"".concat(i," ").concat(o):"".concat(i),"aria-invalid":!!n,...s})});p.displayName="FormControl";let g=n.forwardRef((e,t)=>{let{className:s,...n}=e,{formDescriptionId:l}=h();return(0,a.jsx)("p",{ref:t,id:l,className:(0,i.cn)("text-sm text-muted-foreground",s),...n})});g.displayName="FormDescription";let j=n.forwardRef((e,t)=>{let{className:s,children:n,...l}=e,{error:r,formMessageId:o}=h(),c=r?String(null==r?void 0:r.message):n;return c?(0,a.jsx)("p",{ref:t,id:o,className:(0,i.cn)("text-sm font-medium text-destructive",s),...l,children:c}):null});j.displayName="FormMessage"},67135:function(e,t,s){"use strict";s.d(t,{_:function(){return c}});var a=s(57437),n=s(2265),l=s(38364),r=s(12218),i=s(37440);let o=(0,r.j)("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"),c=n.forwardRef((e,t)=>{let{className:s,...n}=e;return(0,a.jsx)(l.f,{ref:t,className:(0,i.cn)(o(),s),...n})});c.displayName=l.f.displayName},70571:function(e,t,s){"use strict";s.d(t,{E:function(){return i}});var a=s(57437),n=s(2265),l=s(52431),r=s(37440);let i=n.forwardRef((e,t)=>{let{className:s,value:n,indicatorColor:i,...o}=e;return(0,a.jsx)(l.fC,{ref:t,className:(0,r.cn)("relative h-4 w-full overflow-hidden rounded-full bg-secondary",s),...o,children:(0,a.jsx)(l.z$,{className:"h-full w-full flex-1 bg-primary transition-all ".concat(i),style:{transform:"translateX(-".concat(100-(n||0),"%)")}})})});i.displayName=l.fC.displayName},46294:function(e,t,s){"use strict";s.d(t,{Bw:function(){return f},Ph:function(){return d},Ql:function(){return p},i4:function(){return h},ki:function(){return u}});var a=s(57437),n=s(2265),l=s(77539),r=s(42421),i=s(14392),o=s(22468),c=s(37440);let d=l.fC;l.ZA;let u=l.B4,h=n.forwardRef((e,t)=>{let{className:s,children:n,...i}=e;return(0,a.jsxs)(l.xz,{ref:t,className:(0,c.cn)("flex h-10 w-full items-center justify-between rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",s),...i,children:[n,(0,a.jsx)(l.JO,{asChild:!0,children:(0,a.jsx)(r.Z,{className:"h-4 w-4 opacity-50"})})]})});h.displayName=l.xz.displayName;let m=n.forwardRef((e,t)=>{let{className:s,...n}=e;return(0,a.jsx)(l.u_,{ref:t,className:(0,c.cn)("flex cursor-default items-center justify-center py-1",s),...n,children:(0,a.jsx)(i.Z,{className:"h-4 w-4"})})});m.displayName=l.u_.displayName;let x=n.forwardRef((e,t)=>{let{className:s,...n}=e;return(0,a.jsx)(l.$G,{ref:t,className:(0,c.cn)("flex cursor-default items-center justify-center py-1",s),...n,children:(0,a.jsx)(r.Z,{className:"h-4 w-4"})})});x.displayName=l.$G.displayName;let f=n.forwardRef((e,t)=>{let{className:s,children:n,position:r="popper",...i}=e;return(0,a.jsx)(l.h_,{children:(0,a.jsxs)(l.VY,{ref:t,className:(0,c.cn)("relative z-50 max-h-96 min-w-[8rem] overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2","popper"===r&&"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",s),position:r,...i,children:[(0,a.jsx)(m,{}),(0,a.jsx)(l.l_,{className:(0,c.cn)("p-1","popper"===r&&"h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"),children:n}),(0,a.jsx)(x,{})]})})});f.displayName=l.VY.displayName,n.forwardRef((e,t)=>{let{className:s,...n}=e;return(0,a.jsx)(l.__,{ref:t,className:(0,c.cn)("py-1.5 pl-8 pr-2 text-sm font-semibold",s),...n})}).displayName=l.__.displayName;let p=n.forwardRef((e,t)=>{let{className:s,children:n,...r}=e;return(0,a.jsxs)(l.ck,{ref:t,className:(0,c.cn)("relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",s),...r,children:[(0,a.jsx)("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:(0,a.jsx)(l.wU,{children:(0,a.jsx)(o.Z,{className:"h-4 w-4"})})}),(0,a.jsx)(l.eT,{children:n})]})});p.displayName=l.ck.displayName,n.forwardRef((e,t)=>{let{className:s,...n}=e;return(0,a.jsx)(l.Z0,{ref:t,className:(0,c.cn)("-mx-1 my-1 h-px bg-muted",s),...n})}).displayName=l.Z0.displayName},93146:function(e,t,s){"use strict";s.d(t,{g:function(){return r}});var a=s(57437),n=s(2265),l=s(37440);let r=n.forwardRef((e,t)=>{let{className:s,...n}=e;return(0,a.jsx)("textarea",{className:(0,l.cn)("flex min-h-[80px] w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",s),ref:t,...n})});r.displayName="Textarea"},19666:function(e,t,s){"use strict";s.d(t,{_v:function(){return d},aJ:function(){return c},pn:function(){return i},u:function(){return o}});var a=s(57437),n=s(2265),l=s(27071),r=s(37440);let i=l.zt,o=l.fC,c=l.xz,d=n.forwardRef((e,t)=>{let{className:s,sideOffset:n=4,...i}=e;return(0,a.jsx)(l.VY,{ref:t,sideOffset:n,className:(0,r.cn)("z-50 overflow-hidden rounded-md border bg-popover px-3 py-1.5 text-sm text-popover-foreground shadow-md animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",s),...i})});d.displayName=l.VY.displayName},15283:function(e){e.exports={titleBar:"agents_titleBar__FzYbY",agentPersonality:"agents_agentPersonality__o0Ysz",pageLayout:"agents_pageLayout__gR3S3",sidePanel:"agents_sidePanel__wGVGc",infoButton:"agents_infoButton__NqI7E",agentList:"agents_agentList__XVx4A"}}},function(e){e.O(0,[647,9001,3062,4086,3110,51,1269,1603,9417,2971,7023,1744],function(){return e(e.s=1813)}),_N_E=e.O()}]);
|
@@ -1 +0,0 @@
|
|
1
|
-
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}div.automations_sidePanel__MPciO{position:fixed;height:100%;z-index:1}@media screen and (max-width:768px){div.automations_automationsLayout__Atoh_{grid-template-columns:1fr}div.automations_pageLayout__OaoYA{max-width:90vw}div.automations_sidePanel__MPciO{position:relative;height:100%}}
|