khoj 1.25.1.dev19__py3-none-any.whl → 1.25.1.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.
Files changed (50) hide show
  1. khoj/database/adapters/__init__.py +72 -2
  2. khoj/database/admin.py +16 -0
  3. khoj/database/migrations/0069_webscraper_serverchatsettings_web_scraper.py +89 -0
  4. khoj/database/models/__init__.py +77 -2
  5. khoj/interface/compiled/404/index.html +1 -1
  6. khoj/interface/compiled/_next/static/chunks/app/agents/{page-fa282831808ee536.js → page-b406d166301c4c7d.js} +1 -1
  7. khoj/interface/compiled/_next/static/chunks/app/automations/{page-5480731341f34450.js → page-2edc21f30819def4.js} +1 -1
  8. khoj/interface/compiled/_next/static/chunks/app/chat/{page-702057ccbcf27881.js → page-4309c98e6dc497dd.js} +1 -1
  9. khoj/interface/compiled/_next/static/chunks/app/factchecker/{page-e7b34316ec6f44de.js → page-f2c83e3a87a28657.js} +1 -1
  10. khoj/interface/compiled/_next/static/chunks/app/{page-10a5aad6e04f3cf8.js → page-ab9beb5a26e396f7.js} +1 -1
  11. khoj/interface/compiled/_next/static/chunks/app/search/{page-d56541c746fded7d.js → page-b807caebd7f278c7.js} +1 -1
  12. khoj/interface/compiled/_next/static/chunks/app/settings/{page-e044a999468a7c5d.js → page-2932356ad11c2f7b.js} +1 -1
  13. khoj/interface/compiled/_next/static/chunks/app/share/chat/{page-fbbd66a4d4633438.js → page-a736a0826570af2b.js} +1 -1
  14. khoj/interface/compiled/_next/static/chunks/{webpack-07fad5db87344b82.js → webpack-61a553b6ff44f97c.js} +1 -1
  15. khoj/interface/compiled/_next/static/css/4cae6c0e5c72fb2d.css +1 -0
  16. khoj/interface/compiled/_next/static/css/b1094827d745306b.css +1 -0
  17. khoj/interface/compiled/agents/index.html +1 -1
  18. khoj/interface/compiled/agents/index.txt +2 -2
  19. khoj/interface/compiled/automations/index.html +1 -1
  20. khoj/interface/compiled/automations/index.txt +2 -2
  21. khoj/interface/compiled/chat/index.html +1 -1
  22. khoj/interface/compiled/chat/index.txt +2 -2
  23. khoj/interface/compiled/factchecker/index.html +1 -1
  24. khoj/interface/compiled/factchecker/index.txt +2 -2
  25. khoj/interface/compiled/index.html +1 -1
  26. khoj/interface/compiled/index.txt +2 -2
  27. khoj/interface/compiled/search/index.html +1 -1
  28. khoj/interface/compiled/search/index.txt +2 -2
  29. khoj/interface/compiled/settings/index.html +1 -1
  30. khoj/interface/compiled/settings/index.txt +2 -2
  31. khoj/interface/compiled/share/chat/index.html +1 -1
  32. khoj/interface/compiled/share/chat/index.txt +2 -2
  33. khoj/processor/embeddings.py +1 -0
  34. khoj/processor/tools/online_search.py +135 -40
  35. khoj/routers/api_chat.py +38 -27
  36. khoj/routers/helpers.py +12 -11
  37. khoj/search_type/text_search.py +7 -2
  38. khoj/utils/helpers.py +46 -4
  39. {khoj-1.25.1.dev19.dist-info → khoj-1.25.1.dev33.dist-info}/METADATA +1 -1
  40. {khoj-1.25.1.dev19.dist-info → khoj-1.25.1.dev33.dist-info}/RECORD +48 -47
  41. khoj/interface/compiled/_next/static/css/2de69f0be774c768.css +0 -1
  42. khoj/interface/compiled/_next/static/css/592ca99f5122e75a.css +0 -1
  43. /khoj/interface/compiled/_next/static/{90HwIhHWUtPEP6Aqr1IZw → NaOqImuryddEYz7a7MQ6j}/_buildManifest.js +0 -0
  44. /khoj/interface/compiled/_next/static/{90HwIhHWUtPEP6Aqr1IZw → NaOqImuryddEYz7a7MQ6j}/_ssgManifest.js +0 -0
  45. /khoj/interface/compiled/_next/static/chunks/{9178-899fe9a6b754ecfe.js → 9178-f208a3e6404714a9.js} +0 -0
  46. /khoj/interface/compiled/_next/static/chunks/{9417-29502e39c3e7d60c.js → 9417-1d158bf46d3a0dc9.js} +0 -0
  47. /khoj/interface/compiled/_next/static/chunks/{9479-7eed36fc954ef804.js → 9479-563e4d61f91d5a7c.js} +0 -0
  48. {khoj-1.25.1.dev19.dist-info → khoj-1.25.1.dev33.dist-info}/WHEEL +0 -0
  49. {khoj-1.25.1.dev19.dist-info → khoj-1.25.1.dev33.dist-info}/entry_points.txt +0 -0
  50. {khoj-1.25.1.dev19.dist-info → khoj-1.25.1.dev33.dist-info}/licenses/LICENSE +0 -0
khoj/utils/helpers.py CHANGED
@@ -2,10 +2,12 @@ from __future__ import annotations # to avoid quoting type hints
2
2
 
3
3
  import datetime
4
4
  import io
5
+ import ipaddress
5
6
  import logging
6
7
  import os
7
8
  import platform
8
9
  import random
10
+ import urllib.parse
9
11
  import uuid
10
12
  from collections import OrderedDict
11
13
  from enum import Enum
@@ -164,9 +166,9 @@ def get_class_by_name(name: str) -> object:
164
166
  class timer:
165
167
  """Context manager to log time taken for a block of code to run"""
166
168
 
167
- def __init__(self, message: str, logger: logging.Logger, device: torch.device = None):
169
+ def __init__(self, message: str, logger: logging.Logger, device: torch.device = None, log_level=logging.DEBUG):
168
170
  self.message = message
169
- self.logger = logger
171
+ self.logger = logger.debug if log_level == logging.DEBUG else logger.info
170
172
  self.device = device
171
173
 
172
174
  def __enter__(self):
@@ -176,9 +178,9 @@ class timer:
176
178
  def __exit__(self, *_):
177
179
  elapsed = perf_counter() - self.start
178
180
  if self.device is None:
