khoj 1.21.5.dev1__py3-none-any.whl → 1.21.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- khoj/interface/compiled/404/index.html +1 -1
- khoj/interface/compiled/_next/static/chunks/app/automations/page-3f4b6ff0261e19b7.js +1 -0
- khoj/interface/compiled/_next/static/chunks/{webpack-056f0b344e8ce753.js → webpack-9953d80989df2d20.js} +1 -1
- khoj/interface/compiled/_next/static/css/{df6f4c34ec280d53.css → 01e8624859fbf298.css} +1 -1
- khoj/interface/compiled/agents/index.html +1 -1
- khoj/interface/compiled/agents/index.txt +1 -1
- 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 +1 -1
- khoj/interface/compiled/factchecker/index.html +1 -1
- khoj/interface/compiled/factchecker/index.txt +1 -1
- khoj/interface/compiled/index.html +1 -1
- khoj/interface/compiled/index.txt +1 -1
- khoj/interface/compiled/search/index.html +1 -1
- khoj/interface/compiled/search/index.txt +1 -1
- khoj/interface/compiled/settings/index.html +1 -1
- khoj/interface/compiled/settings/index.txt +1 -1
- khoj/interface/compiled/share/chat/index.html +1 -1
- khoj/interface/compiled/share/chat/index.txt +1 -1
- khoj/interface/email/welcome.html +1 -1
- khoj/processor/conversation/anthropic/utils.py +26 -23
- khoj/processor/conversation/openai/utils.py +32 -29
- {khoj-1.21.5.dev1.dist-info → khoj-1.21.6.dist-info}/METADATA +4 -4
- {khoj-1.21.5.dev1.dist-info → khoj-1.21.6.dist-info}/RECORD +30 -30
- khoj/interface/compiled/_next/static/chunks/app/automations/page-fa3163653d2a72ac.js +0 -1
- /khoj/interface/compiled/_next/static/{-jEZ6iJvz21bM3U5yYumu → HsNbS4vA1tnBQbex60uU7}/_buildManifest.js +0 -0
- /khoj/interface/compiled/_next/static/{-jEZ6iJvz21bM3U5yYumu → HsNbS4vA1tnBQbex60uU7}/_ssgManifest.js +0 -0
- {khoj-1.21.5.dev1.dist-info → khoj-1.21.6.dist-info}/WHEEL +0 -0
- {khoj-1.21.5.dev1.dist-info → khoj-1.21.6.dist-info}/entry_points.txt +0 -0
- {khoj-1.21.5.dev1.dist-info → khoj-1.21.6.dist-info}/licenses/LICENSE +0 -0
|
@@ -89,26 +89,29 @@ def anthropic_chat_completion_with_backoff(
|
|
|
89
89
|
def anthropic_llm_thread(
|
|
90
90
|
g, messages, system_prompt, model_name, temperature, api_key, max_prompt_size=None, model_kwargs=None
|
|
91
91
|
):
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
anthropic.types.MessageParam
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
messages
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
92
|
+
try:
|
|
93
|
+
if api_key not in anthropic_clients:
|
|
94
|
+
client: anthropic.Anthropic = anthropic.Anthropic(api_key=api_key)
|
|
95
|
+
anthropic_clients[api_key] = client
|
|
96
|
+
else:
|
|
97
|
+
client: anthropic.Anthropic = anthropic_clients[api_key]
|
|
98
|
+
|
|
99
|
+
formatted_messages: List[anthropic.types.MessageParam] = [
|
|
100
|
+
anthropic.types.MessageParam(role=message.role, content=message.content) for message in messages
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
with client.messages.stream(
|
|
104
|
+
messages=formatted_messages,
|
|
105
|
+
model=model_name, # type: ignore
|
|
106
|
+
temperature=temperature,
|
|
107
|
+
system=system_prompt,
|
|
108
|
+
timeout=20,
|
|
109
|
+
max_tokens=DEFAULT_MAX_TOKENS_ANTHROPIC,
|
|
110
|
+
**(model_kwargs or dict()),
|
|
111
|
+
) as stream:
|
|
112
|
+
for text in stream.text_stream:
|
|
113
|
+
g.send(text)
|
|
114
|
+
except Exception as e:
|
|
115
|
+
logger.error(f"Error in anthropic_llm_thread: {e}", exc_info=True)
|
|
116
|
+
finally:
|
|
117
|
+
g.close()
|
|
@@ -100,34 +100,37 @@ def chat_completion_with_backoff(
|
|
|
100
100
|
|
|
101
101
|
|
|
102
102
|
def llm_thread(g, messages, model_name, temperature, openai_api_key=None, api_base_url=None, model_kwargs=None):
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
103
|
+
try:
|
|
104
|
+
client_key = f"{openai_api_key}--{api_base_url}"
|
|
105
|
+
if client_key not in openai_clients:
|
|
106
|
+
client: openai.OpenAI = openai.OpenAI(
|
|
107
|
+
api_key=openai_api_key,
|
|
108
|
+
base_url=api_base_url,
|
|
109
|
+
)
|
|
110
|
+
openai_clients[client_key] = client
|
|
111
|
+
else:
|
|
112
|
+
client: openai.OpenAI = openai_clients[client_key]
|
|
113
|
+
|
|
114
|
+
formatted_messages = [{"role": message.role, "content": message.content} for message in messages]
|
|
115
|
+
|
|
116
|
+
chat = client.chat.completions.create(
|
|
117
|
+
stream=True,
|
|
118
|
+
messages=formatted_messages,
|
|
119
|
+
model=model_name, # type: ignore
|
|
120
|
+
temperature=temperature,
|
|
121
|
+
timeout=20,
|
|
122
|
+
**(model_kwargs or dict()),
|
|
108
123
|
)
|
|
109
|
-
openai_clients[client_key] = client
|
|
110
|
-
else:
|
|
111
|
-
client: openai.OpenAI = openai_clients[client_key]
|
|
112
|
-
|
|
113
|
-
formatted_messages = [{"role": message.role, "content": message.content} for message in messages]
|
|
114
|
-
|
|
115
|
-
chat = client.chat.completions.create(
|
|
116
|
-
stream=True,
|
|
117
|
-
messages=formatted_messages,
|
|
118
|
-
model=model_name, # type: ignore
|
|
119
|
-
temperature=temperature,
|
|
120
|
-
timeout=20,
|
|
121
|
-
**(model_kwargs or dict()),
|
|
122
|
-
)
|
|
123
|
-
|
|
124
|
-
for chunk in chat:
|
|
125
|
-
if len(chunk.choices) == 0:
|
|
126
|
-
continue
|
|
127
|
-
delta_chunk = chunk.choices[0].delta
|
|
128
|
-
if isinstance(delta_chunk, str):
|
|
129
|
-
g.send(delta_chunk)
|
|
130
|
-
elif delta_chunk.content:
|
|
131
|
-
g.send(delta_chunk.content)
|
|
132
124
|
|
|
133
|
-
|
|
125
|
+
for chunk in chat:
|
|
126
|
+
if len(chunk.choices) == 0:
|
|
127
|
+
continue
|
|
128
|
+
delta_chunk = chunk.choices[0].delta
|
|
129
|
+
if isinstance(delta_chunk, str):
|
|
130
|
+
g.send(delta_chunk)
|
|
131
|
+
elif delta_chunk.content:
|
|
132
|
+
g.send(delta_chunk.content)
|
|
133
|
+
except Exception as e:
|
|
134
|
+
logger.error(f"Error in llm_thread: {e}", exc_info=True)
|
|
135
|
+
finally:
|
|
136
|
+
g.close()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: khoj
|
|
3
|
-
Version: 1.21.
|
|
3
|
+
Version: 1.21.6
|
|
4
4
|
Summary: Your Second Brain
|
|
5
5
|
Project-URL: Homepage, https://khoj.dev
|
|
6
6
|
Project-URL: Documentation, https://docs.khoj.dev
|
|
@@ -32,10 +32,10 @@ Requires-Dist: dateparser>=1.1.1
|
|
|
32
32
|
Requires-Dist: defusedxml==0.7.1
|
|
33
33
|
Requires-Dist: django-apscheduler==0.6.2
|
|
34
34
|
Requires-Dist: django-phonenumber-field==7.3.0
|
|
35
|
-
Requires-Dist: django==5.0.
|
|
35
|
+
Requires-Dist: django==5.0.8
|
|
36
36
|
Requires-Dist: docx2txt==0.8
|
|
37
37
|
Requires-Dist: einops==0.8.0
|
|
38
|
-
Requires-Dist: fastapi>=0.
|
|
38
|
+
Requires-Dist: fastapi>=0.110.0
|
|
39
39
|
Requires-Dist: httpx==0.25.0
|
|
40
40
|
Requires-Dist: huggingface-hub>=0.22.2
|
|
41
41
|
Requires-Dist: itsdangerous==2.1.2
|
|
@@ -71,7 +71,7 @@ Requires-Dist: tiktoken>=0.3.2
|
|
|
71
71
|
Requires-Dist: torch==2.2.2
|
|
72
72
|
Requires-Dist: transformers>=4.28.0
|
|
73
73
|
Requires-Dist: tzdata==2023.3
|
|
74
|
-
Requires-Dist: uvicorn==0.
|
|
74
|
+
Requires-Dist: uvicorn==0.30.6
|
|
75
75
|
Requires-Dist: websockets==12.0
|
|
76
76
|
Provides-Extra: dev
|
|
77
77
|
Requires-Dist: black>=23.1.0; extra == 'dev'
|
|
@@ -92,17 +92,17 @@ khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvt
|
|
|
92
92
|
khoj/interface/compiled/close.svg,sha256=hQ2iFLkNzHk0_iyTrSbwnWAeXYlgA-c2Eof2Iqh76n4,417
|
|
93
93
|
khoj/interface/compiled/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
|
|
94
94
|
khoj/interface/compiled/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
|
|
95
|
-
khoj/interface/compiled/index.html,sha256=
|
|
96
|
-
khoj/interface/compiled/index.txt,sha256=
|
|
95
|
+
khoj/interface/compiled/index.html,sha256=4Nc3h2g34zL6eo1NfYvDMbJqdCz8vQHvpCIrzc5xK7A,11912
|
|
96
|
+
khoj/interface/compiled/index.txt,sha256=V6SO4dEbPKb8s8069X7mPd50TlXFUH0nEokUi2KHKoA,5515
|
|
97
97
|
khoj/interface/compiled/khoj.webmanifest,sha256=lsknYkvEdMbRTOUYKXPM_8krN2gamJmM4u3qj8u9lrU,1682
|
|
98
98
|
khoj/interface/compiled/logo.svg,sha256=_QCKVYM4WT2Qhcf7aVFImjq_s5CwjynGXYAOgI7yf8w,8059
|
|
99
99
|
khoj/interface/compiled/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
|
|
100
100
|
khoj/interface/compiled/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
|
|
101
101
|
khoj/interface/compiled/thumbs-down.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
|
|
102
102
|
khoj/interface/compiled/thumbs-up.svg,sha256=yS1wxTRtiztkN-6nZciLoYQUB_KTYNPV8xFRwH2TQFw,1036
|
|
103
|
-
khoj/interface/compiled/404/index.html,sha256=
|
|
104
|
-
khoj/interface/compiled/_next/static
|
|
105
|
-
khoj/interface/compiled/_next/static
|
|
103
|
+
khoj/interface/compiled/404/index.html,sha256=Zid32QfEvHP4_stBCVpldkMGoRVHy8Lz9sqD3hB4_e0,11947
|
|
104
|
+
khoj/interface/compiled/_next/static/HsNbS4vA1tnBQbex60uU7/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
|
|
105
|
+
khoj/interface/compiled/_next/static/HsNbS4vA1tnBQbex60uU7/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
106
106
|
khoj/interface/compiled/_next/static/chunks/1603-fb2d80ae73990df3.js,sha256=CCbOXifiixbhMf7lgTG96225tP1Pou72Wb0Zh6KC1Rs,71007
|
|
107
107
|
khoj/interface/compiled/_next/static/chunks/2614-7cf01576d4457a75.js,sha256=aUjhjyxNPrZr4bLKzGkGgHH8K4J6g9dfiRjabnmvSDc,1104737
|
|
108
108
|
khoj/interface/compiled/_next/static/chunks/3062-a42d847c919a9ea4.js,sha256=9UDsx_sY4b4x6jjR_A0AymC9rjBCoCcEpGR4U-0Ej3g,256170
|
|
@@ -125,14 +125,14 @@ khoj/interface/compiled/_next/static/chunks/framework-8e0e0f4a6b83a956.js,sha256
|
|
|
125
125
|
khoj/interface/compiled/_next/static/chunks/main-175c164f5e0f026c.js,sha256=hlUnjERudON4V4kUKprrFz1e9JRtSp4A9i7vnM-1bzA,110324
|
|
126
126
|
khoj/interface/compiled/_next/static/chunks/main-app-6d6ee3495efe03d4.js,sha256=i52E7sWOcSq1G8eYZL3mtTxbUbwRNxcAbSWQ6uWpMsY,475
|
|
127
127
|
khoj/interface/compiled/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
|
128
|
-
khoj/interface/compiled/_next/static/chunks/webpack-
|
|
128
|
+
khoj/interface/compiled/_next/static/chunks/webpack-9953d80989df2d20.js,sha256=q5HW1s5tBDHSX4l8Q_2R6b49Mil2ThSfK48iYKZ2ghI,3721
|
|
129
129
|
khoj/interface/compiled/_next/static/chunks/app/layout-f3e40d346da53112.js,sha256=nekGSUVbvB81OfqGgJa2UoDmbxPhNwFwtc4o11O_1jI,442
|
|
130
130
|
khoj/interface/compiled/_next/static/chunks/app/page-851860583273ab5d.js,sha256=Ocjky2Cm-ctmhs1r4oSRBYyMfkotM0ErcWVTVCGei6Y,28601
|
|
131
131
|
khoj/interface/compiled/_next/static/chunks/app/_not-found/page-07ff4ab42b07845e.js,sha256=3mCUnxfMxyK44eqk21TVBrC6u--WSbvx31fTmQuOvMQ,1755
|
|
132
132
|
khoj/interface/compiled/_next/static/chunks/app/agents/layout-e71c8e913cccf792.js,sha256=VyIMrkvntFObMzXF-elNtngJ8mBdjg8XrOGfboJ2f_4,372
|
|
133
133
|
khoj/interface/compiled/_next/static/chunks/app/agents/page-989a824c640bc532.js,sha256=3jU-Yi9AqZMAvWyGhiVjy9SofvHSUHSUV65CbBpu3Rc,18086
|
|
134
134
|
khoj/interface/compiled/_next/static/chunks/app/automations/layout-27c28e923c9b1ff0.js,sha256=d2vJ_lVB0pfeFXNUPzHAe1ca5NzdNowHPh___SPqugM,5143
|
|
135
|
-
khoj/interface/compiled/_next/static/chunks/app/automations/page-
|
|
135
|
+
khoj/interface/compiled/_next/static/chunks/app/automations/page-3f4b6ff0261e19b7.js,sha256=jSgotVXzqJBJ_5X6OIXES8XBLtYmcdC4B9kQoPtQ8tQ,34471
|
|
136
136
|
khoj/interface/compiled/_next/static/chunks/app/chat/layout-8102549127db3067.js,sha256=YIoA3fqOBt8nKWw5iQAwA_avg2t1Q5Afn65IA5PBOz4,374
|
|
137
137
|
khoj/interface/compiled/_next/static/chunks/app/chat/page-8c9b92236d4daf4b.js,sha256=UVAJVtwJgWWakr7uIeSm45qPUEzznZPpHSKpocZ0-E4,10334
|
|
138
138
|
khoj/interface/compiled/_next/static/chunks/app/factchecker/layout-7b30c541c05fb904.js,sha256=yub2AuBKHKSCqrHRFnkZv9JXLmLJLOB99iiaD3DtZQM,170
|
|
@@ -145,6 +145,7 @@ khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-39f03f9e32399f
|
|
|
145
145
|
khoj/interface/compiled/_next/static/chunks/app/share/chat/page-699b364dc6fbf139.js,sha256=O6iOKdiyqchmlABUse3WokkisoHsn8ZRWMFZ_nqNXP0,10146
|
|
146
146
|
khoj/interface/compiled/_next/static/chunks/pages/_app-f870474a17b7f2fd.js,sha256=eqdFPAN_XFyMUzZ9qwFk-_rhMWZrU7lgNVt1foVUANo,286
|
|
147
147
|
khoj/interface/compiled/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
|
|
148
|
+
khoj/interface/compiled/_next/static/css/01e8624859fbf298.css,sha256=XpkJf-7D3ZuU05036yIBlRx8gu_nMqNDOkG9nsak6JY,7751
|
|
148
149
|
khoj/interface/compiled/_next/static/css/1538cedb321e3a97.css,sha256=-qLZhPN-wA3kcrVODVTaG1sN0pmuzRCqNH12gs5_qYc,2569
|
|
149
150
|
khoj/interface/compiled/_next/static/css/2272c73fc7a3b571.css,sha256=1fHKFd8zLOHosAHx-kxv4b9lVSqHag_E71WkV3dXx2Y,26940
|
|
150
151
|
khoj/interface/compiled/_next/static/css/4cae6c0e5c72fb2d.css,sha256=3CjTMmtMrm_MYt1ywtUh2MHEjSLSl356SQLl4hdBuYw,534
|
|
@@ -153,7 +154,6 @@ khoj/interface/compiled/_next/static/css/9d5b867ec04494a6.css,sha256=X2BihvGWIRM
|
|
|
153
154
|
khoj/interface/compiled/_next/static/css/a22d83f18a32957e.css,sha256=kgAD2DQYH2WF2wqL759i62nR093yU_UfFClMKkAue6U,17709
|
|
154
155
|
khoj/interface/compiled/_next/static/css/a3530ec58b0b660f.css,sha256=2fpX695nzJ6sNaNZbX_3Z0o-IA5kRlyN0ByIIXRgmtg,1570
|
|
155
156
|
khoj/interface/compiled/_next/static/css/b81e909d403fb2df.css,sha256=bbu108v2_T74MIyokVmUz0A_oFCIHJpzHdYExXFYgjs,1913
|
|
156
|
-
khoj/interface/compiled/_next/static/css/df6f4c34ec280d53.css,sha256=lAIK7HFwb0PaJpMfHmkUSValOSSCdbW-c_L7Lgn_ki8,7751
|
|
157
157
|
khoj/interface/compiled/_next/static/media/0e790e04fd40ad16-s.p.woff2,sha256=41ewITd0G1ZAoB62BTHMW58a1q8Hl6vSbTQkkHP7EbI,39372
|
|
158
158
|
khoj/interface/compiled/_next/static/media/4221e1667cd19c7d-s.woff2,sha256=_Y3g0keA8P6nZnFfm_VO5o2Sne1iST3v9xz4fBo3fwM,75532
|
|
159
159
|
khoj/interface/compiled/_next/static/media/6c276159aa0eb14b-s.woff2,sha256=i9Ibzi_O7y5KpImujj2rEdOZf96lpNYxYzVvCryW5Uc,140408
|
|
@@ -226,8 +226,8 @@ khoj/interface/compiled/_next/static/media/flags.3afdda2f.webp,sha256=M2AW_HLpBn
|
|
|
226
226
|
khoj/interface/compiled/_next/static/media/flags@2x.5fbe9fc1.webp,sha256=BBeRPBZkxY3-aKkMnYv5TSkxmbeMbyUH4VRIPfrWg1E,137406
|
|
227
227
|
khoj/interface/compiled/_next/static/media/globe.98e105ca.webp,sha256=g3ofb8-W9GM75zIhlvQhaS8I2py9TtrovOKR3_7Jf04,514
|
|
228
228
|
khoj/interface/compiled/_next/static/media/globe@2x.974df6f8.webp,sha256=I_N7Yke3IOoS-0CC6XD8o0IUWG8PdPbrHmf6lpgWlZY,1380
|
|
229
|
-
khoj/interface/compiled/agents/index.html,sha256
|
|
230
|
-
khoj/interface/compiled/agents/index.txt,sha256=
|
|
229
|
+
khoj/interface/compiled/agents/index.html,sha256=-r3GAGWWOsA7eBKmHwS_1_ZzMMEN6k_fyrBMT6l_t44,12391
|
|
230
|
+
khoj/interface/compiled/agents/index.txt,sha256=sERCevdFTJfiPa2zjFl8aSXykdJkUdEVc2D-5UBRmUk,5942
|
|
231
231
|
khoj/interface/compiled/assets/icons/khoj_lantern.ico,sha256=eggu-B_v3z1R53EjOFhIqqPnICBGdoaw1xnc0NrzHck,174144
|
|
232
232
|
khoj/interface/compiled/assets/icons/khoj_lantern_128x128.png,sha256=aTxivDb3CYyThkVZWz8A19xl_dNut5DbkXhODWF3A9Q,5640
|
|
233
233
|
khoj/interface/compiled/assets/icons/khoj_lantern_256x256.png,sha256=xPCMLHiaL7lYOdQLZrKwWE-Qjn5ZaysSZB0ScYv4UZU,12312
|
|
@@ -238,22 +238,22 @@ khoj/interface/compiled/assets/samples/desktop-remember-plan-sample.png,sha256=i
|
|
|
238
238
|
khoj/interface/compiled/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
|
|
239
239
|
khoj/interface/compiled/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
|
|
240
240
|
khoj/interface/compiled/assets/samples/phone-remember-plan-sample.png,sha256=Ma3blirRmq3X4oYSsDbbT7MDn29rymDrjwmUfA9BMuM,236285
|
|
241
|
-
khoj/interface/compiled/automations/index.html,sha256=
|
|
242
|
-
khoj/interface/compiled/automations/index.txt,sha256=
|
|
243
|
-
khoj/interface/compiled/chat/index.html,sha256=
|
|
244
|
-
khoj/interface/compiled/chat/index.txt,sha256=
|
|
245
|
-
khoj/interface/compiled/factchecker/index.html,sha256=
|
|
246
|
-
khoj/interface/compiled/factchecker/index.txt,sha256=
|
|
247
|
-
khoj/interface/compiled/search/index.html,sha256=
|
|
248
|
-
khoj/interface/compiled/search/index.txt,sha256=
|
|
249
|
-
khoj/interface/compiled/settings/index.html,sha256=
|
|
250
|
-
khoj/interface/compiled/settings/index.txt,sha256=
|
|
251
|
-
khoj/interface/compiled/share/chat/index.html,sha256=
|
|
252
|
-
khoj/interface/compiled/share/chat/index.txt,sha256=
|
|
241
|
+
khoj/interface/compiled/automations/index.html,sha256=uTxeT9fTxpsL9qHi9fXq9GVVJcLlVpGvSkwsb780KN4,30808
|
|
242
|
+
khoj/interface/compiled/automations/index.txt,sha256=MuMSg-GFBUfNZriOn0olK6aoCUVLk9ry7tgZ4txqjsk,5580
|
|
243
|
+
khoj/interface/compiled/chat/index.html,sha256=DVACX8GNIjH9dKbI4bkjG_M9HVtkIhSvbXgo5SQIRGA,13566
|
|
244
|
+
khoj/interface/compiled/chat/index.txt,sha256=Ss0WySDVzr5Uo3pXy_gvGXU7tEQ-SzX9APjrpz44WoM,6421
|
|
245
|
+
khoj/interface/compiled/factchecker/index.html,sha256=Rq9IeCKUhNFu8cJCKTiQOVAuCA3pvL6xyx8ZeQM1xhA,29839
|
|
246
|
+
khoj/interface/compiled/factchecker/index.txt,sha256=_2Pk-6BZpRM-ojRLMw8EyCGl6lToE6oP4GapqyHhi_U,5735
|
|
247
|
+
khoj/interface/compiled/search/index.html,sha256=UZ-aijjGDSiJamLmYsyDb8Hxqchc6wJEw2Ev2lrjXaQ,30154
|
|
248
|
+
khoj/interface/compiled/search/index.txt,sha256=nza8SMNZi9Jldyxf8NZHmGGFf0n_eiCheyDRKjNnkBc,5249
|
|
249
|
+
khoj/interface/compiled/settings/index.html,sha256=6BljQrJL-OHdVkNVWlEqy3xTzPfZ_i1VljykMNb6n14,12827
|
|
250
|
+
khoj/interface/compiled/settings/index.txt,sha256=PTo1pl2GnZHCijKdumNQdhkiICmROwqhi7b4ty_T2Rw,6073
|
|
251
|
+
khoj/interface/compiled/share/chat/index.html,sha256=a8TwXGsREBcnc7LKRZjCxje9nIOhNSUaYsFG22qZ7s8,14896
|
|
252
|
+
khoj/interface/compiled/share/chat/index.txt,sha256=KQuSrV2jmNWepk0LsLWc8VB2YzOg13hXUCrwCEH3oKM,7239
|
|
253
253
|
khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
|
|
254
254
|
khoj/interface/email/magic_link.html,sha256=jXY_2hD3o15Ns5UDzbjLT8FHBnZiS7jo38YkYXIS-4w,947
|
|
255
255
|
khoj/interface/email/task.html,sha256=yXywzC-5P4nXbhqvgCmwcCpTRbD5eWuDXMpgYSotztM,3311
|
|
256
|
-
khoj/interface/email/welcome.html,sha256=
|
|
256
|
+
khoj/interface/email/welcome.html,sha256=ixN8lJrXNR0IEMGoNRxYnITu8gjPclVaMAXbaU43M7E,6600
|
|
257
257
|
khoj/interface/web/base_config.html,sha256=3aRwGF546vUdtCqL4tbWDdvO3ThEzt627vopx_tS4zo,12181
|
|
258
258
|
khoj/interface/web/content_source_github_input.html,sha256=YpsLBpsATW08ttrGysqktx2EczC4nebKlvWpwxtwmFY,8249
|
|
259
259
|
khoj/interface/web/login.html,sha256=4mYRX7521W4J8fFV-Cm_NqojMrpdwKZuzVAjnZRDsl4,6864
|
|
@@ -304,14 +304,14 @@ khoj/processor/conversation/prompts.py,sha256=75XbUfcN0KroSjL4r-LCFVYCbG9k-aM9s4
|
|
|
304
304
|
khoj/processor/conversation/utils.py,sha256=MDp6uVqGmE_iuOEwrbQs33V_ejKOysqokLfB7ZPh1Fg,10666
|
|
305
305
|
khoj/processor/conversation/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
306
|
khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=fOT75wfC4r53M_tGDL6T7kvnRekZbdVM3jvvl3ohH9w,8108
|
|
307
|
-
khoj/processor/conversation/anthropic/utils.py,sha256=
|
|
307
|
+
khoj/processor/conversation/anthropic/utils.py,sha256=GHCz-xll_DBipqSc5e5qdVhLQiKX5Kso3KQRf1BXbVA,3456
|
|
308
308
|
khoj/processor/conversation/offline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
309
309
|
khoj/processor/conversation/offline/chat_model.py,sha256=AHO2ErdByyT3Koc0qNKICsFhu4imr56B2CAOn_2RyVE,9617
|
|
310
310
|
khoj/processor/conversation/offline/utils.py,sha256=51McImxl6u1qgRYvMt7uzsgLGSLq5SMFy74ymlNjIcc,3033
|
|
311
311
|
khoj/processor/conversation/offline/whisper.py,sha256=DJI-8y8DULO2cQ49m2VOvRyIZ2TxBypc15gM8O3HuMI,470
|
|
312
312
|
khoj/processor/conversation/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
313
|
khoj/processor/conversation/openai/gpt.py,sha256=83ofi8v-6C92uD7oV7-aI3DX6BR7DXetZR7dIPlW3vo,7310
|
|
314
|
-
khoj/processor/conversation/openai/utils.py,sha256=
|
|
314
|
+
khoj/processor/conversation/openai/utils.py,sha256=vyFEIfBWMCxx3Nh3lM94SRUR7PLlHJmGTPWrq0YqRgU,4409
|
|
315
315
|
khoj/processor/conversation/openai/whisper.py,sha256=RuwDtxSJrVWYdZz4aVnk0XiMQy9w8W9lFcVfE0hMiFY,432
|
|
316
316
|
khoj/processor/speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
317
|
khoj/processor/speech/text_to_speech.py,sha256=Q7sapi5Hv6woXOumtrGqR0t6izZrFBkWXFOGrHM6dJ4,1929
|
|
@@ -351,8 +351,8 @@ khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
|
|
|
351
351
|
khoj/utils/rawconfig.py,sha256=BKicp6kEBax7h76YRYgyFAUpfWHAI5m9ZJ2HVqyh45Y,3983
|
|
352
352
|
khoj/utils/state.py,sha256=x4GTewP1YhOA6c_32N4wOjnV-3AA3xG_qbY1-wC2Uxc,1559
|
|
353
353
|
khoj/utils/yaml.py,sha256=H0mfw0ZvBFUvFmCQn8pWkfxdmIebsrSykza7D8Wv6wQ,1430
|
|
354
|
-
khoj-1.21.
|
|
355
|
-
khoj-1.21.
|
|
356
|
-
khoj-1.21.
|
|
357
|
-
khoj-1.21.
|
|
358
|
-
khoj-1.21.
|
|
354
|
+
khoj-1.21.6.dist-info/METADATA,sha256=AuEwB6-z5hfF4OAk1o7JGZLjbe9YwqnWhMhkMOU8CNM,6870
|
|
355
|
+
khoj-1.21.6.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
356
|
+
khoj-1.21.6.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
|
357
|
+
khoj-1.21.6.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
358
|
+
khoj-1.21.6.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[4371],{2743:function(e,t,a){Promise.resolve().then(a.bind(a,40393))},40393:function(e,t,a){"use strict";a.r(t),a.d(t,{default:function(){return eP}});var n=a(57437),s=a(29039),r=a(58485),o=a(36013),i=a(50495),l=a(2265),c=a(77539),d=a(42421),u=a(14392),m=a(22468),h=a(37440);let x=c.fC;c.ZA;let f=c.B4,p=l.forwardRef((e,t)=>{let{className:a,children:s,...r}=e;return(0,n.jsxs)(c.xz,{ref:t,className:(0,h.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",a),...r,children:[s,(0,n.jsx)(c.JO,{asChild:!0,children:(0,n.jsx)(d.Z,{className:"h-4 w-4 opacity-50"})})]})});p.displayName=c.xz.displayName;let g=l.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)(c.u_,{ref:t,className:(0,h.cn)("flex cursor-default items-center justify-center py-1",a),...s,children:(0,n.jsx)(u.Z,{className:"h-4 w-4"})})});g.displayName=c.u_.displayName;let j=l.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)(c.$G,{ref:t,className:(0,h.cn)("flex cursor-default items-center justify-center py-1",a),...s,children:(0,n.jsx)(d.Z,{className:"h-4 w-4"})})});j.displayName=c.$G.displayName;let y=l.forwardRef((e,t)=>{let{className:a,children:s,position:r="popper",...o}=e;return(0,n.jsx)(c.h_,{children:(0,n.jsxs)(c.VY,{ref:t,className:(0,h.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",a),position:r,...o,children:[(0,n.jsx)(g,{}),(0,n.jsx)(c.l_,{className:(0,h.cn)("p-1","popper"===r&&"h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"),children:s}),(0,n.jsx)(j,{})]})})});y.displayName=c.VY.displayName,l.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)(c.__,{ref:t,className:(0,h.cn)("py-1.5 pl-8 pr-2 text-sm font-semibold",a),...s})}).displayName=c.__.displayName;let w=l.forwardRef((e,t)=>{let{className:a,children:s,...r}=e;return(0,n.jsxs)(c.ck,{ref:t,className:(0,h.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",a),...r,children:[(0,n.jsx)("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:(0,n.jsx)(c.wU,{children:(0,n.jsx)(m.Z,{className:"h-4 w-4"})})}),(0,n.jsx)(c.eT,{children:s})]})});w.displayName=c.ck.displayName,l.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)(c.Z0,{ref:t,className:(0,h.cn)("-mx-1 my-1 h-px bg-muted",a),...s})}).displayName=c.Z0.displayName;var v=a(18760),b=a.n(v),N=a(31014),C=a(39343),D=a(59772),S=a(71538),k=a(67135);let _=C.RV,A=l.createContext({}),I=e=>{let{...t}=e;return(0,n.jsx)(A.Provider,{value:{name:t.name},children:(0,n.jsx)(C.Qr,{...t})})},R=()=>{let e=l.useContext(A),t=l.useContext(M),{getFieldState:a,formState:n}=(0,C.Gc)(),s=a(e.name,n);if(!e)throw Error("useFormField should be used within <FormField>");let{id:r}=t;return{id:r,name:e.name,formItemId:"".concat(r,"-form-item"),formDescriptionId:"".concat(r,"-form-item-description"),formMessageId:"".concat(r,"-form-item-message"),...s}},M=l.createContext({}),T=l.forwardRef((e,t)=>{let{className:a,...s}=e,r=l.useId();return(0,n.jsx)(M.Provider,{value:{id:r},children:(0,n.jsx)("div",{ref:t,className:(0,h.cn)("space-y-2",a),...s})})});T.displayName="FormItem";let L=l.forwardRef((e,t)=>{let{className:a,...s}=e,{error:r,formItemId:o}=R();return(0,n.jsx)(k._,{ref:t,className:(0,h.cn)(r&&"text-destructive",a),htmlFor:o,...s})});L.displayName="FormLabel";let O=l.forwardRef((e,t)=>{let{...a}=e,{error:s,formItemId:r,formDescriptionId:o,formMessageId:i}=R();return(0,n.jsx)(S.g7,{ref:t,id:r,"aria-describedby":s?"".concat(o," ").concat(i):"".concat(o),"aria-invalid":!!s,...a})});O.displayName="FormControl";let P=l.forwardRef((e,t)=>{let{className:a,...s}=e,{formDescriptionId:r}=R();return(0,n.jsx)("p",{ref:t,id:r,className:(0,h.cn)("text-sm text-muted-foreground",a),...s})});P.displayName="FormDescription";let z=l.forwardRef((e,t)=>{let{className:a,children:s,...r}=e,{error:o,formMessageId:i}=R(),l=o?String(null==o?void 0:o.message):s;return l?(0,n.jsx)("p",{ref:t,id:i,className:(0,h.cn)("text-sm font-medium text-destructive",a),...r,children:l}):null});z.displayName="FormMessage";var q=a(83102),W=a(90837),E=a(13304),U=a(93146),V=a(69591),F=a(23611),Z=a.n(F),B=a(18642),G=a(16463),Y=a(19573),$=a(20319),H=a(22049),K=a(55362),Q=a(13537),X=a(76082),J=a(52674),ee=a(23751),et=a(83522),ea=a(8837),en=a(21819),es=a(35418),er=a(64945),eo=a(79306),ei=a(66820),el=a(35657),ec=a(50151),ed=a(47412),eu=a(48861),em=a(7951);let eh=()=>window.fetch("/api/automations").then(e=>e.json()).catch(e=>console.log(e));function ex(e){let t=e.split(" "),a=t[2],n=t[4];return"*"===a&&"*"===n?"Day":"*"!==n?"Week":"*"!==a?"Month":"Day"}function ef(e){let t=e.split(" ");if("*"===t[3]&&"*"!==t[4])return Number(t[4])}function ep(e){let t=e.split(" "),a=t[1],n=t[0],s=Number(a)>=12?"PM":"AM",r=Number(a)>12?Number(a)-12:a;"00"===r&&(r="12");let o=n;return 10>Number(o)&&"00"!==o&&(o="0".concat(o)),"".concat(r,":").concat(o," ").concat(s)}function eg(e){return String(e.split(" ")[2])}function ej(e){return b().toString(e)}let ey=["Day","Week","Month"],ew=Array.from({length:31},(e,t)=>String(t+1)),ev=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],eb=[],eN=["AM","PM"];for(var eC=0;eC<eN.length;eC++)for(var eD=0;eD<12;eD++)for(var eS=0;eS<60;eS+=15){let e=String(eS).padStart(2,"0"),t=0===eD?12:eD;eb.push("".concat(t,":").concat(e," ").concat(eN[eC]))}let ek=Date.now(),e_=[{subject:"Weekly Newsletter",query_to_run:"Compile a message including: 1. A recap of news from last week 2. An at-home workout I can do before work 3. A quote to inspire me for the week ahead",schedule:"9AM every Monday",next:"Next run at 9AM on Monday",crontime:"0 9 * * 1",id:ek,scheduling_request:""},{subject:"Daily Bedtime Story",query_to_run:"Compose a bedtime story that a five-year-old might enjoy. It should not exceed five paragraphs. Appeal to the imagination, but weave in learnings.",schedule:"9PM every night",next:"Next run at 9PM today",crontime:"0 21 * * *",id:ek+1,scheduling_request:""},{subject:"Front Page of Hacker News",query_to_run:"Summarize the top 5 posts from https://news.ycombinator.com/best and share them with me, including links",schedule:"9PM on every Wednesday",next:"Next run at 9PM on Wednesday",crontime:"0 21 * * 3",id:ek+2,scheduling_request:""},{subject:"Market Summary",query_to_run:"Get the market summary for today and share it with me. Focus on tech stocks and the S&P 500.",schedule:"9AM on every weekday",next:"Next run at 9AM on Monday",crontime:"0 9 * * *",id:ek+3,scheduling_request:""}];function eA(e){let t=encodeURIComponent(e.subject),a=encodeURIComponent(e.query_to_run),n=encodeURIComponent(e.crontime);return"".concat(window.location.origin,"/automations?subject=").concat(t,"&query=").concat(a,"&crontime=").concat(n)}function eI(e){let[t,a]=(0,l.useState)(!1),[s,r]=(0,l.useState)(null),[c,d]=(0,l.useState)(!1),[u,m]=(0,l.useState)(""),{toast:h}=(0,el.pm)(),x=e.automation,[f,p]=(0,l.useState)(""),[g,j]=(0,l.useState)("");return((0,l.useEffect)(()=>{let e=s||x;p(ep(e.crontime));let t=ex(e.crontime);if("Day"===t)j("Daily");else if("Week"===t){let t=ef(e.crontime);void 0===t?j("Weekly"):j("".concat(ev[t]))}else if("Month"===t){let t=eg(e.crontime);j("Monthly on the ".concat(t))}},[s,x]),(0,l.useEffect)(()=>{let e="Automation: ".concat((null==s?void 0:s.subject)||x.subject);u&&(h({title:e,description:u,action:(0,n.jsx)(ec.gD,{altText:"Dismiss",children:"Ok"})}),m(""))},[u,s,x,h]),c)?null:(0,n.jsxs)(o.Zb,{className:"bg-secondary h-full shadow-sm rounded-lg bg-gradient-to-b from-background to-slate-50 dark:to-gray-950 border ".concat(Z().automationCard),children:[(0,n.jsx)(o.Ol,{children:(0,n.jsxs)(o.ll,{className:"line-clamp-2 leading-normal flex justify-between",children:[(null==s?void 0:s.subject)||x.subject,(0,n.jsxs)(Y.J2,{children:[(0,n.jsx)(Y.xo,{asChild:!0,children:(0,n.jsx)(i.z,{className:"bg-background",variant:"ghost",children:(0,n.jsx)($.F,{className:"h-4 w-4"})})}),(0,n.jsxs)(Y.yk,{className:"w-auto grid gap-2 text-left bg-secondary",children:[!e.suggestedCard&&e.locationData&&(0,n.jsx)(eO,{isMobileWidth:e.isMobileWidth,callToAction:"Edit",createNew:!1,setIsCreating:a,setShowLoginPrompt:e.setShowLoginPrompt,setNewAutomationData:r,authenticatedData:e.authenticatedData,isCreating:t,automation:s||x,ipLocationData:e.locationData}),(0,n.jsx)(B.Z,{buttonTitle:"Share",includeIcon:!0,buttonClassName:"justify-start px-4 py-2 h-10",buttonVariant:"outline",title:"Share Automation",description:"Copy the link below and share it with your coworkers or friends.",url:eA(x),onShare:()=>{navigator.clipboard.writeText(eA(x))}}),!e.suggestedCard&&(0,n.jsxs)(i.z,{variant:"outline",className:"justify-start",onClick:()=>{!function(e,t){fetch("/api/trigger/automation?automation_id=".concat(e),{method:"POST"}).then(e=>{if(!e.ok)throw Error("Network response was not ok");return e}).then(e=>{t("Automation triggered. Check your inbox in a few minutes!")}).catch(e=>{t("Sorry, something went wrong. Try again later.")})}(x.id.toString(),m)},children:[(0,n.jsx)(H.s,{className:"h-4 w-4 mr-2"}),"Run Now"]}),(0,n.jsxs)(i.z,{variant:"destructive",className:"justify-start",onClick:()=>{if(e.suggestedCard){d(!0);return}!function(e,t){fetch("/api/automation?automation_id=".concat(e),{method:"DELETE"}).then(e=>e.json()).then(e=>{t(!0)})}(x.id.toString(),d)},children:[(0,n.jsx)(K.r,{className:"h-4 w-4 mr-2"}),"Delete"]})]})]})]})}),(0,n.jsx)(o.aY,{className:"text-secondary-foreground break-all",children:(null==s?void 0:s.query_to_run)||x.query_to_run}),(0,n.jsxs)(o.eW,{className:"flex flex-col items-start md:flex-row md:justify-between md:items-center gap-2",children:[(0,n.jsxs)("div",{className:"flex gap-2",children:[(0,n.jsxs)("div",{className:"flex items-center bg-blue-50 rounded-lg p-1.5 border-blue-200 border dark:bg-blue-800 dark:border-blue-500",children:[(0,n.jsx)(Q.T,{className:"h-4 w-4 mr-2 text-blue-700 dark:text-blue-300"}),(0,n.jsx)("div",{className:"text-s text-blue-700 dark:text-blue-300",children:f})]}),(0,n.jsxs)("div",{className:"flex items-center bg-purple-50 rounded-lg p-1.5 border-purple-200 border dark:bg-purple-800 dark:border-purple-500",children:[(0,n.jsx)(X.u,{className:"h-4 w-4 mr-2 text-purple-700 dark:text-purple-300"}),(0,n.jsx)("div",{className:"text-s text-purple-700 dark:text-purple-300",children:g})]})]}),e.suggestedCard&&e.setNewAutomationData&&(0,n.jsx)(eO,{isMobileWidth:e.isMobileWidth,callToAction:"Add",createNew:!0,setIsCreating:a,setShowLoginPrompt:e.setShowLoginPrompt,setNewAutomationData:e.setNewAutomationData,authenticatedData:e.authenticatedData,isCreating:t,automation:x,ipLocationData:e.locationData})]})]})}function eR(e){let t=(0,G.useSearchParams)(),[a,s]=(0,l.useState)(!0),r=t.get("subject"),o=t.get("query"),i=t.get("crontime");if(!r||!o||!i)return null;let c={id:0,subject:decodeURIComponent(r),query_to_run:decodeURIComponent(o),scheduling_request:"",schedule:ej(decodeURIComponent(i)),crontime:decodeURIComponent(i),next:""};return a?(0,n.jsx)(eO,{isMobileWidth:e.isMobileWidth,callToAction:"Shared",createNew:!0,setIsCreating:s,setShowLoginPrompt:e.setShowLoginPrompt,setNewAutomationData:e.setNewAutomationData,authenticatedData:e.authenticatedData,isCreating:a,automation:c,ipLocationData:e.locationData}):null}let eM=D.z.object({subject:D.z.optional(D.z.string()),everyBlah:D.z.string({required_error:"Every is required"}),dayOfWeek:D.z.optional(D.z.number()),dayOfMonth:D.z.optional(D.z.string()),timeRecurrence:D.z.string({required_error:"Time Recurrence is required"}),queryToRun:D.z.string({required_error:"Query to Run is required"})});function eT(e){let t=e.automation,a=(0,C.cI)({resolver:(0,N.F)(eM),defaultValues:{subject:null==t?void 0:t.subject,everyBlah:(null==t?void 0:t.crontime)?ex(t.crontime):"Day",dayOfWeek:(null==t?void 0:t.crontime)?ef(t.crontime):void 0,timeRecurrence:(null==t?void 0:t.crontime)?ep(t.crontime):"12:00 PM",dayOfMonth:(null==t?void 0:t.crontime)?eg(t.crontime):"1",queryToRun:null==t?void 0:t.query_to_run}});return(0,n.jsx)(eL,{authenticatedData:e.authenticatedData,locationData:e.locationData||null,form:a,onSubmit:a=>{let n=function(e,t,a,n){let s="",r=t.split(":")[1].split(" ")[0],o=t.split(":")[1].split(" ")[1],i=Number(t.split(":")[0]),l="PM"===o&&i<12?String(i+12):i;switch(e){case"Day":s="".concat(r," ").concat(l," * * *");break;case"Week":s="".concat(r," ").concat(l," * * ").concat(void 0!==a?7===a?0:a:"*");break;case"Month":s="".concat(r," ").concat(l," ").concat(n," * *")}return s}(a.everyBlah,a.timeRecurrence,a.dayOfWeek,a.dayOfMonth),s="/api/automation?";s+="q=".concat(encodeURIComponent(a.queryToRun)),(null==t?void 0:t.id)&&!e.createNew&&(s+="&automation_id=".concat(encodeURIComponent(t.id))),a.subject&&(s+="&subject=".concat(encodeURIComponent(a.subject))),s+="&crontime=".concat(encodeURIComponent(n)),e.locationData&&(s+="&city=".concat(encodeURIComponent(e.locationData.city))+"®ion=".concat(encodeURIComponent(e.locationData.region))+"&country=".concat(encodeURIComponent(e.locationData.country))+"&timezone=".concat(encodeURIComponent(e.locationData.timezone))),fetch(s,{method:e.createNew?"POST":"PUT"}).then(e=>e.json()).then(t=>{e.setIsEditing(!1),e.setUpdatedAutomationData({id:t.id,subject:t.subject||"",query_to_run:t.query_to_run,scheduling_request:t.scheduling_request,schedule:ej(t.crontime),crontime:t.crontime,next:t.next})})},create:e.createNew,isLoggedIn:e.isLoggedIn,setShowLoginPrompt:e.setShowLoginPrompt})}function eL(e){var t,a;let[s,r]=(0,l.useState)(!1),{errors:o}=e.form.formState,c=["Make a picture of","Generate a summary of","Create a newsletter of","Notify me when"];return(0,n.jsx)(_,{...e.form,children:(0,n.jsxs)("form",{onSubmit:e.form.handleSubmit(t=>{e.onSubmit(t),r(!0)}),className:"space-y-6",children:[(0,n.jsx)(T,{className:"space-y-1",children:(0,n.jsxs)(P,{children:["Emails will be sent to this address. Timezone and location data will be used to schedule automations.",e.locationData&&(t=e.locationData,a=e.authenticatedData,(0,n.jsxs)("div",{className:"flex flex-wrap gap-2 items-center justify-start",children:[a?(0,n.jsxs)("span",{className:"rounded-lg text-sm border-secondary border p-1 flex items-center shadow-sm",children:[(0,n.jsx)(et.w,{className:"h-4 w-4 mr-2 inline text-orange-500 shadow-sm"}),a.email]}):null,t&&(0,n.jsxs)("span",{className:"rounded-lg text-sm border-secondary border p-1 flex items-center shadow-sm",children:[(0,n.jsx)(ea.x,{className:"h-4 w-4 mr-2 inline text-purple-500"}),t?"".concat(t.city,", ").concat(t.country):"Unknown"]}),t&&(0,n.jsxs)("span",{className:"rounded-lg text-sm border-secondary border p-1 flex items-center shadow-sm",children:[(0,n.jsx)(en.S,{className:"h-4 w-4 mr-2 inline text-green-500"}),t?"".concat(t.timezone):"Unknown"]})]}))]})}),!e.create&&(0,n.jsx)(I,{control:e.form.control,name:"subject",render:e=>{var t;let{field:a}=e;return(0,n.jsxs)(T,{className:"space-y-1",children:[(0,n.jsx)(L,{children:"Subject"}),(0,n.jsx)(P,{children:"This is the subject of the email you will receive."}),(0,n.jsx)(O,{children:(0,n.jsx)(q.I,{placeholder:"Digest of Healthcare AI trends",...a})}),(0,n.jsx)(z,{}),o.subject&&(0,n.jsx)(z,{children:null===(t=o.subject)||void 0===t?void 0:t.message})]})}}),(0,n.jsx)(I,{control:e.form.control,name:"everyBlah",render:e=>{var t;let{field:a}=e;return(0,n.jsxs)(T,{className:"w-full space-y-1",children:[(0,n.jsx)(L,{children:"Frequency"}),(0,n.jsx)(P,{children:"How often should this automation run?"}),(0,n.jsxs)(x,{onValueChange:a.onChange,defaultValue:a.value,children:[(0,n.jsx)(O,{children:(0,n.jsxs)(p,{className:"w-[200px]",children:[(0,n.jsxs)("div",{className:"flex items-center",children:[(0,n.jsx)(J.W,{className:"h-4 w-4 mr-2 inline"}),"Every"]}),(0,n.jsx)(f,{placeholder:""})]})}),(0,n.jsx)(y,{children:ey.map(e=>(0,n.jsx)(w,{value:e,children:e},e))})]}),(0,n.jsx)(z,{}),o.subject&&(0,n.jsx)(z,{children:null===(t=o.everyBlah)||void 0===t?void 0:t.message})]})}}),"Week"===e.form.watch("everyBlah")&&(0,n.jsx)(I,{control:e.form.control,name:"dayOfWeek",render:e=>{var t;let{field:a}=e;return(0,n.jsxs)(T,{className:"w-full space-y-1",children:[(0,n.jsx)(P,{children:"Every week, on which day should this automation run?"}),(0,n.jsxs)(x,{onValueChange:e=>a.onChange(Number(e)),defaultValue:String(a.value),children:[(0,n.jsx)(O,{children:(0,n.jsxs)(p,{className:"w-[200px]",children:[(0,n.jsxs)("div",{className:"flex items-center",children:[(0,n.jsx)(ee.n,{className:"h-4 w-4 mr-2 inline"}),"On"]}),(0,n.jsx)(f,{placeholder:""})]})}),(0,n.jsx)(y,{children:ev.map((e,t)=>(0,n.jsx)(w,{value:String(t),children:e},e))})]}),(0,n.jsx)(z,{}),o.subject&&(0,n.jsx)(z,{children:null===(t=o.dayOfWeek)||void 0===t?void 0:t.message})]})}}),"Month"===e.form.watch("everyBlah")&&(0,n.jsx)(I,{control:e.form.control,name:"dayOfMonth",render:e=>{var t;let{field:a}=e;return(0,n.jsxs)(T,{className:"w-full space-y-1",children:[(0,n.jsx)(P,{children:"Every month, on which day should the automation run?"}),(0,n.jsxs)(x,{onValueChange:a.onChange,defaultValue:a.value,children:[(0,n.jsx)(O,{children:(0,n.jsxs)(p,{className:"w-[200px]",children:[(0,n.jsxs)("div",{className:"flex items-center",children:[(0,n.jsx)(ee.n,{className:"h-4 w-4 mr-2 inline"}),"On the"]}),(0,n.jsx)(f,{placeholder:""})]})}),(0,n.jsx)(y,{children:ew.map(e=>(0,n.jsx)(w,{value:e,children:e},e))})]}),(0,n.jsx)(z,{}),o.subject&&(0,n.jsx)(z,{children:null===(t=o.dayOfMonth)||void 0===t?void 0:t.message})]})}}),("Day"===e.form.watch("everyBlah")||"Week"==e.form.watch("everyBlah")||"Month"==e.form.watch("everyBlah"))&&(0,n.jsx)(I,{control:e.form.control,name:"timeRecurrence",render:e=>{var t;let{field:a}=e;return(0,n.jsxs)(T,{className:"w-full space-y-1",children:[(0,n.jsx)(L,{children:"Time"}),(0,n.jsx)(P,{children:"On the days this automation runs, at what time should it run?"}),(0,n.jsxs)(x,{onValueChange:a.onChange,defaultValue:a.value,children:[(0,n.jsx)(O,{children:(0,n.jsxs)(p,{className:"w-[200px]",children:[(0,n.jsxs)("div",{className:"flex items-center",children:[(0,n.jsx)(X.u,{className:"h-4 w-4 mr-2 inline"}),"At"]}),(0,n.jsx)(f,{placeholder:""})]})}),(0,n.jsx)(y,{children:eb.map(e=>(0,n.jsx)(w,{value:e,children:e},e))})]}),(0,n.jsx)(z,{}),o.subject&&(0,n.jsx)(z,{children:null===(t=o.timeRecurrence)||void 0===t?void 0:t.message})]})}}),(0,n.jsx)(I,{control:e.form.control,name:"queryToRun",render:t=>{var a;let{field:s}=t;return(0,n.jsxs)(T,{className:"space-y-1",children:[(0,n.jsx)(L,{children:"Instructions"}),(0,n.jsx)(P,{children:"What do you want Khoj to do?"}),e.create&&(0,n.jsx)("div",{children:c.map(e=>{var t;return t=s.onChange,(0,n.jsxs)(i.z,{className:"text-xs bg-slate-50 dark:bg-slate-950 h-auto p-1.5 m-1 rounded-full",variant:"ghost",onClick:a=>{a.preventDefault(),t({target:{value:e}},a)},children:[e,"..."]},e)})}),(0,n.jsx)(O,{children:(0,n.jsx)(U.g,{placeholder:"Create a summary of the latest news about AI in healthcare.",value:s.value,onChange:s.onChange})}),(0,n.jsx)(z,{}),o.subject&&(0,n.jsx)(z,{children:null===(a=o.queryToRun)||void 0===a?void 0:a.message})]})}}),(0,n.jsx)("fieldset",{disabled:s,children:e.isLoggedIn?s?(0,n.jsx)(i.z,{type:"submit",disabled:!0,children:"Saving..."}):(0,n.jsx)(i.z,{type:"submit",children:"Save"}):(0,n.jsx)(i.z,{onClick:t=>{t.preventDefault(),e.setShowLoginPrompt(!0)},variant:"default",children:"Login to Save"})})]})})}function eO(e){return e.isMobileWidth?(0,n.jsxs)(em.dy,{open:e.isCreating,onOpenChange:t=>{e.setIsCreating(t)},children:[(0,n.jsx)(em.Qz,{asChild:!0,children:(0,n.jsxs)(i.z,{className:"shadow-sm justify-start",variant:"outline",children:[(0,n.jsx)(es.v,{className:"h-4 w-4 mr-2"}),e.callToAction]})}),(0,n.jsxs)(em.sc,{className:"p-2",children:[(0,n.jsx)(em.iI,{children:"Automation"}),(0,n.jsx)(eT,{createNew:e.createNew,automation:e.automation,setIsEditing:e.setIsCreating,isLoggedIn:!!e.authenticatedData,authenticatedData:e.authenticatedData,setShowLoginPrompt:e.setShowLoginPrompt,setUpdatedAutomationData:e.setNewAutomationData,locationData:e.ipLocationData})]})]}):(0,n.jsxs)(W.Vq,{open:e.isCreating,onOpenChange:t=>{e.setIsCreating(t)},children:[(0,n.jsx)(W.hg,{asChild:!0,children:(0,n.jsxs)(i.z,{className:"shadow-sm justify-start",variant:"outline",children:[(0,n.jsx)(es.v,{className:"h-4 w-4 mr-2"}),e.callToAction]})}),(0,n.jsxs)(W.cZ,{className:"max-h-[98vh] overflow-y-auto",children:[(0,n.jsx)(E.$N,{children:"Automation"}),(0,n.jsx)(eT,{automation:e.automation,createNew:e.createNew,setIsEditing:e.setIsCreating,isLoggedIn:!!e.authenticatedData,authenticatedData:e.authenticatedData,setShowLoginPrompt:e.setShowLoginPrompt,setUpdatedAutomationData:e.setNewAutomationData,locationData:e.ipLocationData})]})]})}function eP(){let e=(0,eo.G)(),{data:t,error:a,isLoading:o}=(0,s.ZP)(e?"automations":null,eh,{revalidateOnFocus:!1}),[c,d]=(0,l.useState)(!1),[u,m]=(0,l.useState)(null),[h,x]=(0,l.useState)([]),[f,p]=(0,l.useState)([]),[g,j]=(0,l.useState)(!1),y=(0,V.IC)(),w=(0,V.k6)();return((0,l.useEffect)(()=>{u&&(x([...h,u]),m(null))},[u,h]),(0,l.useEffect)(()=>{let e=t?t.concat(h):h;e&&p(e_.filter(t=>void 0===e.find(e=>t.subject===e.subject)))},[t,h]),a)?(0,n.jsx)(r.l,{message:"Oops, something went wrong. Please refresh the page."}):(0,n.jsx)("main",{className:"w-full mx-auto",children:(0,n.jsxs)("div",{className:"grid w-full mx-auto",children:[(0,n.jsx)("div",{className:"".concat(Z().sidePanel," top-0"),children:(0,n.jsx)(eu.Z,{conversationId:null,uploadedFiles:[],isMobileWidth:y})}),(0,n.jsxs)("div",{className:"".concat(Z().pageLayout," w-full"),children:[(0,n.jsxs)("div",{className:"pt-6 md:pt-8 grid gap-1 md:flex md:justify-between",children:[(0,n.jsx)("h1",{className:"text-3xl flex items-center",children:"Automations"}),(0,n.jsxs)("div",{className:"flex flex-wrap gap-2 items-center justify-start",children:[e?(0,n.jsxs)("span",{className:"rounded-lg text-sm border-secondary border p-1 flex items-center shadow-sm",children:[(0,n.jsx)(et.w,{className:"h-4 w-4 mr-2 inline text-orange-500 shadow-sm"}),e.email]}):null,w&&(0,n.jsxs)("span",{className:"rounded-lg text-sm border-secondary border p-1 flex items-center shadow-sm",children:[(0,n.jsx)(ea.x,{className:"h-4 w-4 mr-2 inline text-purple-500"}),w?"".concat(w.city,", ").concat(w.country):"Unknown"]}),w&&(0,n.jsxs)("span",{className:"rounded-lg text-sm border-secondary border p-1 flex items-center shadow-sm",children:[(0,n.jsx)(en.S,{className:"h-4 w-4 mr-2 inline text-green-500"}),w?"".concat(w.timezone):"Unknown"]})]})]}),g&&(0,n.jsx)(ei.Z,{loginRedirectMessage:"Create an account to make your own automation",onOpenChange:j}),(0,n.jsx)(ed.bZ,{className:"bg-secondary border-none my-4",children:(0,n.jsxs)(ed.X,{children:[(0,n.jsx)(er.B,{weight:"fill",className:"h-4 w-4 text-purple-400 inline"}),(0,n.jsx)("span",{className:"font-bold",children:"How it works"})," Automations help you structure your time by automating tasks you do regularly. Build your own, or try out our presets. Get results straight to your inbox."]})}),(0,n.jsxs)("div",{className:"flex justify-between items-center py-4",children:[(0,n.jsx)("h3",{className:"text-xl",children:"Your Creations"}),e?(0,n.jsx)(eO,{isMobileWidth:y,callToAction:"Create Automation",createNew:!0,setIsCreating:d,setShowLoginPrompt:j,setNewAutomationData:m,authenticatedData:e,isCreating:c,ipLocationData:w}):(0,n.jsxs)(i.z,{className:"shadow-sm",onClick:()=>j(!0),variant:"outline",children:[(0,n.jsx)(es.v,{className:"h-4 w-4 mr-2"}),"Create Automation"]})]}),(0,n.jsx)(l.Suspense,{children:(0,n.jsx)(eR,{isMobileWidth:y,authenticatedData:e,locationData:w,isLoggedIn:!!e,setShowLoginPrompt:j,setNewAutomationData:m})}),(!t||0===t.length)&&0==h.length&&!o&&(0,n.jsxs)("div",{className:"px-4",children:["So empty! Create your own automation to get started.",(0,n.jsx)("div",{className:"mt-4",children:e?(0,n.jsx)(eO,{isMobileWidth:y,callToAction:"Design Automation",createNew:!0,setIsCreating:d,setShowLoginPrompt:j,setNewAutomationData:m,authenticatedData:e,isCreating:c,ipLocationData:w}):(0,n.jsx)(i.z,{onClick:()=>j(!0),variant:"default",children:"Design"})})]}),o&&(0,n.jsx)(r.l,{message:"booting up your automations"}),(0,n.jsxs)("div",{className:"".concat(Z().automationsLayout),children:[t&&t.map(t=>(0,n.jsx)(eI,{isMobileWidth:y,authenticatedData:e,automation:t,locationData:w,isLoggedIn:!!e,setShowLoginPrompt:j},t.id)),h.map(t=>(0,n.jsx)(eI,{isMobileWidth:y,authenticatedData:e,automation:t,locationData:w,isLoggedIn:!!e,setShowLoginPrompt:j},t.id))]}),(0,n.jsx)("h3",{className:"text-xl py-4",children:"Try these out"}),(0,n.jsx)("div",{className:"".concat(Z().automationsLayout),children:f.map(t=>(0,n.jsx)(eI,{isMobileWidth:y,setNewAutomationData:m,authenticatedData:e,automation:t,locationData:w,isLoggedIn:!!e,setShowLoginPrompt:j,suggestedCard:!0},t.id))})]})]})})}},66820:function(e,t,a){"use strict";a.d(t,{Z:function(){return o}});var n=a(57437),s=a(6780),r=a(87138);function o(e){return(0,n.jsx)(s.aR,{open:!0,onOpenChange:e.onOpenChange,children:(0,n.jsxs)(s._T,{children:[(0,n.jsx)(s.fY,{children:(0,n.jsx)(s.f$,{children:"Sign in to Khoj to continue"})}),(0,n.jsxs)(s.yT,{children:[e.loginRedirectMessage,". By logging in, you agree to our"," ",(0,n.jsx)(r.default,{href:"https://khoj.dev/terms-of-service",children:"Terms of Service."})]}),(0,n.jsxs)(s.xo,{children:[(0,n.jsx)(s.le,{children:"Dismiss"}),(0,n.jsx)(s.OL,{className:"bg-slate-400 hover:bg-slate-500",onClick:()=>{window.location.href="/login?next=".concat(encodeURIComponent(window.location.pathname))},children:(0,n.jsxs)(r.default,{href:"/login?next=".concat(encodeURIComponent(window.location.pathname)),children:[" ","Login"]})})]})]})})}},18642:function(e,t,a){"use strict";a.d(t,{Z:function(){return c}});var n=a(57437),s=a(90837),r=a(50495),o=a(83102),i=a(67135),l=a(34797);function c(e){var t;return(0,n.jsxs)(s.Vq,{children:[(0,n.jsx)(s.hg,{asChild:!0,onClick:e.onShare,children:(0,n.jsxs)(r.z,{size:"sm",className:"".concat(e.buttonClassName||"px-3"),variant:null!==(t=e.buttonVariant)&&void 0!==t?t:"default",children:[e.includeIcon&&(0,n.jsx)(l.m,{className:"w-4 h-4 mr-2"}),e.buttonTitle]})}),(0,n.jsxs)(s.cZ,{children:[(0,n.jsxs)(s.fK,{children:[(0,n.jsx)(s.$N,{children:e.title}),(0,n.jsx)(s.Be,{children:e.description})]}),(0,n.jsxs)("div",{className:"flex items-center space-x-2",children:[(0,n.jsxs)("div",{className:"grid flex-1 gap-2",children:[(0,n.jsx)(i._,{htmlFor:"link",className:"sr-only",children:"Link"}),(0,n.jsx)(o.I,{id:"link",defaultValue:e.url,readOnly:!0})]}),(0,n.jsx)(r.z,{type:"submit",size:"sm",className:"px-3",onClick:()=>(function(e){let t=navigator.clipboard;t&&t.writeText(e)})(e.url),children:(0,n.jsx)("span",{children:"Copy"})})]})]})]})}},47412:function(e,t,a){"use strict";a.d(t,{X:function(){return c},bZ:function(){return l}});var n=a(57437),s=a(2265),r=a(12218),o=a(37440);let i=(0,r.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"}}),l=s.forwardRef((e,t)=>{let{className:a,variant:s,...r}=e;return(0,n.jsx)("div",{ref:t,role:"alert",className:(0,o.cn)(i({variant:s}),a),...r})});l.displayName="Alert",s.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)("h5",{ref:t,className:(0,o.cn)("mb-1 font-medium leading-none tracking-tight",a),...s})}).displayName="AlertTitle";let c=s.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)("div",{ref:t,className:(0,o.cn)("text-sm [&_p]:leading-relaxed",a),...s})});c.displayName="AlertDescription"},67135:function(e,t,a){"use strict";a.d(t,{_:function(){return c}});var n=a(57437),s=a(2265),r=a(38364),o=a(12218),i=a(37440);let l=(0,o.j)("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"),c=s.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)(r.f,{ref:t,className:(0,i.cn)(l(),a),...s})});c.displayName=r.f.displayName},93146:function(e,t,a){"use strict";a.d(t,{g:function(){return o}});var n=a(57437),s=a(2265),r=a(37440);let o=s.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)("textarea",{className:(0,r.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",a),ref:t,...s})});o.displayName="Textarea"},50151:function(e,t,a){"use strict";a.d(t,{FN:function(){return m},Mi:function(){return f},VW:function(){return c},_i:function(){return d},gD:function(){return h},lj:function(){return p},sA:function(){return x}});var n=a(57437),s=a(2265),r=a(44504),o=a(12218),i=a(74697),l=a(37440);let c=r.zt,d=s.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)(r.l_,{ref:t,className:(0,l.cn)("fixed top-0 z-[100] flex max-h-screen w-full flex-col-reverse p-4 sm:bottom-0 sm:right-0 sm:top-auto sm:flex-col md:max-w-[420px]",a),...s})});d.displayName=r.l_.displayName;let u=(0,o.j)("group pointer-events-auto relative flex w-full items-center justify-between space-x-4 overflow-hidden rounded-md border p-6 pr-8 shadow-lg transition-all data-[swipe=cancel]:translate-x-0 data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)] data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] data-[swipe=move]:transition-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[swipe=end]:animate-out data-[state=closed]:fade-out-80 data-[state=closed]:slide-out-to-right-full data-[state=open]:slide-in-from-top-full data-[state=open]:sm:slide-in-from-bottom-full",{variants:{variant:{default:"border bg-background text-foreground",destructive:"destructive group border-destructive bg-destructive text-destructive-foreground"}},defaultVariants:{variant:"default"}}),m=s.forwardRef((e,t)=>{let{className:a,variant:s,...o}=e;return(0,n.jsx)(r.fC,{ref:t,className:(0,l.cn)(u({variant:s}),a),...o})});m.displayName=r.fC.displayName;let h=s.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)(r.aU,{ref:t,className:(0,l.cn)("inline-flex h-8 shrink-0 items-center justify-center rounded-md border bg-transparent px-3 text-sm font-medium ring-offset-background transition-colors hover:bg-secondary focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 group-[.destructive]:border-muted/40 group-[.destructive]:hover:border-destructive/30 group-[.destructive]:hover:bg-destructive group-[.destructive]:hover:text-destructive-foreground group-[.destructive]:focus:ring-destructive",a),...s})});h.displayName=r.aU.displayName;let x=s.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)(r.x8,{ref:t,className:(0,l.cn)("absolute right-2 top-2 rounded-md p-1 text-foreground/50 opacity-0 transition-opacity hover:text-foreground focus:opacity-100 focus:outline-none focus:ring-2 group-hover:opacity-100 group-[.destructive]:text-red-300 group-[.destructive]:hover:text-red-50 group-[.destructive]:focus:ring-red-400 group-[.destructive]:focus:ring-offset-red-600",a),"toast-close":"",...s,children:(0,n.jsx)(i.Z,{className:"h-4 w-4"})})});x.displayName=r.x8.displayName;let f=s.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)(r.Dx,{ref:t,className:(0,l.cn)("text-sm font-semibold",a),...s})});f.displayName=r.Dx.displayName;let p=s.forwardRef((e,t)=>{let{className:a,...s}=e;return(0,n.jsx)(r.dk,{ref:t,className:(0,l.cn)("text-sm opacity-90",a),...s})});p.displayName=r.dk.displayName},35657:function(e,t,a){"use strict";a.d(t,{pm:function(){return m}});var n=a(2265);let s=0,r=new Map,o=e=>{if(r.has(e))return;let t=setTimeout(()=>{r.delete(e),d({type:"REMOVE_TOAST",toastId:e})},1e6);r.set(e,t)},i=(e,t)=>{switch(t.type){case"ADD_TOAST":return{...e,toasts:[t.toast,...e.toasts].slice(0,1)};case"UPDATE_TOAST":return{...e,toasts:e.toasts.map(e=>e.id===t.toast.id?{...e,...t.toast}:e)};case"DISMISS_TOAST":{let{toastId:a}=t;return a?o(a):e.toasts.forEach(e=>{o(e.id)}),{...e,toasts:e.toasts.map(e=>e.id===a||void 0===a?{...e,open:!1}:e)}}case"REMOVE_TOAST":if(void 0===t.toastId)return{...e,toasts:[]};return{...e,toasts:e.toasts.filter(e=>e.id!==t.toastId)}}},l=[],c={toasts:[]};function d(e){c=i(c,e),l.forEach(e=>{e(c)})}function u(e){let{...t}=e,a=(s=(s+1)%Number.MAX_SAFE_INTEGER).toString(),n=()=>d({type:"DISMISS_TOAST",toastId:a});return d({type:"ADD_TOAST",toast:{...t,id:a,open:!0,onOpenChange:e=>{e||n()}}}),{id:a,dismiss:n,update:e=>d({type:"UPDATE_TOAST",toast:{...e,id:a}})}}function m(){let[e,t]=n.useState(c);return n.useEffect(()=>(l.push(t),()=>{let e=l.indexOf(t);e>-1&&l.splice(e,1)}),[e]),{...e,toast:u,dismiss:e=>d({type:"DISMISS_TOAST",toastId:e})}}},23611:function(e){e.exports={automationsLayout:"automations_automationsLayout__Atoh_",automationCard:"automations_automationCard__BKidA",pageLayout:"automations_pageLayout__OaoYA",sidePanel:"automations_sidePanel__MPciO"}}},function(e){e.O(0,[2734,647,9001,3062,4504,9162,1603,2971,7023,1744],function(){return e(e.s=2743)}),_N_E=e.O()}]);
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|