khoj 1.33.3.dev32__py3-none-any.whl → 1.33.3.dev39__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/configure.py +2 -1
- khoj/database/adapters/__init__.py +1 -1
- khoj/database/management/commands/change_default_model.py +3 -2
- khoj/database/migrations/0079_searchmodelconfig_embeddings_inference_endpoint_type.py +29 -0
- khoj/database/migrations/0080_speechtotextmodeloptions_ai_model_api.py +24 -0
- khoj/database/models/__init__.py +10 -0
- khoj/interface/compiled/404/index.html +1 -1
- khoj/interface/compiled/_next/static/chunks/app/agents/{page-28ce086a1129bca2.js → page-f6b7a9ce4a8b2bf7.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/automations/{page-bf365a60829d347f.js → page-f3c16eb399159215.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/chat/layout-d5ae861e1ade9d08.js +1 -0
- khoj/interface/compiled/_next/static/chunks/app/chat/{page-0e476e57eb2015e3.js → page-650855e8f4b22b44.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/{page-a5515ea71aec5ef0.js → page-c19cf0120d458883.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/search/layout-f5881c7ae3ba0795.js +1 -0
- khoj/interface/compiled/_next/static/chunks/app/search/{page-9140541e67ea307d.js → page-2a09ae0883b04242.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/settings/{page-951ba40b5b94b23a.js → page-827fe7bea045fefe.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-b3f7ae1ef8871d30.js +1 -0
- khoj/interface/compiled/_next/static/chunks/app/share/chat/{page-1beb80d8d741c932.js → page-e2d3ec972752a9ec.js} +1 -1
- khoj/interface/compiled/_next/static/chunks/{webpack-a03962458328b163.js → webpack-a0f2bc543d19e007.js} +1 -1
- khoj/interface/compiled/_next/static/css/0f0e5dbeda138161.css +1 -0
- khoj/interface/compiled/_next/static/css/ba1602594aa7828f.css +1 -0
- khoj/interface/compiled/agents/index.html +1 -1
- khoj/interface/compiled/agents/index.txt +2 -2
- khoj/interface/compiled/automations/index.html +1 -1
- khoj/interface/compiled/automations/index.txt +2 -2
- khoj/interface/compiled/chat/index.html +1 -1
- khoj/interface/compiled/chat/index.txt +2 -2
- khoj/interface/compiled/index.html +1 -1
- khoj/interface/compiled/index.txt +2 -2
- khoj/interface/compiled/search/index.html +1 -1
- khoj/interface/compiled/search/index.txt +2 -2
- khoj/interface/compiled/settings/index.html +1 -1
- khoj/interface/compiled/settings/index.txt +2 -2
- khoj/interface/compiled/share/chat/index.html +1 -1
- khoj/interface/compiled/share/chat/index.txt +2 -2
- khoj/processor/embeddings.py +51 -25
- khoj/processor/image/generate.py +9 -7
- khoj/routers/api.py +13 -3
- khoj/utils/initialization.py +6 -6
- {khoj-1.33.3.dev32.dist-info → khoj-1.33.3.dev39.dist-info}/METADATA +1 -1
- {khoj-1.33.3.dev32.dist-info → khoj-1.33.3.dev39.dist-info}/RECORD +45 -43
- khoj/interface/compiled/_next/static/chunks/app/chat/layout-33934fc2d6ae6838.js +0 -1
- khoj/interface/compiled/_next/static/chunks/app/search/layout-c02531d586972d7d.js +0 -1
- khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-e8e5db7830bf3f47.js +0 -1
- khoj/interface/compiled/_next/static/css/37a73b87f02df402.css +0 -1
- khoj/interface/compiled/_next/static/css/8e6a3ca11a60b189.css +0 -1
- /khoj/interface/compiled/_next/static/{Tg-vU1p1B-YKT5Qv8KSHt → rLqb7_fsvUwn3e4S_7dQR}/_buildManifest.js +0 -0
- /khoj/interface/compiled/_next/static/{Tg-vU1p1B-YKT5Qv8KSHt → rLqb7_fsvUwn3e4S_7dQR}/_ssgManifest.js +0 -0
- {khoj-1.33.3.dev32.dist-info → khoj-1.33.3.dev39.dist-info}/WHEEL +0 -0
- {khoj-1.33.3.dev32.dist-info → khoj-1.33.3.dev39.dist-info}/entry_points.txt +0 -0
- {khoj-1.33.3.dev32.dist-info → khoj-1.33.3.dev39.dist-info}/licenses/LICENSE +0 -0
khoj/utils/initialization.py
CHANGED
@@ -43,14 +43,14 @@ def initialization(interactive: bool = True):
|
|
43
43
|
"🗣️ Configure chat models available to your server. You can always update these at /server/admin using your admin account"
|
44
44
|
)
|
45
45
|
|
46
|
-
|
47
|
-
provider = "Ollama" if
|
48
|
-
openai_api_key = os.getenv("OPENAI_API_KEY", "placeholder" if
|
46
|
+
openai_base_url = os.getenv("OPENAI_BASE_URL")
|
47
|
+
provider = "Ollama" if openai_base_url and openai_base_url.endswith(":11434/v1/") else "OpenAI"
|
48
|
+
openai_api_key = os.getenv("OPENAI_API_KEY", "placeholder" if openai_base_url else None)
|
49
49
|
default_chat_models = default_openai_chat_models
|
50
|
-
if
|
50
|
+
if openai_base_url:
|
51
51
|
# Get available chat models from OpenAI compatible API
|
52
52
|
try:
|
53
|
-
openai_client = openai.OpenAI(api_key=openai_api_key, base_url=
|
53
|
+
openai_client = openai.OpenAI(api_key=openai_api_key, base_url=openai_base_url)
|
54
54
|
default_chat_models = [model.id for model in openai_client.models.list()]
|
55
55
|
# Put the available default OpenAI models at the top
|
56
56
|
valid_default_models = [model for model in default_openai_chat_models if model in default_chat_models]
|
@@ -66,7 +66,7 @@ def initialization(interactive: bool = True):
|
|
66
66
|
ChatModel.ModelType.OPENAI,
|
67
67
|
default_chat_models,
|
68
68
|
default_api_key=openai_api_key,
|
69
|
-
api_base_url=
|
69
|
+
api_base_url=openai_base_url,
|
70
70
|
vision_enabled=True,
|
71
71
|
is_offline=False,
|
72
72
|
interactive=interactive,
|
@@ -1,5 +1,5 @@
|
|
1
1
|
khoj/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
khoj/configure.py,sha256=
|
2
|
+
khoj/configure.py,sha256=jOVTU3lia2--VXxjwn9AE6cqNKRqfnXPViDfg8tABQc,18113
|
3
3
|
khoj/main.py,sha256=NaTkSas4gFLY2yaX0g1RO4WV_YFrDh3VAWJuA6EPPtw,8518
|
4
4
|
khoj/manage.py,sha256=njo6uLxGaMamTPesHjFEOIBJbpIUrz39e1V59zKj544,664
|
5
5
|
khoj/app/README.md,sha256=PSQjKCdpU2hgszLVF8yEhV7TWhbEEb-1aYLTRuuAsKI,2832
|
@@ -11,10 +11,10 @@ khoj/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
khoj/database/admin.py,sha256=OeAu1yK3TA7_Mex_IUOmk9_X4DzZFwdbSpN9AEMgAco,12828
|
12
12
|
khoj/database/apps.py,sha256=pM4tkX5Odw4YW_hLLKK8Nd5kqGddf1en0oMCea44RZw,153
|
13
13
|
khoj/database/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
|
14
|
-
khoj/database/adapters/__init__.py,sha256=
|
14
|
+
khoj/database/adapters/__init__.py,sha256=SdrykkWWjdW7SdynvloobYpb9dnkuabuqaBHvAicooI,70264
|
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
|
-
khoj/database/management/commands/change_default_model.py,sha256=
|
17
|
+
khoj/database/management/commands/change_default_model.py,sha256=6QXJttG58gpU7vZApQEeEPVNAuhjU2xa6_BwJsfz320,4877
|
18
18
|
khoj/database/management/commands/change_generated_images_url.py,sha256=w52FwRlyOL4YRpp9O6jJUjSIuGLxVhaS2w1D7gtQgOE,2644
|
19
19
|
khoj/database/management/commands/convert_images_png_to_webp.py,sha256=C74kEGa_BYkH0dIwtSUinU9qJFCFoVdo3HJRD1eLFuc,4630
|
20
20
|
khoj/database/migrations/0001_khojuser.py,sha256=1AjGQ4cOX8rUUMLOsKWFSUlQvO4nklKQB-BILSjiric,4077
|
@@ -107,25 +107,25 @@ khoj/database/migrations/0075_migrate_generated_assets_and_validate.py,sha256=zF
|
|
107
107
|
khoj/database/migrations/0076_rename_openaiprocessorconversationconfig_aimodelapi_and_more.py,sha256=D_qIoZ6Zr1Y1QhXdDhXlCVXix18fd47fMlRSMDHLzT8,708
|
108
108
|
khoj/database/migrations/0077_chatmodel_alter_agent_chat_model_and_more.py,sha256=cQP-j9_cStfpECwxSncYVBakQ_OLEHaEJLRsOdaWgR8,1949
|
109
109
|
khoj/database/migrations/0078_khojuser_email_verification_code_expiry.py,sha256=eA-M2nfQA-kWDSPotD4mxinsBqJe2WL1ufeTlKZRldc,459
|
110
|
+
khoj/database/migrations/0079_searchmodelconfig_embeddings_inference_endpoint_type.py,sha256=gatmnlaVcQJm0AkUMH5fj6vh_FxPInbn6O9XzHVzgdA,1012
|
111
|
+
khoj/database/migrations/0080_speechtotextmodeloptions_ai_model_api.py,sha256=snkGKR2BW15DYqNqbh-RC0LVWmRemBsYe-5zqJjbYUk,665
|
110
112
|
khoj/database/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
|
-
khoj/database/models/__init__.py,sha256=
|
113
|
+
khoj/database/models/__init__.py,sha256=dDeRJnKBu4Gh3PNJWmsU1QT0dqeH3XfSMtm7UiBg4eU,28988
|
112
114
|
khoj/interface/compiled/agents.svg,sha256=yFCRwIM-Qawa0C5ggAo3ekb-Q1ElmotBOKIGhtfIQqM,1722
|
113
115
|
khoj/interface/compiled/automation.svg,sha256=o7L2XYwJWRSMvl8h6TBv6Pt28RTRVMHqF04EPY0AFj0,1467
|
114
116
|
khoj/interface/compiled/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvtM3A,2424
|
115
117
|
khoj/interface/compiled/close.svg,sha256=hQ2iFLkNzHk0_iyTrSbwnWAeXYlgA-c2Eof2Iqh76n4,417
|
116
118
|
khoj/interface/compiled/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
|
117
119
|
khoj/interface/compiled/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
|
118
|
-
khoj/interface/compiled/index.html,sha256=
|
119
|
-
khoj/interface/compiled/index.txt,sha256=
|
120
|
+
khoj/interface/compiled/index.html,sha256=cm3bv-Zs3MpZmREtXubr_Nrpu7AymMp7KJYKnBt33Fc,15886
|
121
|
+
khoj/interface/compiled/index.txt,sha256=foxq_KLd9C4AdeO--EylAnJOL-JuKBzI2SoGYmcDmKE,6792
|
120
122
|
khoj/interface/compiled/khoj.webmanifest,sha256=9wOK2BMS6xH5NKd2eaUgTLg9WepIxB2K2U33KU89LD8,2543
|
121
123
|
khoj/interface/compiled/logo.svg,sha256=_QCKVYM4WT2Qhcf7aVFImjq_s5CwjynGXYAOgI7yf8w,8059
|
122
124
|
khoj/interface/compiled/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
|
123
125
|
khoj/interface/compiled/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
|
124
126
|
khoj/interface/compiled/thumbs-down.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
|
125
127
|
khoj/interface/compiled/thumbs-up.svg,sha256=yS1wxTRtiztkN-6nZciLoYQUB_KTYNPV8xFRwH2TQFw,1036
|
126
|
-
khoj/interface/compiled/404/index.html,sha256=
|
127
|
-
khoj/interface/compiled/_next/static/Tg-vU1p1B-YKT5Qv8KSHt/_buildManifest.js,sha256=f2_nYnw25hHWQJ-39Lf5OH1u6kgdbOInyfplqgjvAV4,224
|
128
|
-
khoj/interface/compiled/_next/static/Tg-vU1p1B-YKT5Qv8KSHt/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
128
|
+
khoj/interface/compiled/404/index.html,sha256=KHE82OgIHe9fpfsbdd4Ay8_yNsKovFZhxtKY3Ox7xzQ,15705
|
129
129
|
khoj/interface/compiled/_next/static/chunks/1010-8f39bb4648b5ba10.js,sha256=5YkAi84Tc3fqa83pPShWPNf6GInBsRvVDurP6WOjrqI,48173
|
130
130
|
khoj/interface/compiled/_next/static/chunks/182-f1c48a203dc91e0e.js,sha256=JRaMKdCDyIPYNIJkRYwiBj5I4h8JG8uj4I7Mxv9qiNA,469751
|
131
131
|
khoj/interface/compiled/_next/static/chunks/1915-d3c36ad6ce697ce7.js,sha256=qArqL3leavWRcZkX4ZuWgemtKnmV6c-_yrNtMu_8SeY,11277
|
@@ -152,30 +152,30 @@ khoj/interface/compiled/_next/static/chunks/framework-8e0e0f4a6b83a956.js,sha256
|
|
152
152
|
khoj/interface/compiled/_next/static/chunks/main-app-de1f09df97a3cfc7.js,sha256=bqnztujKItXfFBzQlaBmDZyfJpQt_M93CXOuchJfpD0,471
|
153
153
|
khoj/interface/compiled/_next/static/chunks/main-db4bfac6b0a8d00b.js,sha256=vPSmGIy1oxKoIImN-yu0Cac-8hxcwGJJvJ9V4UTGQ6k,111273
|
154
154
|
khoj/interface/compiled/_next/static/chunks/polyfills-42372ed130431b0a.js,sha256=CXPB1kyIrcjjyVBBDLWLKI9yEY1ZZbeASUON648vloM,112594
|
155
|
-
khoj/interface/compiled/_next/static/chunks/webpack-
|
155
|
+
khoj/interface/compiled/_next/static/chunks/webpack-a0f2bc543d19e007.js,sha256=LAvDlk91HldwRmetNuyGNlvwXdmMUC5_FmYn3UY0Ucg,4009
|
156
156
|
khoj/interface/compiled/_next/static/chunks/app/layout-30e7fda7262713ce.js,sha256=U_kFR0Vycl8EfeY4NGizdPrucrgy5QnWZ4jqkkLJD20,712
|
157
|
-
khoj/interface/compiled/_next/static/chunks/app/page-
|
157
|
+
khoj/interface/compiled/_next/static/chunks/app/page-c19cf0120d458883.js,sha256=0ql8P82-VvQc9J4EQ1V75ihraGYVM2wAU3aG4fteaSk,28058
|
158
158
|
khoj/interface/compiled/_next/static/chunks/app/_not-found/page-a834eddae3e235df.js,sha256=zElhiTkdu2JqrEvJ8Lrxh4HCyfLmPllBHHWOuDtrVlw,1755
|
159
159
|
khoj/interface/compiled/_next/static/chunks/app/agents/layout-e00fb81dca656a10.js,sha256=Prg_1BSPDnJDTXEx-Ai9RtlK0nesPWDFIVFFCMuVUiw,180
|
160
|
-
khoj/interface/compiled/_next/static/chunks/app/agents/page-
|
160
|
+
khoj/interface/compiled/_next/static/chunks/app/agents/page-f6b7a9ce4a8b2bf7.js,sha256=NGtpDEUXGz_XzpKd71cCRU7E3jgaRVSz9s5FybKBZlw,18054
|
161
161
|
khoj/interface/compiled/_next/static/chunks/app/automations/layout-1fe1537449f43496.js,sha256=s2wHeQ-ai9rKyU9EjOGY1Yo51L4ZEkjLtML85BqN3Zc,5143
|
162
|
-
khoj/interface/compiled/_next/static/chunks/app/automations/page-
|
163
|
-
khoj/interface/compiled/_next/static/chunks/app/chat/layout-
|
164
|
-
khoj/interface/compiled/_next/static/chunks/app/chat/page-
|
165
|
-
khoj/interface/compiled/_next/static/chunks/app/search/layout-
|
166
|
-
khoj/interface/compiled/_next/static/chunks/app/search/page-
|
162
|
+
khoj/interface/compiled/_next/static/chunks/app/automations/page-f3c16eb399159215.js,sha256=MTIEpYZzFU2PiVVFdeZNi79KxS8dV_4CdO9sQ-Yztlw,34825
|
163
|
+
khoj/interface/compiled/_next/static/chunks/app/chat/layout-d5ae861e1ade9d08.js,sha256=oe6TgLOEOch5Nr3Z-DEdMIp3MD5vd0rH7dTp-mdEXYg,180
|
164
|
+
khoj/interface/compiled/_next/static/chunks/app/chat/page-650855e8f4b22b44.js,sha256=UVgtwTgaGHwOkxozd5KS7zC5bJ8mlzsMXljDFPbTqpc,7862
|
165
|
+
khoj/interface/compiled/_next/static/chunks/app/search/layout-f5881c7ae3ba0795.js,sha256=Bm4Y73ylR-j9_LdKXVUjgLppZJ6JRdLTUgYAsZCOBkQ,180
|
166
|
+
khoj/interface/compiled/_next/static/chunks/app/search/page-2a09ae0883b04242.js,sha256=KaxFT0p98m08PWpAIif1Z5iLPlOmakkYCE0GFy6Tqc8,7196
|
167
167
|
khoj/interface/compiled/_next/static/chunks/app/settings/layout-d09d6510a45cd4bd.js,sha256=dIfmM5C_Al-Zh_uqaJmniSxjXbu3LqPzrEw4SQ7vs0I,6132
|
168
|
-
khoj/interface/compiled/_next/static/chunks/app/settings/page-
|
169
|
-
khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-
|
170
|
-
khoj/interface/compiled/_next/static/chunks/app/share/chat/page-
|
168
|
+
khoj/interface/compiled/_next/static/chunks/app/settings/page-827fe7bea045fefe.js,sha256=s38bWtZUqHNVIFYVAeZLMoPiE_taP2lbqN4jYrYFs5o,31745
|
169
|
+
khoj/interface/compiled/_next/static/chunks/app/share/chat/layout-b3f7ae1ef8871d30.js,sha256=JsEyiIoEsN1WLgEjun_x908uUc85ve2k3cNY4YF2yyw,180
|
170
|
+
khoj/interface/compiled/_next/static/chunks/app/share/chat/page-e2d3ec972752a9ec.js,sha256=XWuiWUWmSwRy8iQmQimH0isvIGJ8Pi0jQW7z5A0azPQ,4704
|
171
171
|
khoj/interface/compiled/_next/static/chunks/pages/_app-3c9ca398d360b709.js,sha256=UqtikLsCsOWtDUJOW6Tuk9P-bV1V3MhYd3ghrQuEmfs,286
|
172
172
|
khoj/interface/compiled/_next/static/chunks/pages/_error-cf5ca766ac8f493f.js,sha256=w_It3VzKT8O1M3CrJ_hZHsaU7M7dq3EAaVG8KvJ-fhU,253
|
173
173
|
khoj/interface/compiled/_next/static/css/089de1d8526b96e9.css,sha256=sjpmNlk7H2uKEYK9_DFccNq9J8V9uR799cS0yT-E7EI,4041
|
174
|
-
khoj/interface/compiled/_next/static/css/
|
174
|
+
khoj/interface/compiled/_next/static/css/0f0e5dbeda138161.css,sha256=N5TecMg0L184wfBEO2To7pn81iOSZYcbuBWONYf2Cqg,791
|
175
175
|
khoj/interface/compiled/_next/static/css/4e4e6a4a1c920d06.css,sha256=v52KOOFVYsJajTXsn7R2-B8ZU1dDPdmyN5J2a1d2dwk,1696
|
176
176
|
khoj/interface/compiled/_next/static/css/8d02837c730f8d13.css,sha256=X-8Cgr8Eo_eLEoke3h5QSiUkMLsSFrGh1VEa-RCkvIM,3072931
|
177
|
-
khoj/interface/compiled/_next/static/css/8e6a3ca11a60b189.css,sha256=KR0nA1LdEJ-BwslNVZPATvBu6pCWJMMDyqAW5fljCkI,5858
|
178
177
|
khoj/interface/compiled/_next/static/css/9c164d9727dd8092.css,sha256=89nMwZaML1CQfnzEPwbi_6vfauV5D8QwIiJBfsg3Hc8,30651
|
178
|
+
khoj/interface/compiled/_next/static/css/ba1602594aa7828f.css,sha256=OVzxymGieBlcMF8MWMlJbJxWzQPXBO8AMaooQ5DW-rg,5232
|
179
179
|
khoj/interface/compiled/_next/static/css/dac88c17aaee5fcf.css,sha256=ZfRdWDktxctcmm_P9OmtA46MT7pPYRo2oHIQBt3DLQ0,401
|
180
180
|
khoj/interface/compiled/_next/static/css/df4b47a2d0d85eae.css,sha256=EsBNJADFxaffgFa5iSYHPswGl9RAN9UdK3jD3d_W9Hs,1736
|
181
181
|
khoj/interface/compiled/_next/static/css/e4eb883b5265d372.css,sha256=6LaW-lQ_ZpgOJNWYwU1Q1egXZ1aqJDEuRj66oRCIU_E,17748
|
@@ -252,8 +252,10 @@ khoj/interface/compiled/_next/static/media/flags.3afdda2f.webp,sha256=M2AW_HLpBn
|
|
252
252
|
khoj/interface/compiled/_next/static/media/flags@2x.5fbe9fc1.webp,sha256=BBeRPBZkxY3-aKkMnYv5TSkxmbeMbyUH4VRIPfrWg1E,137406
|
253
253
|
khoj/interface/compiled/_next/static/media/globe.98e105ca.webp,sha256=g3ofb8-W9GM75zIhlvQhaS8I2py9TtrovOKR3_7Jf04,514
|
254
254
|
khoj/interface/compiled/_next/static/media/globe@2x.974df6f8.webp,sha256=I_N7Yke3IOoS-0CC6XD8o0IUWG8PdPbrHmf6lpgWlZY,1380
|
255
|
-
khoj/interface/compiled/
|
256
|
-
khoj/interface/compiled/
|
255
|
+
khoj/interface/compiled/_next/static/rLqb7_fsvUwn3e4S_7dQR/_buildManifest.js,sha256=f2_nYnw25hHWQJ-39Lf5OH1u6kgdbOInyfplqgjvAV4,224
|
256
|
+
khoj/interface/compiled/_next/static/rLqb7_fsvUwn3e4S_7dQR/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
257
|
+
khoj/interface/compiled/agents/index.html,sha256=OXYgcmmdqwqHe9Qb7HghCGokXQSwdEzODrFkl_o4yrQ,16944
|
258
|
+
khoj/interface/compiled/agents/index.txt,sha256=3XsoTl3pyYRu7cBpkIcEiD7DP5JBqvZoL1VLivSxhQw,7477
|
257
259
|
khoj/interface/compiled/assets/icons/khoj_lantern.ico,sha256=eggu-B_v3z1R53EjOFhIqqPnICBGdoaw1xnc0NrzHck,174144
|
258
260
|
khoj/interface/compiled/assets/icons/khoj_lantern.svg,sha256=I_8XP5X84gEOoCRhCRKOQn_GKZrz3SUBXct7WxHvY7c,8767
|
259
261
|
khoj/interface/compiled/assets/icons/khoj_lantern_1200x1200.png,sha256=xDx0bbD-WMflgg8zck9oPIIuTIvywtuED2k7CjSQS4w,66194
|
@@ -268,16 +270,16 @@ khoj/interface/compiled/assets/samples/desktop-remember-plan-sample.png,sha256=i
|
|
268
270
|
khoj/interface/compiled/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
|
269
271
|
khoj/interface/compiled/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
|
270
272
|
khoj/interface/compiled/assets/samples/phone-remember-plan-sample.png,sha256=Ma3blirRmq3X4oYSsDbbT7MDn29rymDrjwmUfA9BMuM,236285
|
271
|
-
khoj/interface/compiled/automations/index.html,sha256=
|
272
|
-
khoj/interface/compiled/automations/index.txt,sha256=
|
273
|
-
khoj/interface/compiled/chat/index.html,sha256=
|
274
|
-
khoj/interface/compiled/chat/index.txt,sha256=
|
275
|
-
khoj/interface/compiled/search/index.html,sha256=
|
276
|
-
khoj/interface/compiled/search/index.txt,sha256=
|
277
|
-
khoj/interface/compiled/settings/index.html,sha256=
|
278
|
-
khoj/interface/compiled/settings/index.txt,sha256=
|
279
|
-
khoj/interface/compiled/share/chat/index.html,sha256=
|
280
|
-
khoj/interface/compiled/share/chat/index.txt,sha256=
|
273
|
+
khoj/interface/compiled/automations/index.html,sha256=hRg0M8Yqbr9Xwu9df_yZbdWHXBIadn8vBLk5OTDvyjg,52520
|
274
|
+
khoj/interface/compiled/automations/index.txt,sha256=Wxi0Bv60d0hJS2gYOkxqlOSYznLoMblmd55OROICVcs,7644
|
275
|
+
khoj/interface/compiled/chat/index.html,sha256=2ugtPiQSoCaiqAT6x-6uFYELjLVc8a0cQzYgwjgphxs,17782
|
276
|
+
khoj/interface/compiled/chat/index.txt,sha256=9uET5U-kglQU5b11pcdwMmHKfs6obCdNPP2EZ--FiTk,7882
|
277
|
+
khoj/interface/compiled/search/index.html,sha256=7zl3eXLq9-6eKttzDQc34cQhkdyKaY31LLdIaHkHdWY,50694
|
278
|
+
khoj/interface/compiled/search/index.txt,sha256=nugga_4qhY88P0Cu4nGvJsuXQWBP2ZvR6CpcFpFdEAA,6544
|
279
|
+
khoj/interface/compiled/settings/index.html,sha256=SWcVv62xwy0sNXVcmPPzggn7CS5ROHpOmFpLo0K3Jx8,17438
|
280
|
+
khoj/interface/compiled/settings/index.txt,sha256=EDq-0UKoUjez7yt9l4yHY2rO7YQC-28WjOvKANtK-D0,7777
|
281
|
+
khoj/interface/compiled/share/chat/index.html,sha256=DnSNKVnn1cXxseOU34LNwMayDMzbMYyIs_nt4vqc7EE,18621
|
282
|
+
khoj/interface/compiled/share/chat/index.txt,sha256=2zYHv3e1RP6_w6LQPfJ2hbejHyRjGPJLjo0-P_BzzLg,8440
|
281
283
|
khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
|
282
284
|
khoj/interface/email/magic_link.html,sha256=372ESbTPKM9acekuZcOIKOw6kBl-KikFg_L9MOHqJkg,2094
|
283
285
|
khoj/interface/email/task.html,sha256=tY7a0gzVeQ2lSQNu7WyXR_s7VYeWTrxWEj1iHVuoVE4,2813
|
@@ -309,7 +311,7 @@ khoj/migrations/migrate_processor_config_openai.py,sha256=FfeUU2JPQMtlr1iYoc4Cer
|
|
309
311
|
khoj/migrations/migrate_server_pg.py,sha256=QNfwqr7MDOg3b0-J0VNUicoc4Bjfi4Q9UTb_GZC_iW0,4864
|
310
312
|
khoj/migrations/migrate_version.py,sha256=6CTsLuxiLnFVF8A7CjsIz3PcnJd8fAOZeIx6tTu6Vgg,569
|
311
313
|
khoj/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
312
|
-
khoj/processor/embeddings.py,sha256
|
314
|
+
khoj/processor/embeddings.py,sha256=-znB8-oL9mGGQLAJdOL9OPNs4Zq9HnMIAQbAMRi38lo,6636
|
313
315
|
khoj/processor/content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
314
316
|
khoj/processor/content/text_to_entries.py,sha256=HL7o2g8OyS5QJEm0C6F4Jebj0MPAa8CCYFg8XUb6mrc,14540
|
315
317
|
khoj/processor/content/docx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -345,14 +347,14 @@ khoj/processor/conversation/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
345
347
|
khoj/processor/conversation/openai/gpt.py,sha256=FFiMevjK_EiryjsZcYzpYMA-o3sgQpC87x1c6nKek8Y,8515
|
346
348
|
khoj/processor/conversation/openai/utils.py,sha256=AcKhit8UBQ0GqEGa6x4w2EK7o7ZWqZZwy2p_94vjTf4,8043
|
347
349
|
khoj/processor/conversation/openai/whisper.py,sha256=zoEeK1LNCg_tzP4xzYi5vRPzNPGuDGzpkrkG7d1LUn4,447
|
348
|
-
khoj/processor/image/generate.py,sha256=
|
350
|
+
khoj/processor/image/generate.py,sha256=YdyRsZP-jqep8cJlJhp8_KP-ZH5RcllAI-mp-GMks04,8954
|
349
351
|
khoj/processor/speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
350
352
|
khoj/processor/speech/text_to_speech.py,sha256=Q7sapi5Hv6woXOumtrGqR0t6izZrFBkWXFOGrHM6dJ4,1929
|
351
353
|
khoj/processor/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
352
354
|
khoj/processor/tools/online_search.py,sha256=WlxWY05MRkB_-sh0PiKsrFAja3hm6XbP6hzOnGkXFsU,19067
|
353
355
|
khoj/processor/tools/run_code.py,sha256=pa8slKYU21yDxBxK2CoQTEwHxZIANA_-bI8GhEDjvxc,6547
|
354
356
|
khoj/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
355
|
-
khoj/routers/api.py,sha256=
|
357
|
+
khoj/routers/api.py,sha256=VbB38oU-dnaNpUhZPLlPmdksOH_l6z_F3Lza7NPSN6Q,29113
|
356
358
|
khoj/routers/api_agents.py,sha256=d6i2MQ6cxU5KjeH6MXTM6k2MOQcRdizV-OhCB4PiJ8s,9675
|
357
359
|
khoj/routers/api_chat.py,sha256=35xrlJJgOaMVQEjVXUYlWITBTDWn04xNe2bOq9IGCPw,49572
|
358
360
|
khoj/routers/api_content.py,sha256=WNlB6lVwRW8hHDthO2HypbpPvqrqt9rTU5oMRNknpMU,21070
|
@@ -380,14 +382,14 @@ khoj/utils/config.py,sha256=aiOkH0je8A30DAGYTHMRePrgJonFv_i07_7CdhhhcdA,1805
|
|
380
382
|
khoj/utils/constants.py,sha256=2wSSwND3z6MTl7nF3VVaKVQPZhqRaXDdRmFl_Th045k,2135
|
381
383
|
khoj/utils/fs_syncer.py,sha256=5nqwAZqRk3Nwhkwd8y4IomTPZQmW32GwAqyMzal5KyY,9996
|
382
384
|
khoj/utils/helpers.py,sha256=nt1Ic9dsMlu6Lrpw2wOZ8oNB6fNeBRoeV5JxgN0R9MU,23961
|
383
|
-
khoj/utils/initialization.py,sha256=
|
385
|
+
khoj/utils/initialization.py,sha256=taKNGDWWI7Pmbff8MvMrKFd0ilvcBzcIN8V6W1nqrf8,13552
|
384
386
|
khoj/utils/jsonl.py,sha256=0Ac_COqr8sLCXntzZtquxuCEVRM2c3yKeDRGhgOBRpQ,1192
|
385
387
|
khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
|
386
388
|
khoj/utils/rawconfig.py,sha256=wfZTk-Aifb-_q9Yh-NPfh9LlLTioYG-yBqrasgvo4pc,5045
|
387
389
|
khoj/utils/state.py,sha256=axjZhnby8L3bY-N1VVoWgBH1RpFGK6U3_ZeNo1Kt7hs,1679
|
388
390
|
khoj/utils/yaml.py,sha256=qy1Tkc61rDMesBw_Cyx2vOR6H-Hngcsm5kYfjwQBwkE,1543
|
389
|
-
khoj-1.33.3.
|
390
|
-
khoj-1.33.3.
|
391
|
-
khoj-1.33.3.
|
392
|
-
khoj-1.33.3.
|
393
|
-
khoj-1.33.3.
|
391
|
+
khoj-1.33.3.dev39.dist-info/METADATA,sha256=Xa6n7IIsSzc6lzZjVEi5yf9MCz0buFlBy4s-97HQ1XY,7745
|
392
|
+
khoj-1.33.3.dev39.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
393
|
+
khoj-1.33.3.dev39.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
394
|
+
khoj-1.33.3.dev39.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
395
|
+
khoj-1.33.3.dev39.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[3317,8459,244,7138],{63521:function(){}},function(n){n.O(0,[2971,2117,1744],function(){return n(n.s=63521)}),_N_E=n.O()}]);
|
@@ -1 +0,0 @@
|
|
1
|
-
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[244,8459,3317,7138],{63521:function(){}},function(n){n.O(0,[2971,2117,1744],function(){return n(n.s=63521)}),_N_E=n.O()}]);
|
@@ -1 +0,0 @@
|
|
1
|
-
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[7138,8459,3317,244],{63521:function(){}},function(n){n.O(0,[2971,2117,1744],function(){return n(n.s=63521)}),_N_E=n.O()}]);
|
@@ -1 +0,0 @@
|
|
1
|
-
div.search_searchLayout__fP3m0{display:grid;grid-template-columns:1fr;gap:1rem;height:100%}@media screen and (max-width:768px){div.search_searchLayout__fP3m0{gap:0}}
|
@@ -1 +0,0 @@
|
|
1
|
-
div.agents_titleBar__FzYbY{padding:16px 0;text-align:left}.agents_agentPersonality__o0Ysz p{white-space:inherit;overflow:hidden;height:77px;line-height:1.5}div.agents_agentPersonality__o0Ysz{text-align:left;grid-column:span 3;overflow:hidden}div.agents_pageLayout__gR3S3{max-width:60vw;margin:auto auto 2rem}button.agents_infoButton__NqI7E{border:none;background-color:transparent!important;text-align:left;font-family:inherit;font-size:medium}div.agents_agentList__XVx4A{display:grid;gap:20px;padding-top:30px;margin-right:auto;grid-auto-flow:row;grid-template-columns:1fr 1fr;margin-left:auto}@media only screen and (max-width:768px){div.agents_agentList__XVx4A{width:100%;padding:0;margin-right:auto;margin-left:auto;grid-template-columns:1fr}div.agents_pageLayout__gR3S3{max-width:90vw}}.loginPrompt_gsiMaterialButton__8QVFH{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-appearance:none;background-image:none;border-radius:20px;box-sizing:border-box;color:#1f1f1f;cursor:pointer;font-family:Roboto,arial,sans-serif;font-size:14px;height:40px;letter-spacing:.25px;outline:none;overflow:hidden;padding:0;position:relative;text-align:center;transition:background-color .218s,border-color .218s,box-shadow .218s;vertical-align:middle;white-space:nowrap;width:40px;max-width:400px;min-width:-moz-min-content;min-width:min-content}.loginPrompt_gsiMaterialButton__8QVFH .loginPrompt_gsiMaterialButtonIcon__6TSC5{height:100%;min-width:20px;width:100%;margin:0;padding:9px}.loginPrompt_gsiMaterialButton__8QVFH .loginPrompt_gsiMaterialButtonContentWrapper__9tahB{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;height:100%;justify-content:space-between;position:relative;width:100%}.loginPrompt_gsiMaterialButton__8QVFH .loginPrompt_gsiMaterialButtonContents__3_YcB{flex-grow:1;font-family:Roboto,arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.loginPrompt_gsiMaterialButton__8QVFH .loginPrompt_gsiMaterialButtonState__CDGQm{transition:opacity .218s;bottom:0;left:0;opacity:0;position:absolute;right:0;top:0}.loginPrompt_gsiMaterialButton__8QVFH:disabled{cursor:default;background-color:#ffffff61;border-color:#1f1f1f1f}.loginPrompt_gsiMaterialButton__8QVFH:disabled .loginPrompt_gsiMaterialButtonContents__3_YcB,.loginPrompt_gsiMaterialButton__8QVFH:disabled .loginPrompt_gsiMaterialButtonIcon__6TSC5{opacity:38%}.loginPrompt_gsiMaterialButton__8QVFH:not(:disabled):active .loginPrompt_gsiMaterialButton-State__mAfCZ,.loginPrompt_gsiMaterialButton__8QVFH:not(:disabled):focus .loginPrompt_gsiMaterialButtonState__CDGQm{background-color:#303030;opacity:12%}.loginPrompt_gsiMaterialButton__8QVFH:not(:disabled):hover{box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15)}.loginPrompt_gsiMaterialButton__8QVFH:not(:disabled):hover .loginPrompt_gsiMaterialButtonState__CDGQm{background-color:#303030;opacity:8%}.agentCard_agentPersonality__MmRlN p{white-space:inherit;overflow:hidden;height:77px;line-height:1.5}div.agentCard_agentPersonality__MmRlN{text-align:left;grid-column:span 3;overflow:hidden}button.agentCard_infoButton__heh_w{border:none;background-color:transparent!important;text-align:left;font-family:inherit;font-size:medium}div.sidePanel_session__EeNjH{padding:.5rem;margin-bottom:.25rem;border-radius:.5rem;cursor:pointer;max-width:14rem;font-size:medium;display:grid;grid-template-columns:minmax(auto,400px) 1fr;gap:0}div.sidePanel_compressed__CUgIn{grid-template-columns:minmax(12rem,100%) 1fr 1fr}div.sidePanel_sessionHover__cf_VO,div.sidePanel_session__EeNjH:hover{background-color:hsla(var(--popover))}div.sidePanel_session__EeNjH:hover{color:hsla(var(--popover-foreground))}div.sidePanel_session__EeNjH a{text-decoration:none}button.sidePanel_button__NzdN_{border:none;outline:none;background-color:transparent;cursor:pointer;color:var(--main-text-color);width:24px}button.sidePanel_showMoreButton__nDt4Z{border-radius:.5rem;padding:8px}div.sidePanel_panel__9offQ{display:flex;flex-direction:column;padding:1rem;overflow-y:auto;max-width:auto;transition:background-color .5s}div.sidePanel_expanded__aHnYV{gap:1rem;background-color:hsla(var(--muted));height:100%}div.sidePanel_collapsed__ewO3e{display:grid;grid-template-columns:1fr;height:-moz-fit-content;height:fit-content;padding:1rem 0 0 1rem}p.sidePanel_session__EeNjH{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-align:left;font-size:small}p.sidePanel_compressed__CUgIn{width:12rem}p.sidePanel_expanded__aHnYV{max-width:20rem}div.sidePanel_header__NCT_v{display:grid;grid-template-columns:1fr auto}div.sidePanel_profile__pfAJU{display:grid;grid-template-columns:auto 1fr;gap:1rem;align-items:center;margin-top:auto}div.sidePanel_panelWrapper__cDMvb{display:grid;grid-template-rows:1fr auto auto;height:100%}div.sidePanel_modalSessionsList___u3aa{position:fixed;top:0;left:0;width:100%;height:100%;background-color:hsla(var(--frosted-background-color));z-index:1;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}div.sidePanel_modalSessionsList___u3aa div.sidePanel_content__z60YO{max-width:80%;max-height:80%;background-color:hsla(var(--frosted-background-color));overflow:auto;padding:20px;border-radius:10px}div.sidePanel_modalSessionsList___u3aa div.sidePanel_session__EeNjH{max-width:100%;text-overflow:ellipsis}@media screen and (max-width:768px){div.sidePanel_panel__9offQ{padding:.25rem;width:100%}div.sidePanel_expanded__aHnYV{z-index:1}div.sidePanel_singleReference__vmXZr{padding:4px}div.sidePanel_panelWrapper__cDMvb{width:100%;padding:0 1rem}div.sidePanel_session__EeNjH.sidePanel_compressed__CUgIn{max-width:100%;display:grid;grid-template-columns:70vw auto;justify-content:space-between}div.sidePanel_session__EeNjH{max-width:100%;grid-template-columns:minmax(auto,70vw) 1fr}}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|