179
- self.logger.debug(f"{self.message}: {elapsed:.3f} seconds")
181
+ self.logger(f"{self.message}: {elapsed:.3f} seconds")
180
182
  else:
181
- self.logger.debug(f"{self.message}: {elapsed:.3f} seconds on device: {self.device}")
183
+ self.logger(f"{self.message}: {elapsed:.3f} seconds on device: {self.device}")
182
184
 
183
185
 
184
186
  class LRU(OrderedDict):
@@ -436,6 +438,46 @@ def is_internet_connected():
436
438
  return False
437
439
 
438
440
 
441
+ def is_internal_url(url: str) -> bool:
442
+ """
443
+ Check if a URL is likely to be internal/non-public.
444
+
445
+ Args:
446
+ url (str): The URL to check.
447
+
448
+ Returns:
449
+ bool: True if the URL is likely internal, False otherwise.
450
+ """
451
+ try:
452
+ parsed_url = urllib.parse.urlparse(url)
453
+ hostname = parsed_url.hostname
454
+
455
+ # Check for localhost
456
+ if hostname in ["localhost", "127.0.0.1", "::1"]:
457
+ return True
458
+
459
+ # Check for IP addresses in private ranges
460
+ try:
461
+ ip = ipaddress.ip_address(hostname)
462
+ return ip.is_private
463
+ except ValueError:
464
+ pass # Not an IP address, continue with other checks
465
+
466
+ # Check for common internal TLDs
467
+ internal_tlds = [".local", ".internal", ".private", ".corp", ".home", ".lan"]
468
+ if any(hostname.endswith(tld) for tld in internal_tlds):
469
+ return True
470
+
471
+ # Check for URLs without a TLD
472
+ if "." not in hostname:
473
+ return True
474
+
475
+ return False
476
+ except Exception:
477
+ # If we can't parse the URL or something else goes wrong, assume it's not internal
478
+ return False
479
+
480
+
439
481
  def convert_image_to_webp(image_bytes):
440
482
  """Convert image bytes to webp format for faster loading"""
441
483
  image_io = io.BytesIO(image_bytes)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: khoj
3
- Version: 1.25.1.dev19
3
+ Version: 1.25.1.dev33
4
4
  Summary: Your Second Brain
5
5
  Project-URL: Homepage, https://khoj.dev
6
6
  Project-URL: Documentation, https://docs.khoj.dev
@@ -8,10 +8,10 @@ khoj/app/asgi.py,sha256=soh3C1xazlgHt_bDgKzrfzo2TKXbNYJsckcXNEgTip8,388
8
8
  khoj/app/settings.py,sha256=M6sQUu_AdeKl3eruecBaifRBhYOBIait0KA2NPizcBM,6198
9
9
  khoj/app/urls.py,sha256=7ECnusoAPAfbO_H_b5FUzYGvnb4LLdWaRDyKNvYuBvg,869
10
10
  khoj/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- khoj/database/admin.py,sha256=H7q24au3KiAx583Rz-Ow6oV4Tb5NzBY-hx1PLASx1W0,9234
11
+ khoj/database/admin.py,sha256=VGXfQYYURbfeAslZq9icTsKKk3s93iTmssW6UtTtw88,9571
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=P5R8k1iVmICHaPh3QE4bxNM6utbygxGwMWaDRenY9jM,60806
14
+ khoj/database/adapters/__init__.py,sha256=Aj8Q9JxUDdjjz0HWJHD7CCgme61wUHtSEmdgeawBX2Y,63962
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
@@ -96,25 +96,26 @@ khoj/database/migrations/0065_remove_agent_avatar_remove_agent_public_and_more.p
96
96
  khoj/database/migrations/0066_remove_agent_tools_agent_input_tools_and_more.py,sha256=M4mprWoUmAizYOLNehBLREybHzFc5dbKoLtIsuoEaNI,2358
97
97
  khoj/database/migrations/0067_alter_agent_style_icon.py,sha256=Z2HrLjBV5gx_OguzeJOPQmopx4HO52SsjAeR7bvZBQw,1861
98
98
  khoj/database/migrations/0068_alter_agent_output_modes.py,sha256=G86wHkT2eWUSwsO4U2NS1t_UzVjEz4kzbgENy8mpicw,692
99
+ khoj/database/migrations/0069_webscraper_serverchatsettings_web_scraper.py,sha256=5yQ4DsYqtz2SvUU7b1izrNtgFOHNsVD2l05oC_gBAjU,3145
99
100
  khoj/database/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
- khoj/database/models/__init__.py,sha256=JqDtK1iDSDktr2U75zG7FvcJymvkQvGfeEPBJEk7aYg,20900
101
+ khoj/database/models/__init__.py,sha256=ls0tbnxI4UNlIXT7UQR3A8ROGpHEkHJUJs5dKI7PjYo,23912
101
102
  khoj/interface/compiled/agents.svg,sha256=yFCRwIM-Qawa0C5ggAo3ekb-Q1ElmotBOKIGhtfIQqM,1722
102
103
  khoj/interface/compiled/automation.svg,sha256=o7L2XYwJWRSMvl8h6TBv6Pt28RTRVMHqF04EPY0AFj0,1467
103
104
  khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvtM3A,2424
104
105
  khoj/interface/compiled/close.svg,sha256=hQ2iFLkNzHk0_iyTrSbwnWAeXYlgA-c2Eof2Iqh76n4,417
105
106
  khoj/interface/compiled/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
106
107
  khoj/interface/compiled/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
107
- khoj/interface/compiled/index.html,sha256=Pe-Ru3oVEVlvzjq8M1XQRnpXEcNjGHkiQqjA3nk10Es,11791
108
- khoj/interface/compiled/index.txt,sha256=tbMnMpFwkbiPH6lSgmIr7CDFGOOzF6vOu5JTNJyydP8,5479
108
+ khoj/interface/compiled/index.html,sha256=v6drsHj0pJ7Ysd9Rnj9EpqU6siMH4pwvKvTaP6x1KDI,11791
109
+ khoj/interface/compiled/index.txt,sha256=_h8ul_9zfErPgHd7wpGh0AsgNT-ebiHjmlvLkeKKhMA,5479
109
110
  khoj/interface/compiled/khoj.webmanifest,sha256=lsknYkvEdMbRTOUYKXPM_8krN2gamJmM4u3qj8u9lrU,1682
110
111
  khoj/interface/compiled/logo.svg,sha256=_QCKVYM4WT2Qhcf7aVFImjq_s5CwjynGXYAOgI7yf8w,8059
111
112
  khoj/interface/compiled/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
112
113
  khoj/interface/compiled/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
113
114
  khoj/interface/compiled/thumbs-down.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
114
115
  khoj/interface/compiled/thumbs-up.svg,sha256=yS1wxTRtiztkN-6nZciLoYQUB_KTYNPV8xFRwH2TQFw,1036
115
- khoj/interface/compiled/404/index.html,sha256=SevH-Pt_xFvYZl1tzp6rfRN_3QVJXNoLHy6GlArS8UA,12051
116
- khoj/interface/compiled/_next/static/90HwIhHWUtPEP6Aqr1IZw/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
117
- khoj/interface/compiled/_next/static/90HwIhHWUtPEP6Aqr1IZw/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
116
+ khoj/interface/compiled/404/index.html,sha256=TnOkTcqokLIqWEFLXteJChRSM-yYyJWAkshMF1hdIqw,12051
117
+ khoj/interface/compiled/_next/static/NaOqImuryddEYz7a7MQ6j/_buildManifest.js,sha256=6I9QUstNpJnhe3leR2Daw0pSXwzcbBscv6h2jmmPpms,224
118
+ khoj/interface/compiled/_next/static/NaOqImuryddEYz7a7MQ6j/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
118
119
  khoj/interface/compiled/_next/static/chunks/121-7024f479c297aef0.js,sha256=CcRT2AArGYTo7Orl5w69nrnMqdI_EmyEP_YqIj3FU1c,20952
119
120
  khoj/interface/compiled/_next/static/chunks/1603-fa3ee48860b9dc5c.js,sha256=HVKZBRar7SDL79-0YMd-Czrr3nyWu5nWvcU11xSQH2k,71504
120
121
  khoj/interface/compiled/_next/static/chunks/2697-a38d01981ad3bdf8.js,sha256=bPajH6RHGusfrF6IlxIsLLwnIwMIPeZfsFzJ_oS-UCI,7511
@@ -130,42 +131,42 @@ khoj/interface/compiled/_next/static/chunks/6297-d1c842ed3f714ab0.js,sha256=4nzZ
130
131
  khoj/interface/compiled/_next/static/chunks/7023-a5bf5744d19b3bd3.js,sha256=TBJA7dTnI8nymtbljKuZzo2hbStXWR-P8Qkl57k2Tw8,123898
131
132
  khoj/interface/compiled/_next/static/chunks/7762-79f2205740622b5c.js,sha256=DOPdP09qQbmaPZhirSEh6YqTkC7afirl0Pzu3v3A9Pg,35789
132
133
  khoj/interface/compiled/_next/static/chunks/9001-3b27af6d5f21df44.js,sha256=ran2mMGTO2kiAJebRGMyfyAu4Sdjw-WobS_m6g-qjz8,34223
133
- khoj/interface/compiled/_next/static/chunks/9178-899fe9a6b754ecfe.js,sha256=AkZ8mx8fdZKFZxR0wXVkQ_0hkcd8NYbNoSSF8sthUSY,17798
134
- khoj/interface/compiled/_next/static/chunks/9417-29502e39c3e7d60c.js,sha256=RCdrdKyvMQRMyVnZPALFw_EU0IMNvl3x0DN4_1XzJig,19473
135
- khoj/interface/compiled/_next/static/chunks/9479-7eed36fc954ef804.js,sha256=c4VtkdNKRyB4nl1tAEqPKQHOJUEzcsQ8shdC4y2YFI8,22261
134
+ khoj/interface/compiled/_next/static/chunks/9178-f208a3e6404714a9.js,sha256=AkZ8mx8fdZKFZxR0wXVkQ_0hkcd8NYbNoSSF8sthUSY,17798
135
+ khoj/interface/compiled/_next/static/chunks/9417-1d158bf46d3a0dc9.js,sha256=RCdrdKyvMQRMyVnZPALFw_EU0IMNvl3x0DN4_1XzJig,19473
136
+ khoj/interface/compiled/_next/static/chunks/9479-563e4d61f91d5a7c.js,sha256=c4VtkdNKRyB4nl1tAEqPKQHOJUEzcsQ8shdC4y2YFI8,22261
136
137
  khoj/interface/compiled/_next/static/chunks/d3ac728e-a9e3522eef9b6b28.js,sha256=wK1TsLdl56xtbQG6HMRDpylzTOYXQaAnnn2xobFnX40,267216
137
138
  khoj/interface/compiled/_next/static/chunks/fd9d1056-2b978342deb60015.js,sha256=2lquiZSfbI-gX4j4TW4JSMLL_D5ShqwydgWpFyXrTy8,172834
138
139
  khoj/interface/compiled/_next/static/chunks/framework-8e0e0f4a6b83a956.js,sha256=sFFnSyDnFoOc61lP-EtTzTyf-zGA78ejDyMgPFMDw2Q,140001
139
140
  khoj/interface/compiled/_next/static/chunks/main-app-6d6ee3495efe03d4.js,sha256=i52E7sWOcSq1G8eYZL3mtTxbUbwRNxcAbSWQ6uWpMsY,475
140
141
  khoj/interface/compiled/_next/static/chunks/main-f84cd3c1873cd842.js,sha256=jKg2A4pPMmEAQmrA10rACH3daS8XXJeMnGOz1AsTkdI,111099
141
142
  khoj/interface/compiled/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
142
- khoj/interface/compiled/_next/static/chunks/webpack-07fad5db87344b82.js,sha256=E5ws2IYqeZrTugC-ngLoTBF_PTT63PSSXkt_JYnkQzo,3724
143
+ khoj/interface/compiled/_next/static/chunks/webpack-61a553b6ff44f97c.js,sha256=THBNP5Yn4efpgViSJfWSvtGt23oNEscZtUg-IIKMpGM,3721
143
144
  khoj/interface/compiled/_next/static/chunks/app/layout-d0f0a9067427fb20.js,sha256=ilPUPuMQt_2D48lC5c6AYeXT7J28ElR_Ym6VtjQwCO0,442
144
- khoj/interface/compiled/_next/static/chunks/app/page-10a5aad6e04f3cf8.js,sha256=eugKXd0nrJGg9NbfmNmUrkCxT-w5opawTRxpheHICQ4,28641
145
+ khoj/interface/compiled/_next/static/chunks/app/page-ab9beb5a26e396f7.js,sha256=5WWAXDHF6ru8mqlFH1ndBvFGXKrGCYaDxqUe07NXpYU,28640
145
146
  khoj/interface/compiled/_next/static/chunks/app/_not-found/page-07ff4ab42b07845e.js,sha256=3mCUnxfMxyK44eqk21TVBrC6u--WSbvx31fTmQuOvMQ,1755
146
147
  khoj/interface/compiled/_next/static/chunks/app/agents/layout-75636ab3a413fa8e.js,sha256=0bdI7GBXZxpLy88hdWQiOc26QRZaD9R86YNMmGakWl4,372
147
- khoj/interface/compiled/_next/static/chunks/app/agents/page-fa282831808ee536.js,sha256=QbWJOIYwuZ62ROosgC52EcBRvxq5Ja-Jx0jq4jybTbs,38462
148
+ khoj/interface/compiled/_next/static/chunks/app/agents/page-b406d166301c4c7d.js,sha256=ufct_clm3WUOTtgHGhuCEAlxSXPwIINbEhewBIcxaMk,38456
148
149
  khoj/interface/compiled/_next/static/chunks/app/automations/layout-27c28e923c9b1ff0.js,sha256=d2vJ_lVB0pfeFXNUPzHAe1ca5NzdNowHPh___SPqugM,5143
149
- khoj/interface/compiled/_next/static/chunks/app/automations/page-5480731341f34450.js,sha256=PgsFxtYymaDBMcJR31xPXLp4HX--uFJt6OAES95jM8k,35441
150
+ khoj/interface/compiled/_next/static/chunks/app/automations/page-2edc21f30819def4.js,sha256=pnJPDfAQE1chtGwy2R-LjqTDjO2NDhB5oqHY-PrpM9w,35445
150
151
  khoj/interface/compiled/_next/static/chunks/app/chat/layout-96fcf62857bf8f30.js,sha256=1CjjxW27P-98-jfx8gBX3eBiLI-3k9zQ6nJqcZoNMBQ,374
151
- khoj/interface/compiled/_next/static/chunks/app/chat/page-702057ccbcf27881.js,sha256=Fge4qq3mFhPk0-tI5ts5JsJErlfjmlgHwbEugyVyAnk,5666
152
+ khoj/interface/compiled/_next/static/chunks/app/chat/page-4309c98e6dc497dd.js,sha256=NDDd6prYx3TWNmxqoM1xuuyEAyr-FzjYbvVMYzJTacA,5665
152
153
  khoj/interface/compiled/_next/static/chunks/app/factchecker/layout-7b30c541c05fb904.js,sha256=yub2AuBKHKSCqrHRFnkZv9JXLmLJLOB99iiaD3DtZQM,170
153
- khoj/interface/compiled/_next/static/chunks/app/factchecker/page-e7b34316ec6f44de.js,sha256=DPWy4Lh773zmhmrgEu8TPTI-r5DfZDeaoIOUGPKhi18,14032
154
+ khoj/interface/compiled/_next/static/chunks/app/factchecker/page-f2c83e3a87a28657.js,sha256=F3nwoxhW_X_0hZhOReXsYyRlsyNr3UL56RzLZ4f1G7c,14031
154
155
  khoj/interface/compiled/_next/static/chunks/app/search/layout-3720f1362310bebb.js,sha256=Smpa4MQaw5ItashtspsDKsOvRa6sOXH_lv4jIfWIbNI,170
155
- khoj/interface/compiled/_next/static/chunks/app/search/page-d56541c746fded7d.js,sha256=4uRb6Ns9ichFXH7kBmbFLa7g8KgSgUsKFEYXEQqx9CQ,6958
156
+ khoj/interface/compiled/_next/static/chunks/app/search/page-b807caebd7f278c7.js,sha256=PnkBAhTn1TBoFSPOj49YCIrXb4C_gMZHqQvVqJRRY5o,6957
156
157
  khoj/interface/compiled/_next/static/chunks/app/settings/layout-a8f33dfe92f997fb.js,sha256=VQp-ZD9hDz-r6yXCDMgdxrvnm6qcuKViX7AKc9B6JBw,5347
157
- khoj/interface/compiled/_next/static/chunks/app/settings/page-e044a999468a7c5d.js,sha256=PgBPWWlZyx65XgxrttZlHREESMDt44ICdrrZiO5gH9M,31848
158
+ khoj/interface/compiled/_next/static/chunks/app/settings/page-2932356ad11c2f7b.js,sha256=olfGLDUYwy0dqj-xn0qmg6dOGeJCHL5NlTdWBvUTrNo,31847
158
159
  khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-2df56074e42adaa0.js,sha256=RPeayaV3Gbu0bJnD9vW5ml-xN-zN6UFBlTel-vOMYys,373
159
- khoj/interface/compiled/_next/static/chunks/app/share/chat/page-fbbd66a4d4633438.js,sha256=NfaF2T_Do-HHf0aFKmWqMUIQIXBJDzFiyxInUV7ulgw,4820
160
+ khoj/interface/compiled/_next/static/chunks/app/share/chat/page-a736a0826570af2b.js,sha256=WO_Mu1am1K-CCeQVSk4ACLlTL9BM3hJigiO8ZKWueu0,4819
160
161
  khoj/interface/compiled/_next/static/chunks/pages/_app-f870474a17b7f2fd.js,sha256=eqdFPAN_XFyMUzZ9qwFk-_rhMWZrU7lgNVt1foVUANo,286
161
162
  khoj/interface/compiled/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
162
163
  khoj/interface/compiled/_next/static/css/2272c73fc7a3b571.css,sha256=1fHKFd8zLOHosAHx-kxv4b9lVSqHag_E71WkV3dXx2Y,26940
163
- khoj/interface/compiled/_next/static/css/2de69f0be774c768.css,sha256=E00JnHdJVDT2Ai0dxE6VRD0odoBTLEyeQW48rlv5zH4,7849
164
164
  khoj/interface/compiled/_next/static/css/3e1f1fdd70775091.css,sha256=HT70_NVRMtV5IPc5k9JBGrVirjDZ3tyap7mEPXjQlGM,1634
165
165
  khoj/interface/compiled/_next/static/css/467a524c75e7d7c0.css,sha256=yNoCTf6WSvmOpMGCnq1LEjF8lFDydKu4O5isN5KWqO8,2622
166
+ khoj/interface/compiled/_next/static/css/4cae6c0e5c72fb2d.css,sha256=3CjTMmtMrm_MYt1ywtUh2MHEjSLSl356SQLl4hdBuYw,534
166
167
  khoj/interface/compiled/_next/static/css/553f9cdcc7a2bcd6.css,sha256=JpjOOwmqP9Hba-w_8Lx9jWW0ZD0kD3wR0HvdPGDyUPo,2134
167
- khoj/interface/compiled/_next/static/css/592ca99f5122e75a.css,sha256=BSqRkeb9vBh0phx5GkAlZirTFZintbyggGaUkuOBfaU,914
168
168
  khoj/interface/compiled/_next/static/css/5a400c87d295e68a.css,sha256=ojDUPJ9fJpEo9DzTAsEa-k1cg7Bef-nSTfpszMiqknQ,17711
169
+ khoj/interface/compiled/_next/static/css/b1094827d745306b.css,sha256=V0sHPHjBYSs52KIYPjg5FTCsMpDucVQwUM1f7ThsLQw,8229
169
170
  khoj/interface/compiled/_next/static/css/b9a6bf04305d98d7.css,sha256=NfTj8QxZYyhwgCdImGQBYwhxnvByYhtK9LhVooVBqHA,1882291
170
171
  khoj/interface/compiled/_next/static/css/c808691c459e3887.css,sha256=Xj1SLFCKntSIqZSDCMg2MnzZowIiKFtqPT3KxrT4i94,1857
171
172
  khoj/interface/compiled/_next/static/media/0e790e04fd40ad16-s.p.woff2,sha256=41ewITd0G1ZAoB62BTHMW58a1q8Hl6vSbTQkkHP7EbI,39372
@@ -240,8 +241,8 @@ khoj/interface/compiled/_next/static/media/flags.3afdda2f.webp,sha256=M2AW_HLpBn
240
241
  khoj/interface/compiled/_next/static/media/flags@2x.5fbe9fc1.webp,sha256=BBeRPBZkxY3-aKkMnYv5TSkxmbeMbyUH4VRIPfrWg1E,137406
241
242
  khoj/interface/compiled/_next/static/media/globe.98e105ca.webp,sha256=g3ofb8-W9GM75zIhlvQhaS8I2py9TtrovOKR3_7Jf04,514
242
243
  khoj/interface/compiled/_next/static/media/globe@2x.974df6f8.webp,sha256=I_N7Yke3IOoS-0CC6XD8o0IUWG8PdPbrHmf6lpgWlZY,1380
243
- khoj/interface/compiled/agents/index.html,sha256=T3UUfDEJbmsJoCz8Zm95WtV5rK6fJbms8wyIjCbKyDg,12830
244
- khoj/interface/compiled/agents/index.txt,sha256=zrzJOVdJG_zNTEIxqvPj_wMQpadspeb-C2NFTBViW9E,6126
244
+ khoj/interface/compiled/agents/index.html,sha256=Cz-0t8iGEgESyaOAH0a7JweB6I1FFrBzRsIGvvJ7UAs,12522
245
+ khoj/interface/compiled/agents/index.txt,sha256=1XoGGE1sIl7QY8_bslIyVt6j5XSZ4NTBjioTAUC4ZN0,5993
245
246
  khoj/interface/compiled/assets/icons/khoj_lantern.ico,sha256=eggu-B_v3z1R53EjOFhIqqPnICBGdoaw1xnc0NrzHck,174144
246
247
  khoj/interface/compiled/assets/icons/khoj_lantern_128x128.png,sha256=aTxivDb3CYyThkVZWz8A19xl_dNut5DbkXhODWF3A9Q,5640
247
248
  khoj/interface/compiled/assets/icons/khoj_lantern_256x256.png,sha256=xPCMLHiaL7lYOdQLZrKwWE-Qjn5ZaysSZB0ScYv4UZU,12312
@@ -252,18 +253,18 @@ khoj/interface/compiled/assets/samples/desktop-remember-plan-sample.png,sha256=i
252
253
  khoj/interface/compiled/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
253
254
  khoj/interface/compiled/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
254
255
  khoj/interface/compiled/assets/samples/phone-remember-plan-sample.png,sha256=Ma3blirRmq3X4oYSsDbbT7MDn29rymDrjwmUfA9BMuM,236285
255
- khoj/interface/compiled/automations/index.html,sha256=86wzvtkEbRfyhnU3N4WGYNLovrdxv3bFOPFg-pR2Ul4,30624
256
- khoj/interface/compiled/automations/index.txt,sha256=wy37S4fDdEsNGY-6Z8yoyY9bQz9IHGj-ZrDPmvVEfXI,5494
257
- khoj/interface/compiled/chat/index.html,sha256=pdbIRDg0DdfhB6i3yBnFi-KXr_6VkjVBMLLTA6exGU8,13724
258
- khoj/interface/compiled/chat/index.txt,sha256=iq1qyv8Og2hj1XKfKbzmnpFL97ruimEjDt5fImSVAHM,6486
259
- khoj/interface/compiled/factchecker/index.html,sha256=zSLd6SNR006lkms1r0q0HO_M-Jllaz1Zsug5McqMq50,29973
260
- khoj/interface/compiled/factchecker/index.txt,sha256=H8SkecKIUwSQ3KhDVL5MygbpjqIz7jFuOVJ835FWbio,5788
261
- khoj/interface/compiled/search/index.html,sha256=HVME8zG6NcPVCVmGNW8tAAIDXPkTwYVomjQnkkHKDmE,30161
262
- khoj/interface/compiled/search/index.txt,sha256=ytPIzeskJA6EbcipZ7kkpYXeXSeBnLBtEjyBzLXPDB8,5256
263
- khoj/interface/compiled/settings/index.html,sha256=bd0akBqZUd6lQydqEYjn7yLteWAFoqSUKh2V3lXs8Qw,12831
264
- khoj/interface/compiled/settings/index.txt,sha256=SSy6xrV0ohESRTVglCv6szy9Zc07e7AHa11v-VfVUwQ,6078
265
- khoj/interface/compiled/share/chat/index.html,sha256=7QrzUs9tw6Yaj2EgSvt-AwwZembkMFJ9LvnQ6uxqfeg,15049
266
- khoj/interface/compiled/share/chat/index.txt,sha256=K9ci74vpcuVE91RPE2O-U97ZyaJ-HNZ38vTJw1JFhiI,7297
256
+ khoj/interface/compiled/automations/index.html,sha256=giafZdKp1XSafImnx20hI7hPczjy02WcBryJSsDwr60,30932
257
+ khoj/interface/compiled/automations/index.txt,sha256=vURVURIvdl66loKLRHFEEi1QSAWcKd7gZkLeSjmatvE,5627
258
+ khoj/interface/compiled/chat/index.html,sha256=5D7SUYwRCple9obTql2Zut7RVJKXCmRD_pxdZHxTlc8,13724
259
+ khoj/interface/compiled/chat/index.txt,sha256=qvSzhUY8gRaxTGdJ2MpsFRCLDkj-wYOJqd4Xm7eQlOg,6486
260
+ khoj/interface/compiled/factchecker/index.html,sha256=R6KTGiZPgeZqMC2nUnsBpHH3LKH4AjSBc4hDvzW2UBk,29973
261
+ khoj/interface/compiled/factchecker/index.txt,sha256=_Bc5hvEVGN-DBDVGAUvOR-tzHpM83MiyuUj2gvE4FVs,5788
262
+ khoj/interface/compiled/search/index.html,sha256=cpmMLzCUZLzalhVyBhJZqOWPmLbZ2vGCYmSiJtd8Tqw,30161
263
+ khoj/interface/compiled/search/index.txt,sha256=1UiU4McQKtynoxDEPeg6k6xkvOW2qp5PZcU1tE6JTww,5256
264
+ khoj/interface/compiled/settings/index.html,sha256=jsZldwWsHEiDRf7ZjMzOnRyWbF3k1erUvuUq3QtkdCM,12831
265
+ khoj/interface/compiled/settings/index.txt,sha256=SI2EUWwP3YgoUc4X7Yw-_T31oCUSpwfdBshNuLr08ww,6078
266
+ khoj/interface/compiled/share/chat/index.html,sha256=iF6r5MIF8CqXgrjQ4ij39LAhQamPq1DWt-nhZx8KrU8,15049
267
+ khoj/interface/compiled/share/chat/index.txt,sha256=ZnobUsmKmh-JSXjppFw3m2TtCnALDtV4CUw_aW73BoU,7297
267
268
  khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
268
269
  khoj/interface/email/magic_link.html,sha256=EoGKQucfPj3xQrWXhSZAzPFOYCHF_ZX94TWCd1XHl1M,941
269
270
  khoj/interface/email/task.html,sha256=tY7a0gzVeQ2lSQNu7WyXR_s7VYeWTrxWEj1iHVuoVE4,2813
@@ -295,7 +296,7 @@ khoj/migrations/migrate_processor_config_openai.py,sha256=FfeUU2JPQMtlr1iYoc4Cer
295
296
  khoj/migrations/migrate_server_pg.py,sha256=b6ULFFBEF__W10YpgF28deKoOzGqDbdvyL4nBdj3eNU,5015
296
297
  khoj/migrations/migrate_version.py,sha256=6CTsLuxiLnFVF8A7CjsIz3PcnJd8fAOZeIx6tTu6Vgg,569
297
298
  khoj/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
298
- khoj/processor/embeddings.py,sha256=qL2Vx5SxDJXJ7TZJNl6s4xclq-zJiVMLYbdnvod5_Cw,5427
299
+ khoj/processor/embeddings.py,sha256=DirOTKBVBJ9kuzxixdT227zgEHQV3ttjLLGdzedYsFs,5467
299
300
  khoj/processor/content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
300
301
  khoj/processor/content/text_to_entries.py,sha256=Oa4Ny8c5S1_IGCmjCtUI45hX1fPTRwxXhHg1lHFqHy8,14537
301
302
  khoj/processor/content/docx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -335,17 +336,17 @@ khoj/processor/image/generate.py,sha256=sY0mYhFubeZqZ02KGBdAXGskTeCIsADwwf715tNV
335
336
  khoj/processor/speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
337
  khoj/processor/speech/text_to_speech.py,sha256=Q7sapi5Hv6woXOumtrGqR0t6izZrFBkWXFOGrHM6dJ4,1929
337
338
  khoj/processor/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
- khoj/processor/tools/online_search.py,sha256=shkYPmeNn1SYMcd7nd5vTRP_02PwMRJDdbYc-xbDmNg,10254
339
+ khoj/processor/tools/online_search.py,sha256=rve174mQz6CEBsLHt4SWEWA9Sp9anXjFHJo62SxmP3M,14317
339
340
  khoj/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
340
341
  khoj/routers/api.py,sha256=rf31Pfs6mEA_SHXWNzjUHoFrIZJwiwN9hebRQ3Evq8Y,27590
341
342
  khoj/routers/api_agents.py,sha256=1rmFp6rnvf3JxL0VS7X5awEvartYieBHjEWNJNnObvQ,8877
342
- khoj/routers/api_chat.py,sha256=t0anhs08V4DSx-WXPlGeXNavrHbWLq7G574HW09Cy5k,39671
343
+ khoj/routers/api_chat.py,sha256=8eNmFS-5vr4rRGwFxQPpMya7dnFy8IM0DADkOpeVXms,40325
343
344
  khoj/routers/api_content.py,sha256=lWunOwVWYvnl1ue_D81g9ZSwBc0UxHmBIrdJoVPxN_A,17900
344
345
  khoj/routers/api_model.py,sha256=CR6aMVwgbh6dZEq1NZEeUBRVMMZubBQHTWAu6uzckf8,4650
345
346
  khoj/routers/api_phone.py,sha256=p9yfc4WeMHDC0hg3aQk60a2VBy8rZPdEnz9wdJ7DzkU,2208
346
347
  khoj/routers/auth.py,sha256=d3wzcysoYBQkPeqc1-gX8EnE7I_roVirMp5uzxOgobs,6560
347
348
  khoj/routers/email.py,sha256=SGYNPQvfcvYeHf70F0YqpY0FLMRElF2ZekROXdwGI18,3821
348
- khoj/routers/helpers.py,sha256=2MH0MllE1ZtqpVN9Y-yQeKuZtCs7gJNg124U30DYAJQ,67927
349
+ khoj/routers/helpers.py,sha256=sHZBwOa_QAHkbfJ1wlTDs5-40uNMqcJHRCcAhsRfxgA,67845
349
350
  khoj/routers/notion.py,sha256=Lp67xP9rVgpAF9BQoGTjZFcVdF1HYtvPP0kjq6uurKU,2802
350
351
  khoj/routers/storage.py,sha256=tJrwhFRVWv0MHv7V7huMc1Diwm-putZSwnZXJ3tqT_c,2338
351
352
  khoj/routers/subscription.py,sha256=JsKYS00Z2QXlXTobP1vU8T5cN5SE2PYp50CGDAQXofU,4699
@@ -357,21 +358,21 @@ khoj/search_filter/date_filter.py,sha256=4VL63kDVqYKFOzkCeV6R8Z8lxFaAbbn_z_RWaWQ
357
358
  khoj/search_filter/file_filter.py,sha256=tHYW-ibaENf_jrJ88kiO_xhrPZb6FQLtngG9ISTB6h8,1168
358
359
  khoj/search_filter/word_filter.py,sha256=5Yx95aSiqGke9kEIbp8T-Ak4dS9cTd3VxI1SaJoK1wY,1005
359
360
  khoj/search_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
360
- khoj/search_type/text_search.py,sha256=i_4-uknO2z2mdyG6txHln4JiXy6C11jkvDMGphfLxfE,9240
361
+ khoj/search_type/text_search.py,sha256=S7aHl6WhOuIe5HyXVAukmWJDu5NwzBo_XOvEDbUHH7A,9470
361
362
  khoj/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
363
  khoj/utils/cli.py,sha256=AgO3rO-bN5oI71sIReGxrJXPeXEH80fnCIsyVlZYgjI,3695
363
364
  khoj/utils/config.py,sha256=aiOkH0je8A30DAGYTHMRePrgJonFv_i07_7CdhhhcdA,1805
364
365
  khoj/utils/constants.py,sha256=UwE7U9bNsfeqTb0K2lcdXdAscM4-7uuVoR3KbZS03Pg,1216
365
366
  khoj/utils/fs_syncer.py,sha256=bQgcbYYC3x11RyCqI_kUzzqGpcKTodGgdT-3OTQsXqw,9977
366
- khoj/utils/helpers.py,sha256=qbDRB_Q8W8GXLk9wr43w5ipE_T6SiljzAXrk5mFYD74,16130
367
+ khoj/utils/helpers.py,sha256=giuZyEAizZd3ztJaMe7WI7vI-R8ScbsPyWPXeH1vKfc,17384
367
368
  khoj/utils/initialization.py,sha256=TjA2ZImYKI-J1tEBE_0TaOLnVQidVV5GDEFBOPq8aik,10048
368
369
  khoj/utils/jsonl.py,sha256=0Ac_COqr8sLCXntzZtquxuCEVRM2c3yKeDRGhgOBRpQ,1192
369
370
  khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
370
371
  khoj/utils/rawconfig.py,sha256=kURDuk7x0MDtniGLU4x1IsvU4UIBS-V9dSM4GD8X-LY,4274
371
372
  khoj/utils/state.py,sha256=x4GTewP1YhOA6c_32N4wOjnV-3AA3xG_qbY1-wC2Uxc,1559
372
373
  khoj/utils/yaml.py,sha256=H0mfw0ZvBFUvFmCQn8pWkfxdmIebsrSykza7D8Wv6wQ,1430
373
- khoj-1.25.1.dev19.dist-info/METADATA,sha256=FJyR1m5TyNCNtGh6Po7w3XRB8u2voDHAymYrNF4bt9U,7025
374
- khoj-1.25.1.dev19.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
375
- khoj-1.25.1.dev19.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
376
- khoj-1.25.1.dev19.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
377
- khoj-1.25.1.dev19.dist-info/RECORD,,
374
+ khoj-1.25.1.dev33.dist-info/METADATA,sha256=CgCddWEy3l6AO3BZQwJJSDRJCM4HFXCEPCNNbw1PhKs,7025
375
+ khoj-1.25.1.dev33.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
376
+ khoj-1.25.1.dev33.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
377
+ khoj-1.25.1.dev33.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
378
+ khoj-1.25.1.dev33.dist-info/RECORD,,
@@ -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%}}div.sidePanel_session__R9wgH{padding:.5rem;margin-bottom:.25rem;border-radius:.5rem;cursor:pointer;max-width:14rem;font-size:medium;display:grid;grid-template-columns:minmax(auto,400px) 1fr;gap:0}div.sidePanel_compressed__YBPtM{grid-template-columns:minmax(12rem,100%) 1fr 1fr}div.sidePanel_sessionHover__iwfo8,div.sidePanel_session__R9wgH:hover{background-color:hsla(var(--popover))}div.sidePanel_session__R9wgH:hover{color:hsla(var(--popover-foreground))}div.sidePanel_session__R9wgH a{text-decoration:none}button.sidePanel_button__ihOfG{border:none;outline:none;background-color:transparent;cursor:pointer;color:var(--main-text-color);width:24px}button.sidePanel_showMoreButton__dt9Zw{border-radius:.5rem;padding:8px}div.sidePanel_panel__VZ8ye{display:flex;flex-direction:column;padding:1rem;overflow-y:auto;max-width:auto;transition:background-color .5s}div.sidePanel_expanded__ZjTHo{gap:1rem;background-color:hsla(var(--muted));height:100%}div.sidePanel_collapsed__OjVmG{display:grid;grid-template-columns:1fr;height:-moz-fit-content;height:fit-content;padding:1rem 0 0 1rem}p.sidePanel_session__R9wgH{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-align:left;font-size:small}div.sidePanel_header__d5cGA{display:grid;grid-template-columns:1fr auto}div.sidePanel_profile__x0w58{display:grid;grid-template-columns:auto 1fr;gap:1rem;align-items:center;margin-top:auto}div.sidePanel_panelWrapper__k_lal{display:grid;grid-template-rows:1fr auto auto;height:100%}div.sidePanel_modalSessionsList__nKe2n{position:fixed;top:0;left:0;width:100%;height:100%;background-color:hsla(var(--frosted-background-color));z-index:1;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}div.sidePanel_modalSessionsList__nKe2n div.sidePanel_content__Wq20_{max-width:80%;max-height:80%;background-color:hsla(var(--frosted-background-color));overflow:auto;padding:20px;border-radius:10px}div.sidePanel_modalSessionsList__nKe2n div.sidePanel_session__R9wgH{max-width:100%;text-overflow:ellipsis}@media screen and (max-width:768px){div.sidePanel_panel__VZ8ye{padding:.25rem;width:100%}div.sidePanel_expanded__ZjTHo{z-index:1}div.sidePanel_singleReference__r9z1n{padding:4px}div.sidePanel_panelWrapper__k_lal{width:100%;padding:0 1rem}div.sidePanel_session__R9wgH.sidePanel_compressed__YBPtM{max-width:100%;display:grid;grid-template-columns:70vw auto;justify-content:space-between}div.sidePanel_session__R9wgH{max-width:100%;grid-template-columns:minmax(auto,70vw) 1fr}}menu.navMenu_menu__fqlFF a{text-decoration:none;font-size:medium;font-weight:400;padding:0 4px;border-radius:4px;display:flex;justify-self:center;margin:0;align-items:center;gap:4px}a.navMenu_selected__A__aP{background-color:hsl(var(--accent))}div.navMenu_titleBar__HJoio{display:flex;justify-content:space-between;align-content:space-evenly;align-items:start}div.navMenu_titleBar__HJoio menu{padding:0;margin:0;border-radius:.5rem;display:grid;grid-auto-flow:column;gap:32px}div.navMenu_settingsMenuProfile__3npiK img{border-radius:50%;width:32px;height:32px;margin:0}div.navMenu_settingsMenu__X2i2U{padding:0 4px;border-radius:4px;display:flex;justify-self:center;margin:0;align-items:center}div.navMenu_settingsMenuOptions__KWnLv{display:block;grid-auto-flow:row;position:absolute;background-color:var(--background-color);box-shadow:0 8px 16px 0 rgba(0,0,0,.2);top:64px;text-align:left;padding:8px;border-radius:8px}@media screen and (max-width:600px){menu.navMenu_menu__fqlFF span{display:none}div.navMenu_settingsMenuOptions__KWnLv{right:4px}div.navMenu_titleBar__HJoio{padding:8px}}div.chatHistory_chatHistory__CoaVT{display:flex;flex-direction:column;height:100%}div.chatHistory_chatLayout__ABli_{height:80vh;overflow-y:auto;margin:0 auto}div.chatHistory_agentIndicator__wOU1f a{display:flex;text-align:center;align-content:center;align-items:center}div.chatHistory_trainOfThought__mMWSR{border:1px solid var(--border-color);border-radius:16px;padding:8px 16px;margin:12px}div.chatMessage_chatMessageContainer__sAivf{display:flex;flex-direction:column;margin:12px;border-radius:16px;padding:8px 16px 0}div.chatMessage_chatMessageWrapper__u5m8A{padding-left:1rem;padding-bottom:1rem;max-width:80vw}div.chatMessage_chatMessageWrapper__u5m8A ol,div.chatMessage_chatMessageWrapper__u5m8A p:not(:last-child),div.chatMessage_chatMessageWrapper__u5m8A ul{margin-bottom:16px}div.chatMessage_chatMessageWrapper__u5m8A a span{display:revert!important}div.chatMessage_khojfullHistory__NPu2l{border-width:1px;padding-left:4px}div.chatMessage_youfullHistory__ioyfH{max-width:100%}div.chatMessage_chatMessageContainer__sAivf.chatMessage_youfullHistory__ioyfH{padding-left:0}div.chatMessage_you__6GUC4{background-color:hsla(var(--secondary));align-self:flex-end;border-radius:16px}div.chatMessage_khoj__cjWON{background-color:transparent;color:hsl(var(--accent-foreground));align-self:flex-start}div.chatMessage_khojChatMessage__BabQz{padding-top:8px;padding-left:16px}div.chatMessage_emptyChatMessage__J9JRn{display:none}div.chatMessage_chatMessageContainer__sAivf img{width:auto;height:auto;max-width:100%;max-height:80vh;-o-object-fit:contain;object-fit:contain;display:block;margin-top:.25rem;margin-right:auto}div.chatMessage_chatMessageContainer__sAivf h3 img{width:24px}div.chatMessage_you__6GUC4{color:hsla(var(--secondary-foreground))}div.chatMessage_author__muRtC{font-size:.75rem;color:grey;text-align:right}div.chatMessage_chatFooter__0vR8s{display:flex;justify-content:space-between;min-height:28px}div.chatMessage_chatButtons__Lbk8T{display:flex;justify-content:flex-end;width:-moz-min-content;width:min-content;border:1px solid var(--border-color);border-radius:16px;position:relative;bottom:-12px;background-color:hsla(var(--secondary))}div.chatMessage_chatFooter__0vR8s button{cursor:pointer;color:hsl(var(--muted-foreground));border:none;border-radius:16px;padding:4px;margin-left:4px;margin-right:4px}div.chatMessage_chatFooter__0vR8s button:hover{background-color:hsla(var(--frosted-background-color))}button.chatMessage_codeCopyButton__Y_Ujv{cursor:pointer;float:right;border-radius:8px}button.chatMessage_codeCopyButton__Y_Ujv:hover{color:hsla(var(--frosted-background-color))}button.chatMessage_codeCopyButton__Y_Ujv img,button.chatMessage_copyButton__jd7q7 img,div.chatMessage_feedbackButtons___Brdy img{width:24px}div.chatMessage_trainOfThought__mR2Gg strong{font-weight:500}div.chatMessage_trainOfThought__mR2Gg.chatMessage_primary__WYPEb strong{font-weight:500;color:hsla(var(--secondary-foreground))}div.chatMessage_trainOfThought__mR2Gg.chatMessage_primary__WYPEb p{color:inherit}div.chatMessage_trainOfThoughtElement__le_bC{display:grid;grid-template-columns:auto 1fr;align-items:start}div.chatMessage_trainOfThoughtElement__le_bC ol,div.chatMessage_trainOfThoughtElement__le_bC ul{margin:auto}@media screen and (max-width:768px){div.chatMessage_youfullHistory__ioyfH{max-width:90%}}div.chatInputArea_actualInputArea__Ha6cN{display:grid;grid-template-columns:auto 1fr auto auto}div.search_searchLayout__fP3m0{display:grid;grid-template-columns:1fr;gap:1rem;height:100vh}div.search_sidePanel__myfc9{position:fixed;height:100%;z-index:1}@media screen and (max-width:768px){div.search_searchLayout__fP3m0{gap:0}div.search_sidePanel__myfc9{position:relative;height:100%}}
@@ -1 +0,0 @@
1
- div.agents_titleBar__FzYbY{padding:16px 0;text-align:left}.agents_agentPersonality__o0Ysz p{white-space:inherit;overflow:hidden;height:77px;line-height:1.5}div.agents_agentPersonality__o0Ysz{text-align:left;grid-column:span 3;overflow:hidden}div.agents_pageLayout__gR3S3{max-width:60vw;margin:auto auto 2rem}div.agents_sidePanel__wGVGc{position:fixed;height:100%;z-index:1}button.agents_infoButton__NqI7E{border:none;background-color:transparent!important;text-align:left;font-family:inherit;font-size:medium}div.agents_agentList__XVx4A{display:grid;gap:20px;padding-top:30px;margin-right:auto;grid-auto-flow:row;grid-template-columns:1fr 1fr;margin-left:auto}@media only screen and (max-width:768px){div.agents_agentList__XVx4A{width:100%;padding:0;margin-right:auto;margin-left:auto;grid-template-columns:1fr}div.agents_pageLayout__gR3S3{max-width:90vw}div.agents_sidePanel__wGVGc{position:relative;height:100%}}