khoj 1.16.1.dev15__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/__init__.py +0 -0
- khoj/app/README.md +94 -0
- khoj/app/__init__.py +0 -0
- khoj/app/asgi.py +16 -0
- khoj/app/settings.py +192 -0
- khoj/app/urls.py +25 -0
- khoj/configure.py +424 -0
- khoj/database/__init__.py +0 -0
- khoj/database/adapters/__init__.py +1234 -0
- khoj/database/admin.py +290 -0
- khoj/database/apps.py +6 -0
- khoj/database/management/__init__.py +0 -0
- khoj/database/management/commands/__init__.py +0 -0
- khoj/database/management/commands/change_generated_images_url.py +61 -0
- khoj/database/management/commands/convert_images_png_to_webp.py +99 -0
- khoj/database/migrations/0001_khojuser.py +98 -0
- khoj/database/migrations/0002_googleuser.py +32 -0
- khoj/database/migrations/0003_vector_extension.py +10 -0
- khoj/database/migrations/0004_content_types_and_more.py +181 -0
- khoj/database/migrations/0005_embeddings_corpus_id.py +19 -0
- khoj/database/migrations/0006_embeddingsdates.py +33 -0
- khoj/database/migrations/0007_add_conversation.py +27 -0
- khoj/database/migrations/0008_alter_conversation_conversation_log.py +17 -0
- khoj/database/migrations/0009_khojapiuser.py +24 -0
- khoj/database/migrations/0010_chatmodeloptions_and_more.py +83 -0
- khoj/database/migrations/0010_rename_embeddings_entry_and_more.py +30 -0
- khoj/database/migrations/0011_merge_20231102_0138.py +14 -0
- khoj/database/migrations/0012_entry_file_source.py +21 -0
- khoj/database/migrations/0013_subscription.py +37 -0
- khoj/database/migrations/0014_alter_googleuser_picture.py +17 -0
- khoj/database/migrations/0015_alter_subscription_user.py +21 -0
- khoj/database/migrations/0016_alter_subscription_renewal_date.py +17 -0
- khoj/database/migrations/0017_searchmodel.py +32 -0
- khoj/database/migrations/0018_searchmodelconfig_delete_searchmodel.py +30 -0
- khoj/database/migrations/0019_alter_googleuser_family_name_and_more.py +27 -0
- khoj/database/migrations/0020_reflectivequestion.py +36 -0
- khoj/database/migrations/0021_speechtotextmodeloptions_and_more.py +42 -0
- khoj/database/migrations/0022_texttoimagemodelconfig.py +25 -0
- khoj/database/migrations/0023_usersearchmodelconfig.py +33 -0
- khoj/database/migrations/0024_alter_entry_embeddings.py +18 -0
- khoj/database/migrations/0025_clientapplication_khojuser_phone_number_and_more.py +46 -0
- khoj/database/migrations/0025_searchmodelconfig_embeddings_inference_endpoint_and_more.py +22 -0
- khoj/database/migrations/0026_searchmodelconfig_cross_encoder_inference_endpoint_and_more.py +22 -0
- khoj/database/migrations/0027_merge_20240118_1324.py +13 -0
- khoj/database/migrations/0028_khojuser_verified_phone_number.py +17 -0
- khoj/database/migrations/0029_userrequests.py +27 -0
- khoj/database/migrations/0030_conversation_slug_and_title.py +38 -0
- khoj/database/migrations/0031_agent_conversation_agent.py +53 -0
- khoj/database/migrations/0031_alter_googleuser_locale.py +30 -0
- khoj/database/migrations/0032_merge_20240322_0427.py +14 -0
- khoj/database/migrations/0033_rename_tuning_agent_personality.py +17 -0
- khoj/database/migrations/0034_alter_chatmodeloptions_chat_model.py +32 -0
- khoj/database/migrations/0035_processlock.py +26 -0
- khoj/database/migrations/0036_alter_processlock_name.py +19 -0
- khoj/database/migrations/0036_delete_offlinechatprocessorconversationconfig.py +15 -0
- khoj/database/migrations/0036_publicconversation.py +42 -0
- khoj/database/migrations/0037_chatmodeloptions_openai_config_and_more.py +51 -0
- khoj/database/migrations/0037_searchmodelconfig_bi_encoder_docs_encode_config_and_more.py +32 -0
- khoj/database/migrations/0038_merge_20240425_0857.py +14 -0
- khoj/database/migrations/0038_merge_20240426_1640.py +12 -0
- khoj/database/migrations/0039_merge_20240501_0301.py +12 -0
- khoj/database/migrations/0040_alter_processlock_name.py +26 -0
- khoj/database/migrations/0040_merge_20240504_1010.py +14 -0
- khoj/database/migrations/0041_merge_20240505_1234.py +14 -0
- khoj/database/migrations/0042_serverchatsettings.py +46 -0
- khoj/database/migrations/0043_alter_chatmodeloptions_model_type.py +21 -0
- khoj/database/migrations/0044_conversation_file_filters.py +17 -0
- khoj/database/migrations/0045_fileobject.py +37 -0
- khoj/database/migrations/0046_khojuser_email_verification_code_and_more.py +22 -0
- khoj/database/migrations/0047_alter_entry_file_type.py +31 -0
- khoj/database/migrations/0048_voicemodeloption_uservoicemodelconfig.py +52 -0
- khoj/database/migrations/0049_datastore.py +38 -0
- khoj/database/migrations/0049_texttoimagemodelconfig_api_key_and_more.py +58 -0
- khoj/database/migrations/0050_alter_processlock_name.py +25 -0
- khoj/database/migrations/0051_merge_20240702_1220.py +14 -0
- khoj/database/migrations/0052_alter_searchmodelconfig_bi_encoder_docs_encode_config_and_more.py +27 -0
- khoj/database/migrations/__init__.py +0 -0
- khoj/database/models/__init__.py +402 -0
- khoj/database/tests.py +3 -0
- khoj/interface/email/feedback.html +34 -0
- khoj/interface/email/magic_link.html +17 -0
- khoj/interface/email/task.html +40 -0
- khoj/interface/email/welcome.html +61 -0
- khoj/interface/web/404.html +56 -0
- khoj/interface/web/agent.html +312 -0
- khoj/interface/web/agents.html +276 -0
- khoj/interface/web/assets/icons/agents.svg +6 -0
- khoj/interface/web/assets/icons/automation.svg +37 -0
- khoj/interface/web/assets/icons/cancel.svg +3 -0
- khoj/interface/web/assets/icons/chat.svg +24 -0
- khoj/interface/web/assets/icons/collapse.svg +17 -0
- khoj/interface/web/assets/icons/computer.png +0 -0
- khoj/interface/web/assets/icons/confirm-icon.svg +1 -0
- khoj/interface/web/assets/icons/copy-button-success.svg +6 -0
- khoj/interface/web/assets/icons/copy-button.svg +5 -0
- khoj/interface/web/assets/icons/credit-card.png +0 -0
- khoj/interface/web/assets/icons/delete.svg +26 -0
- khoj/interface/web/assets/icons/docx.svg +7 -0
- khoj/interface/web/assets/icons/edit.svg +4 -0
- khoj/interface/web/assets/icons/favicon-128x128.ico +0 -0
- khoj/interface/web/assets/icons/favicon-128x128.png +0 -0
- khoj/interface/web/assets/icons/favicon-256x256.png +0 -0
- khoj/interface/web/assets/icons/favicon.icns +0 -0
- khoj/interface/web/assets/icons/github.svg +1 -0
- khoj/interface/web/assets/icons/key.svg +4 -0
- khoj/interface/web/assets/icons/khoj-logo-sideways-200.png +0 -0
- khoj/interface/web/assets/icons/khoj-logo-sideways-500.png +0 -0
- khoj/interface/web/assets/icons/khoj-logo-sideways.svg +5385 -0
- khoj/interface/web/assets/icons/logotype.svg +1 -0
- khoj/interface/web/assets/icons/markdown.svg +1 -0
- khoj/interface/web/assets/icons/new.svg +23 -0
- khoj/interface/web/assets/icons/notion.svg +4 -0
- khoj/interface/web/assets/icons/openai-logomark.svg +1 -0
- khoj/interface/web/assets/icons/org.svg +1 -0
- khoj/interface/web/assets/icons/pdf.svg +23 -0
- khoj/interface/web/assets/icons/pencil-edit.svg +5 -0
- khoj/interface/web/assets/icons/plaintext.svg +1 -0
- khoj/interface/web/assets/icons/question-mark-icon.svg +1 -0
- khoj/interface/web/assets/icons/search.svg +25 -0
- khoj/interface/web/assets/icons/send.svg +1 -0
- khoj/interface/web/assets/icons/share.svg +8 -0
- khoj/interface/web/assets/icons/speaker.svg +4 -0
- khoj/interface/web/assets/icons/stop-solid.svg +37 -0
- khoj/interface/web/assets/icons/sync.svg +4 -0
- khoj/interface/web/assets/icons/thumbs-down-svgrepo-com.svg +6 -0
- khoj/interface/web/assets/icons/thumbs-up-svgrepo-com.svg +6 -0
- khoj/interface/web/assets/icons/user-silhouette.svg +4 -0
- khoj/interface/web/assets/icons/voice.svg +8 -0
- khoj/interface/web/assets/icons/web.svg +2 -0
- khoj/interface/web/assets/icons/whatsapp.svg +17 -0
- khoj/interface/web/assets/khoj.css +237 -0
- khoj/interface/web/assets/markdown-it.min.js +8476 -0
- khoj/interface/web/assets/natural-cron.min.js +1 -0
- khoj/interface/web/assets/org.min.js +1823 -0
- khoj/interface/web/assets/pico.min.css +5 -0
- khoj/interface/web/assets/purify.min.js +3 -0
- khoj/interface/web/assets/samples/desktop-browse-draw-sample.png +0 -0
- khoj/interface/web/assets/samples/desktop-plain-chat-sample.png +0 -0
- khoj/interface/web/assets/samples/desktop-remember-plan-sample.png +0 -0
- khoj/interface/web/assets/samples/phone-browse-draw-sample.png +0 -0
- khoj/interface/web/assets/samples/phone-plain-chat-sample.png +0 -0
- khoj/interface/web/assets/samples/phone-remember-plan-sample.png +0 -0
- khoj/interface/web/assets/utils.js +33 -0
- khoj/interface/web/base_config.html +445 -0
- khoj/interface/web/chat.html +3546 -0
- khoj/interface/web/config.html +1011 -0
- khoj/interface/web/config_automation.html +1103 -0
- khoj/interface/web/content_source_computer_input.html +139 -0
- khoj/interface/web/content_source_github_input.html +216 -0
- khoj/interface/web/content_source_notion_input.html +94 -0
- khoj/interface/web/khoj.webmanifest +51 -0
- khoj/interface/web/login.html +219 -0
- khoj/interface/web/public_conversation.html +2006 -0
- khoj/interface/web/search.html +470 -0
- khoj/interface/web/utils.html +48 -0
- khoj/main.py +241 -0
- khoj/manage.py +22 -0
- khoj/migrations/__init__.py +0 -0
- khoj/migrations/migrate_offline_chat_default_model.py +69 -0
- khoj/migrations/migrate_offline_chat_default_model_2.py +71 -0
- khoj/migrations/migrate_offline_chat_schema.py +83 -0
- khoj/migrations/migrate_offline_model.py +29 -0
- khoj/migrations/migrate_processor_config_openai.py +67 -0
- khoj/migrations/migrate_server_pg.py +138 -0
- khoj/migrations/migrate_version.py +17 -0
- khoj/processor/__init__.py +0 -0
- khoj/processor/content/__init__.py +0 -0
- khoj/processor/content/docx/__init__.py +0 -0
- khoj/processor/content/docx/docx_to_entries.py +110 -0
- khoj/processor/content/github/__init__.py +0 -0
- khoj/processor/content/github/github_to_entries.py +224 -0
- khoj/processor/content/images/__init__.py +0 -0
- khoj/processor/content/images/image_to_entries.py +118 -0
- khoj/processor/content/markdown/__init__.py +0 -0
- khoj/processor/content/markdown/markdown_to_entries.py +165 -0
- khoj/processor/content/notion/notion_to_entries.py +260 -0
- khoj/processor/content/org_mode/__init__.py +0 -0
- khoj/processor/content/org_mode/org_to_entries.py +231 -0
- khoj/processor/content/org_mode/orgnode.py +532 -0
- khoj/processor/content/pdf/__init__.py +0 -0
- khoj/processor/content/pdf/pdf_to_entries.py +116 -0
- khoj/processor/content/plaintext/__init__.py +0 -0
- khoj/processor/content/plaintext/plaintext_to_entries.py +122 -0
- khoj/processor/content/text_to_entries.py +297 -0
- khoj/processor/conversation/__init__.py +0 -0
- khoj/processor/conversation/anthropic/__init__.py +0 -0
- khoj/processor/conversation/anthropic/anthropic_chat.py +206 -0
- khoj/processor/conversation/anthropic/utils.py +114 -0
- khoj/processor/conversation/offline/__init__.py +0 -0
- khoj/processor/conversation/offline/chat_model.py +231 -0
- khoj/processor/conversation/offline/utils.py +78 -0
- khoj/processor/conversation/offline/whisper.py +15 -0
- khoj/processor/conversation/openai/__init__.py +0 -0
- khoj/processor/conversation/openai/gpt.py +187 -0
- khoj/processor/conversation/openai/utils.py +129 -0
- khoj/processor/conversation/openai/whisper.py +13 -0
- khoj/processor/conversation/prompts.py +758 -0
- khoj/processor/conversation/utils.py +262 -0
- khoj/processor/embeddings.py +117 -0
- khoj/processor/speech/__init__.py +0 -0
- khoj/processor/speech/text_to_speech.py +51 -0
- khoj/processor/tools/__init__.py +0 -0
- khoj/processor/tools/online_search.py +225 -0
- khoj/routers/__init__.py +0 -0
- khoj/routers/api.py +626 -0
- khoj/routers/api_agents.py +43 -0
- khoj/routers/api_chat.py +1180 -0
- khoj/routers/api_config.py +434 -0
- khoj/routers/api_phone.py +86 -0
- khoj/routers/auth.py +181 -0
- khoj/routers/email.py +133 -0
- khoj/routers/helpers.py +1188 -0
- khoj/routers/indexer.py +349 -0
- khoj/routers/notion.py +91 -0
- khoj/routers/storage.py +35 -0
- khoj/routers/subscription.py +104 -0
- khoj/routers/twilio.py +36 -0
- khoj/routers/web_client.py +471 -0
- khoj/search_filter/__init__.py +0 -0
- khoj/search_filter/base_filter.py +15 -0
- khoj/search_filter/date_filter.py +217 -0
- khoj/search_filter/file_filter.py +30 -0
- khoj/search_filter/word_filter.py +29 -0
- khoj/search_type/__init__.py +0 -0
- khoj/search_type/text_search.py +241 -0
- khoj/utils/__init__.py +0 -0
- khoj/utils/cli.py +93 -0
- khoj/utils/config.py +81 -0
- khoj/utils/constants.py +24 -0
- khoj/utils/fs_syncer.py +249 -0
- khoj/utils/helpers.py +418 -0
- khoj/utils/initialization.py +146 -0
- khoj/utils/jsonl.py +43 -0
- khoj/utils/models.py +47 -0
- khoj/utils/rawconfig.py +160 -0
- khoj/utils/state.py +46 -0
- khoj/utils/yaml.py +43 -0
- khoj-1.16.1.dev15.dist-info/METADATA +178 -0
- khoj-1.16.1.dev15.dist-info/RECORD +242 -0
- khoj-1.16.1.dev15.dist-info/WHEEL +4 -0
- khoj-1.16.1.dev15.dist-info/entry_points.txt +2 -0
- khoj-1.16.1.dev15.dist-info/licenses/LICENSE +661 -0
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
khoj/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
khoj/configure.py,sha256=C3F3g2rbBKnXLeHvQvak3Te2XkaQOXL6x8-iE_u9PxQ,17319
|
|
3
|
+
khoj/main.py,sha256=58Rssq2H5AM69dA2UyGHye3vPAMp5RRS6xLcGkB_G_w,8147
|
|
4
|
+
khoj/manage.py,sha256=njo6uLxGaMamTPesHjFEOIBJbpIUrz39e1V59zKj544,664
|
|
5
|
+
khoj/app/README.md,sha256=PSQjKCdpU2hgszLVF8yEhV7TWhbEEb-1aYLTRuuAsKI,2832
|
|
6
|
+
khoj/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
khoj/app/asgi.py,sha256=soh3C1xazlgHt_bDgKzrfzo2TKXbNYJsckcXNEgTip8,388
|
|
8
|
+
khoj/app/settings.py,sha256=XHa7UaRYthdCI7miQyxMQyAD3Ecqdd0Ytg5xPaP1Wvo,6128
|
|
9
|
+
khoj/app/urls.py,sha256=7ECnusoAPAfbO_H_b5FUzYGvnb4LLdWaRDyKNvYuBvg,869
|
|
10
|
+
khoj/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
khoj/database/admin.py,sha256=P1zguxSlqnpCvF7CcF8wS9tGCsO3SNDnl6-C_9eyYFA,8814
|
|
12
|
+
khoj/database/apps.py,sha256=pM4tkX5Odw4YW_hLLKK8Nd5kqGddf1en0oMCea44RZw,153
|
|
13
|
+
khoj/database/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
|
|
14
|
+
khoj/database/adapters/__init__.py,sha256=RwYIWf8r7VFjF0HDzgevinO_msnBN6TT-mIanLK_r3Y,47740
|
|
15
|
+
khoj/database/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
khoj/database/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
khoj/database/management/commands/change_generated_images_url.py,sha256=w52FwRlyOL4YRpp9O6jJUjSIuGLxVhaS2w1D7gtQgOE,2644
|
|
18
|
+
khoj/database/management/commands/convert_images_png_to_webp.py,sha256=C74kEGa_BYkH0dIwtSUinU9qJFCFoVdo3HJRD1eLFuc,4630
|
|
19
|
+
khoj/database/migrations/0001_khojuser.py,sha256=1AjGQ4cOX8rUUMLOsKWFSUlQvO4nklKQB-BILSjiric,4077
|
|
20
|
+
khoj/database/migrations/0002_googleuser.py,sha256=m36GASo4WIvtOBHN4fJlc1B0h7guOnsZsGziYV7Im1M,1195
|
|
21
|
+
khoj/database/migrations/0003_vector_extension.py,sha256=FR95seGWjsFeJ7Ugaodn1zsicGj-i1feHjJ2z-oYcCY,224
|
|
22
|
+
khoj/database/migrations/0004_content_types_and_more.py,sha256=iOqQcv02EgRDFX5uti-1NCWKnYOl112EoC1TTTK-c9c,8202
|
|
23
|
+
khoj/database/migrations/0005_embeddings_corpus_id.py,sha256=ZrlLU1pGxjNhyIKMxeLOz9KI0qBdli4UHhQadswY75I,429
|
|
24
|
+
khoj/database/migrations/0006_embeddingsdates.py,sha256=7TnS65FdMUiBiNDZD3-2tSrz0dUD09HmhsTxKvPHHwE,1131
|
|
25
|
+
khoj/database/migrations/0007_add_conversation.py,sha256=Qw00xRuGmsl04GDKBXOPAspUXSbMF9LMI6fAN_WLqNE,917
|
|
26
|
+
khoj/database/migrations/0008_alter_conversation_conversation_log.py,sha256=MWsrGCfsAfwS521bdGUJrGYbUhFFK6XktvcrpgCbvmk,399
|
|
27
|
+
khoj/database/migrations/0009_khojapiuser.py,sha256=nm02cEFqiXHe6Iui9o7-PRwhDuJVdenRYn2C6vYyf-w,876
|
|
28
|
+
khoj/database/migrations/0010_chatmodeloptions_and_more.py,sha256=XzQaKo4Bfv4eo5QElWUbiPuCea2mtSNIgxfprs3THgE,3347
|
|
29
|
+
khoj/database/migrations/0010_rename_embeddings_entry_and_more.py,sha256=qMvHpq0xzfbpgNYoq_2AgjRvQpk7zq2vTB44lBNvyws,773
|
|
30
|
+
khoj/database/migrations/0011_merge_20231102_0138.py,sha256=lYGpYVAdt9I6LTjbfZLP7UbjSBgwC8zeE6NFUEWMD64,331
|
|
31
|
+
khoj/database/migrations/0012_entry_file_source.py,sha256=EY16p4HgktXCWvac-NxIAarcVySeU_P5ofmFeJpXT54,552
|
|
32
|
+
khoj/database/migrations/0013_subscription.py,sha256=Jqn33FSH887qDnxU41ehemRuJYxsKRElYHkpB5Kwi6c,1311
|
|
33
|
+
khoj/database/migrations/0014_alter_googleuser_picture.py,sha256=9GRHEiL9l3KXDcSS0PnDXZnOV5eagjJdGTo3dkibrns,411
|
|
34
|
+
khoj/database/migrations/0015_alter_subscription_user.py,sha256=Vzy3hx0NVp8yUdOYo5jalAz3fFDS2X52Oq8IPz1E7Rw,584
|
|
35
|
+
khoj/database/migrations/0016_alter_subscription_renewal_date.py,sha256=k2Bf2_KQEDNPYDLGgOyxYu2HrMO6cBpbsWq0YkI23CQ,429
|
|
36
|
+
khoj/database/migrations/0017_searchmodel.py,sha256=E3PDRc0TK7oVNNMwuB9K_2BogK3YB0Ge7faR9BnehNY,1219
|
|
37
|
+
khoj/database/migrations/0018_searchmodelconfig_delete_searchmodel.py,sha256=PRiOmGCiOkDtoOillwaYReDSJ2mAKIy1uz0isiPoqW4,1152
|
|
38
|
+
khoj/database/migrations/0019_alter_googleuser_family_name_and_more.py,sha256=ykqjbMRdaMWgjw6lt3Efj8w0Fw_bbyJYnyU94ejveGE,843
|
|
39
|
+
khoj/database/migrations/0020_reflectivequestion.py,sha256=vjiqYK3_nGHf3rjpuCvNRx6CfGuvFIUfKJm7TGImrmM,1190
|
|
40
|
+
khoj/database/migrations/0021_speechtotextmodeloptions_and_more.py,sha256=MRY92X7wZXfLZ5h8SCbw_JVmzm9pLpfEAGGfwMcjBKk,1504
|
|
41
|
+
khoj/database/migrations/0022_texttoimagemodelconfig.py,sha256=S06TAxQdd9e9Aa8f4uiWnNwUSbyKrimIWERsDrlKM3k,904
|
|
42
|
+
khoj/database/migrations/0023_usersearchmodelconfig.py,sha256=IYlFqhgEw1pQKm6TEZOl9p0JxJ4RrTZVBdSQ2j6exA4,1122
|
|
43
|
+
khoj/database/migrations/0024_alter_entry_embeddings.py,sha256=pRGcTT1lSsbHmHGCbsCB217UGBrnHxb8pemQ2TVFLjE,405
|
|
44
|
+
khoj/database/migrations/0025_clientapplication_khojuser_phone_number_and_more.py,sha256=XoF-_Zbba4eJSnxSVsPVYa1TEDhs7TbD1lmFepr7Hzk,1573
|
|
45
|
+
khoj/database/migrations/0025_searchmodelconfig_embeddings_inference_endpoint_and_more.py,sha256=qggrcc0sWSfrqtyDqCgvOqJZ97cw9odfjBVgWpntSI8,691
|
|
46
|
+
khoj/database/migrations/0026_searchmodelconfig_cross_encoder_inference_endpoint_and_more.py,sha256=TlFSndoPxaDzHgQyNCqJ7Yvqi2rvbLBZ0mg0ircx0nQ,731
|
|
47
|
+
khoj/database/migrations/0027_merge_20240118_1324.py,sha256=o7dFMIf87pYhRwGYvXQJeFDbcfuRHI9T3fFsZSJ03r4,375
|
|
48
|
+
khoj/database/migrations/0028_khojuser_verified_phone_number.py,sha256=tViTwSpKnDlB_JluNjtnuXvzHkRdqOCf24n1JLTU2Lo,405
|
|
49
|
+
khoj/database/migrations/0029_userrequests.py,sha256=QoEhhU_pJWKONBWZXNsTtTiAKb08G8WhUl5W_HRqekQ,934
|
|
50
|
+
khoj/database/migrations/0030_conversation_slug_and_title.py,sha256=Dq53AQc4FwCqnsa2vdqwTTMGbFgsXFi6o4GblIMjavE,1252
|
|
51
|
+
khoj/database/migrations/0031_agent_conversation_agent.py,sha256=9JPxDceJ5vpbgKdLs0_yEv5HpZFs7K5exIM2HfUGdTA,2033
|
|
52
|
+
khoj/database/migrations/0031_alter_googleuser_locale.py,sha256=Mqfnor_aALVOWRc4rgabBYEEo7RWiOj9QSvconylBoY,812
|
|
53
|
+
khoj/database/migrations/0032_merge_20240322_0427.py,sha256=Ja-srAvsmtJbQx9SoSlQLSoWOh0Y1QSK97i_C8nAKqg,317
|
|
54
|
+
khoj/database/migrations/0033_rename_tuning_agent_personality.py,sha256=aUjE-zEK8wThhPDgBrsyDytBuUYzL70FSR-Dl-fELDA,369
|
|
55
|
+
khoj/database/migrations/0034_alter_chatmodeloptions_chat_model.py,sha256=dNm3030v3kkpZdQhiYSHZWSdJF0xGDTVb9wXcjYDJ1Y,1251
|
|
56
|
+
khoj/database/migrations/0035_processlock.py,sha256=jnuYGDd8yXfsC3u_3EMgCe3PoDKrb9CffX5NTT7wCPU,960
|
|
57
|
+
khoj/database/migrations/0036_alter_processlock_name.py,sha256=pcyGRZI3NAI2VqhEC9uDMureOBB32UF-PHqMxSvaxgc,496
|
|
58
|
+
khoj/database/migrations/0036_delete_offlinechatprocessorconversationconfig.py,sha256=gS757BNY26UYEU_u01xlYVzvzyjUxbPsP2cQzsQE1Xo,321
|
|
59
|
+
khoj/database/migrations/0036_publicconversation.py,sha256=FwABpYd0lhGNXx5l2YjjDloTMmEc-mMAmfAqAqXxWuM,1546
|
|
60
|
+
khoj/database/migrations/0037_chatmodeloptions_openai_config_and_more.py,sha256=h7dDVMkPSG9rlOCwNicgE6y8pc-FGwDosIoeckmQ4hM,1875
|
|
61
|
+
khoj/database/migrations/0037_searchmodelconfig_bi_encoder_docs_encode_config_and_more.py,sha256=LwyyfQoECgF9HTFibQZ_vx6s-ZukN1kTZ6iLjrOOxPE,1028
|
|
62
|
+
khoj/database/migrations/0038_merge_20240425_0857.py,sha256=GEffzgOVt4HQ7zm-nOB2wbi21xtu3t9heNPgvhR0D9M,365
|
|
63
|
+
khoj/database/migrations/0038_merge_20240426_1640.py,sha256=J_0Z111_RSx5dxw61isjMGfA3tke1YTw7enL5NHR9dQ,318
|
|
64
|
+
khoj/database/migrations/0039_merge_20240501_0301.py,sha256=hRrjPwCciH8uaHkO2zYEb3xnRwGpjovBKOSfjwkb25Q,278
|
|
65
|
+
khoj/database/migrations/0040_alter_processlock_name.py,sha256=IcWXpAcr1v1edf_qlVZvCfqZhu5v88Z5XW3ENRyNVfk,827
|
|
66
|
+
khoj/database/migrations/0040_merge_20240504_1010.py,sha256=4iYuEeaZBzsaNVcbc_EFGS7Y--MEH67rMZ62QIBMhCU,307
|
|
67
|
+
khoj/database/migrations/0041_merge_20240505_1234.py,sha256=sUHv6VRgAtkzcySNOq0yL20qCMatHxSGiCGce7-fovs,311
|
|
68
|
+
khoj/database/migrations/0042_serverchatsettings.py,sha256=m1h0e_tDZ7pmh2InxlmCLkHoAMZKs4XcdQXrzSb-jDs,1572
|
|
69
|
+
khoj/database/migrations/0043_alter_chatmodeloptions_model_type.py,sha256=5hJnMeT6tTFM6pSaqKYATc7wM5Lwgf1bWQbhxbzuXs8,568
|
|
70
|
+
khoj/database/migrations/0044_conversation_file_filters.py,sha256=hAAR9RqTUnz36k57u1ja8AJR5p2o0ux5X3774Z0jGIM,411
|
|
71
|
+
khoj/database/migrations/0045_fileobject.py,sha256=avTFP5J3MXdb4a9tv3BaBbiEO_T3wbFRO6CPxjtC3iE,1259
|
|
72
|
+
khoj/database/migrations/0046_khojuser_email_verification_code_and_more.py,sha256=KgxktWYaikM1E-LW6yAVpTl29F_uH45P2poJCAfkrrk,598
|
|
73
|
+
khoj/database/migrations/0047_alter_entry_file_type.py,sha256=hnn8s7-vm331c0nuvfnso0wyBpOwQ0x6llfhufPlVxg,907
|
|
74
|
+
khoj/database/migrations/0048_voicemodeloption_uservoicemodelconfig.py,sha256=do9so4xdH3wVbtbb5L3CSYbLuShwoisw9vc9YDa_Z2I,1872
|
|
75
|
+
khoj/database/migrations/0049_datastore.py,sha256=zaILaPggqOOHBy4uBBVF9tzPoBUehFerHxeeyTwZrTc,1315
|
|
76
|
+
khoj/database/migrations/0049_texttoimagemodelconfig_api_key_and_more.py,sha256=26Kkdk432wBhk1qhC1h1aiwfKPswTZluHXhr4TCbh5o,2073
|
|
77
|
+
khoj/database/migrations/0050_alter_processlock_name.py,sha256=_Uh-L-zjDMFdTRMS0nz4BKotyt9RvIoHPZ5RqjJrLk0,659
|
|
78
|
+
khoj/database/migrations/0051_merge_20240702_1220.py,sha256=K6VNV-way0b4aMtyPwaEmoAEZUCIrj6Xoekn9yirBEw,331
|
|
79
|
+
khoj/database/migrations/0052_alter_searchmodelconfig_bi_encoder_docs_encode_config_and_more.py,sha256=ITNgRgz4Oh9WgJG9WFztGXIPnMbCP4LJCC7jZA6uC_c,824
|
|
80
|
+
khoj/database/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
|
+
khoj/database/models/__init__.py,sha256=u3tYfB7Kf6TuoFhFD7u987q3-GWX-6tAFQQNA0b-4xk,17641
|
|
82
|
+
khoj/interface/email/feedback.html,sha256=xksuPFamx4hGWyTTxZKRgX_eiYQQEuv-eK9Xmkt-nwU,1216
|
|
83
|
+
khoj/interface/email/magic_link.html,sha256=jXY_2hD3o15Ns5UDzbjLT8FHBnZiS7jo38YkYXIS-4w,947
|
|
84
|
+
khoj/interface/email/task.html,sha256=yXywzC-5P4nXbhqvgCmwcCpTRbD5eWuDXMpgYSotztM,3311
|
|
85
|
+
khoj/interface/email/welcome.html,sha256=Z4RP5J6c62adF7teH84OGx37shdsFzWQBwQjgfMjjUU,6577
|
|
86
|
+
khoj/interface/web/404.html,sha256=_WKN17MwiW1b1-8-vx240ZxTO2LmPUh5YnUCaGQpoZk,1651
|
|
87
|
+
khoj/interface/web/agent.html,sha256=vH3p6gwGlKkNmGO_TSwJMoOvZMvv8t4K8GwaN0QuOAU,9901
|
|
88
|
+
khoj/interface/web/agents.html,sha256=_6WZIYGav87WGJR9QA_UTLESD_itSINuxVOl3ybnRRM,9320
|
|
89
|
+
khoj/interface/web/base_config.html,sha256=vORIYJQ5UzaA3TAMcywRisk-YaaJEwkVAiEJGsbYxvA,12173
|
|
90
|
+
khoj/interface/web/chat.html,sha256=ODNMRyFjd_SY3R4NZopB2phCSCq9GaxvMw0O7I4d1t0,155666
|
|
91
|
+
khoj/interface/web/config.html,sha256=8Ge79FbYfWLovc_u8XVkCDGFjK7ZqlRFI1hHI_Z2KWs,46026
|
|
92
|
+
khoj/interface/web/config_automation.html,sha256=B_-uUBi-uVlhPqFNsxxNdp-m0BGST0maqJ1qTzfkkzA,46095
|
|
93
|
+
khoj/interface/web/content_source_computer_input.html,sha256=FzJbF1XpOF2HV6C1l0iKiU4LdRtMa5T0ETSuLyC7PPM,5983
|
|
94
|
+
khoj/interface/web/content_source_github_input.html,sha256=OTmcALYFyc7ZQPNQ-X4RROSH6HoqsHH4B0_hC5PkTzc,8268
|
|
95
|
+
khoj/interface/web/content_source_notion_input.html,sha256=qlIXBMvABqBq4OTFX310U-WkvAYBUA2dU-mAKE2Jqzo,3668
|
|
96
|
+
khoj/interface/web/khoj.webmanifest,sha256=G_Aphzn6SMaY73AYLCD12mgztZvagh_U2YpkjQXIY1U,1628
|
|
97
|
+
khoj/interface/web/login.html,sha256=U3rb0bZg06-dcR6swB-Ho33DX8V9-cqa-70yPIj8pKY,6838
|
|
98
|
+
khoj/interface/web/public_conversation.html,sha256=0XGJ4LmiO9DuhSg72it6XDVadl2ANih1UI0QMK6aiKQ,76256
|
|
99
|
+
khoj/interface/web/search.html,sha256=unQYiPNpz2gLQOieLeGkAG6qLsO56-kKd787zh3wbII,18326
|
|
100
|
+
khoj/interface/web/utils.html,sha256=rm2_ylTNloxeEBYFMK_22EfbFgvybooy1HJEhZrSzOQ,3141
|
|
101
|
+
khoj/interface/web/assets/khoj.css,sha256=rhW8-RwvkpTC5GbtBt0EByaXaHjlxpxPYxrUuzMWDC0,5659
|
|
102
|
+
khoj/interface/web/assets/markdown-it.min.js,sha256=zu3EiJi63wq7KFBdLv3zrWI2enxgn3Ia-IKhWlTDIco,275822
|
|
103
|
+
khoj/interface/web/assets/natural-cron.min.js,sha256=sck3Rmq6AUapLuBwj4A516n_BYQ2eNEICgQzwS83s0A,15760
|
|
104
|
+
khoj/interface/web/assets/org.min.js,sha256=W-5YPxbKcOsA4Hisdc2agHF5XuyVlm3gpcppaloK7G8,58643
|
|
105
|
+
khoj/interface/web/assets/pico.min.css,sha256=cjD_iUc4VEfrXRza2MvJiMWD3dxhtqV-9rT0rEfCJpA,73396
|
|
106
|
+
khoj/interface/web/assets/purify.min.js,sha256=g8iGk4ZBsoelviNZVQcHkDe0trvTdboSo-QqnpDTYXc,21820
|
|
107
|
+
khoj/interface/web/assets/utils.js,sha256=A22W1nOVuD1osI7TtZC8fZ0r1g4pE66tXQ_4XNbhreo,1269
|
|
108
|
+
khoj/interface/web/assets/icons/agents.svg,sha256=yFCRwIM-Qawa0C5ggAo3ekb-Q1ElmotBOKIGhtfIQqM,1722
|
|
109
|
+
khoj/interface/web/assets/icons/automation.svg,sha256=o7L2XYwJWRSMvl8h6TBv6Pt28RTRVMHqF04EPY0AFj0,1467
|
|
110
|
+
khoj/interface/web/assets/icons/cancel.svg,sha256=TDele79GSH_mnRsxEyw79uPd4lCmPXKlJ-tjFukICNU,1135
|
|
111
|
+
khoj/interface/web/assets/icons/chat.svg,sha256=l2JoYRRgk201adTTdvJ-buKUrc0WGfsudix5xEvtM3A,2424
|
|
112
|
+
khoj/interface/web/assets/icons/collapse.svg,sha256=0c35Qs68J-uGnj0yEFJSKgKdBxd_4AYMyynyoMAofbc,1661
|
|
113
|
+
khoj/interface/web/assets/icons/computer.png,sha256=zScL3g154eH07qcMrEixLGRG6jSOBPq_A0w9DdQOsY8,10517
|
|
114
|
+
khoj/interface/web/assets/icons/confirm-icon.svg,sha256=E-a5CML88ugwNdxoVk8jjA43oJag5mW9k7e0YjrScdw,549
|
|
115
|
+
khoj/interface/web/assets/icons/copy-button-success.svg,sha256=byqWAYD3Pn9IOXRjOKudJ-TJbP2UESbQGvtLWazNGjY,829
|
|
116
|
+
khoj/interface/web/assets/icons/copy-button.svg,sha256=05bKM2eRxksfBlAPT7yMaoNJEk85bZCxQg67EVrPeHo,669
|
|
117
|
+
khoj/interface/web/assets/icons/credit-card.png,sha256=uPBC5CRzKUcRq4Vm4cjAd-RQsr4F6c-ksbvrCatFwGc,19662
|
|
118
|
+
khoj/interface/web/assets/icons/delete.svg,sha256=wgVI_WiV_cGEsNg8DWUEhnu5DkjkWeI8xyIcFu1OTaA,914
|
|
119
|
+
khoj/interface/web/assets/icons/docx.svg,sha256=o_WbsAvXgaKAsNMwY3VaEeUvmxzjqEt4fRvcna8rS2Q,1325
|
|
120
|
+
khoj/interface/web/assets/icons/edit.svg,sha256=7aaMUYte2aSC3XsYMwzjx2pST1Bt34gLmiqA9N_aZ6A,571
|
|
121
|
+
khoj/interface/web/assets/icons/favicon-128x128.ico,sha256=JMZf9aZor9AUbh5kuFNDaG3Mjxvoau5k80yRA9ly5TQ,205167
|
|
122
|
+
khoj/interface/web/assets/icons/favicon-128x128.png,sha256=7pLHyK4cdLKMseot5BCW4fSiMsT2VHZtfyP3um6bV1Q,12518
|
|
123
|
+
khoj/interface/web/assets/icons/favicon-256x256.png,sha256=hVJpnfjYbjO6Bo0v4J_3zCp-EfVpgLc7GK1CzOv-reI,30234
|
|
124
|
+
khoj/interface/web/assets/icons/favicon.icns,sha256=34h6qrRMdzx16_d5Cy3zGMKXxztyWxmZjhfRR6oN3Fw,31531
|
|
125
|
+
khoj/interface/web/assets/icons/github.svg,sha256=E789GwMweG0aU1wJNp0FjWHlFX1AxuA5H0durEnw5hQ,964
|
|
126
|
+
khoj/interface/web/assets/icons/key.svg,sha256=ePgqDcsgBhIX6stfcDRlMkNMCggcRp8uoHtONqjj4X0,1100
|
|
127
|
+
khoj/interface/web/assets/icons/khoj-logo-sideways-200.png,sha256=pFZFcavWwkN4Kdg9d9ZsVFwbEVedYUuWNChaRHXyLXA,13011
|
|
128
|
+
khoj/interface/web/assets/icons/khoj-logo-sideways-500.png,sha256=brCp0b1oFTT1CE0gt_J_oU44OfSH5wQxljYuRmVYF_k,29856
|
|
129
|
+
khoj/interface/web/assets/icons/khoj-logo-sideways.svg,sha256=O2lzKcRxWWMjtkRpNnuO96KIAeKf3GfAL-Xi0CKtYPk,1301428
|
|
130
|
+
khoj/interface/web/assets/icons/logotype.svg,sha256=diy7UEKDBv9dFtGfE8Y5gf9JTdQUKTnq_dSdC2RGVIA,4031
|
|
131
|
+
khoj/interface/web/assets/icons/markdown.svg,sha256=ngHbtxRmKcMVHv8NgscjS-azYp4hgzYQl2g0oGzYSTg,283
|
|
132
|
+
khoj/interface/web/assets/icons/new.svg,sha256=pq1O8z7aMhDmWA8kKGLT5RPOpNu16ZOsQfmUdaVWMXs,949
|
|
133
|
+
khoj/interface/web/assets/icons/notion.svg,sha256=G1KhhdgWbZM59cFt1ReJ7jD0mmW01Ac4KQtgQj4zEWA,1578
|
|
134
|
+
khoj/interface/web/assets/icons/openai-logomark.svg,sha256=BEm8L47fqDkEDqoprIc4yNCOHzeChuTep6dftm0G_68,1736
|
|
135
|
+
khoj/interface/web/assets/icons/org.svg,sha256=uWQOQJEV26Segoij2NhxJeDA6ICKtcZ_ihQNg84VsCM,7946
|
|
136
|
+
khoj/interface/web/assets/icons/pdf.svg,sha256=lQObG1H7Lhj8CQAqb2dHMbRKg5RUUtiXUqVKgkwXMwU,2504
|
|
137
|
+
khoj/interface/web/assets/icons/pencil-edit.svg,sha256=KqpjAdvlMw_VCYsTB5FbVh45LXEpjB9VgOtaqote8YM,1127
|
|
138
|
+
khoj/interface/web/assets/icons/plaintext.svg,sha256=vghi0FAsOP_HRozqpv8bMgVgIj_aVkUzzsAu_Gkqnfw,2945
|
|
139
|
+
khoj/interface/web/assets/icons/question-mark-icon.svg,sha256=MraaI16kiXfr4-_3Qz3efzX8OvOGrueXyVeBNi5Y6jI,1877
|
|
140
|
+
khoj/interface/web/assets/icons/search.svg,sha256=TbKdOUEotv16JhpT3WV2Krxi-wTkPK3LrykrJhAkLFM,1210
|
|
141
|
+
khoj/interface/web/assets/icons/send.svg,sha256=VdavOWkVddcwcGcld6pdfmwfz7S91M-9O28cfeiKJkM,635
|
|
142
|
+
khoj/interface/web/assets/icons/share.svg,sha256=91lwo75PvMDrgocuZQab6EQ62CxRbubh9Bhw7CWMKbg,1221
|
|
143
|
+
khoj/interface/web/assets/icons/speaker.svg,sha256=-CxYU1_iMNP5-YvELdr8phRA-Y-gVT0FC6chIp3VLj4,555
|
|
144
|
+
khoj/interface/web/assets/icons/stop-solid.svg,sha256=up-hugJLqHYwFmJSOWkTwZ4rf9fNJHgZ4AtS5uN80_8,1319
|
|
145
|
+
khoj/interface/web/assets/icons/sync.svg,sha256=ZmwPaLLUBLDkNIly8bC1nCcWNspl30Kneiq-W9oYm34,639
|
|
146
|
+
khoj/interface/web/assets/icons/thumbs-down-svgrepo-com.svg,sha256=JGNl-DwoRmH2XFMPWwFFklmoYtKxaQbkLE3nuYKe8ZY,1019
|
|
147
|
+
khoj/interface/web/assets/icons/thumbs-up-svgrepo-com.svg,sha256=yS1wxTRtiztkN-6nZciLoYQUB_KTYNPV8xFRwH2TQFw,1036
|
|
148
|
+
khoj/interface/web/assets/icons/user-silhouette.svg,sha256=cVcnjO7gaN-sKKl3U5rkG2mx_ioM1ZK2sXTZENPs4yQ,2233
|
|
149
|
+
khoj/interface/web/assets/icons/voice.svg,sha256=0tmz0tByFw1BdsBYuY9W5D1ljJJOGWqWllkOS_-E58I,758
|
|
150
|
+
khoj/interface/web/assets/icons/web.svg,sha256=N0pAIs1YAXPGq8-3xZsYmsYuHqRuUXmkd5Ebt27MPb4,951
|
|
151
|
+
khoj/interface/web/assets/icons/whatsapp.svg,sha256=MaJ44iD_sWNP4Ik_eiOd9KzYYEGMrX8nEo2isRwVNe8,2417
|
|
152
|
+
khoj/interface/web/assets/samples/desktop-browse-draw-sample.png,sha256=v6u1g7_uEG_xN1D5UrulUC-rUkpzTlSPiUrbfxt4H2g,591182
|
|
153
|
+
khoj/interface/web/assets/samples/desktop-plain-chat-sample.png,sha256=SG1nFvJ3kWs5F3XXZxnkE-UnXCWY0Mz-EqTeU0nhs30,197173
|
|
154
|
+
khoj/interface/web/assets/samples/desktop-remember-plan-sample.png,sha256=i9QOSuWE6wKPP-qWcZisBrT3P7kRwq0yXKv7bV-kOSw,268309
|
|
155
|
+
khoj/interface/web/assets/samples/phone-browse-draw-sample.png,sha256=Dd4fPwtFl6BWqnHjeb1mCK_ND0hhHsWtx8sNE7EiMuE,406179
|
|
156
|
+
khoj/interface/web/assets/samples/phone-plain-chat-sample.png,sha256=DEDaNRCkfEWUeh3kYZWIQDTVK1a6KKnYdwj5ZWisN_Q,82985
|
|
157
|
+
khoj/interface/web/assets/samples/phone-remember-plan-sample.png,sha256=Ma3blirRmq3X4oYSsDbbT7MDn29rymDrjwmUfA9BMuM,236285
|
|
158
|
+
khoj/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
|
+
khoj/migrations/migrate_offline_chat_default_model.py,sha256=AQE4a9Lrj4bOgN6iyNl2S3NtKc0_sau-vkBQ96rDQFA,1928
|
|
160
|
+
khoj/migrations/migrate_offline_chat_default_model_2.py,sha256=Ybk9w7EAKpHzMo7uvDAwxy80emT5XhGAaD_IJwtNUpw,2034
|
|
161
|
+
khoj/migrations/migrate_offline_chat_schema.py,sha256=vsJT5nJS9TwPLtyrXRMg8ml9v76HLJvPkQlpGHlR6_s,2510
|
|
162
|
+
khoj/migrations/migrate_offline_model.py,sha256=MXYnA3TTl71guv16q4arkg7KL_6ve5xI8WsPJdcX5rY,975
|
|
163
|
+
khoj/migrations/migrate_processor_config_openai.py,sha256=FfeUU2JPQMtlr1iYoc4Cer3tIm4jfbt6AuO4Eby8AkU,2025
|
|
164
|
+
khoj/migrations/migrate_server_pg.py,sha256=b6ULFFBEF__W10YpgF28deKoOzGqDbdvyL4nBdj3eNU,5015
|
|
165
|
+
khoj/migrations/migrate_version.py,sha256=6CTsLuxiLnFVF8A7CjsIz3PcnJd8fAOZeIx6tTu6Vgg,569
|
|
166
|
+
khoj/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
|
+
khoj/processor/embeddings.py,sha256=80irR_-dxQJ3LVTGUgaC1QyyCqyJ2CDUZ131u_rDLA0,5149
|
|
168
|
+
khoj/processor/content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
169
|
+
khoj/processor/content/text_to_entries.py,sha256=WWm4cixlFvYswwT3f0Z3OxRyq1jmunKIFEYjE_Y1zVk,14577
|
|
170
|
+
khoj/processor/content/docx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
|
+
khoj/processor/content/docx/docx_to_entries.py,sha256=I_2rtreAFYRViwZInrOsUsQyGYZaJirNocKfUasyiVk,4466
|
|
172
|
+
khoj/processor/content/github/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
+
khoj/processor/content/github/github_to_entries.py,sha256=7i8VSx41cTOUVaSe1fz-6mhIURgflBiUerHHJrej1TI,9927
|
|
174
|
+
khoj/processor/content/images/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
|
+
khoj/processor/content/images/image_to_entries.py,sha256=T8wfV9RS8Qs5eefYG4UWXy-KS7mSiFE4QAvir2XGv80,5036
|
|
176
|
+
khoj/processor/content/markdown/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
177
|
+
khoj/processor/content/markdown/markdown_to_entries.py,sha256=WW3Jlk8QrOgkPi3UIRY4oMkWAFQEXfjASF8gxASQtts,7209
|
|
178
|
+
khoj/processor/content/notion/notion_to_entries.py,sha256=dyYZUsltBGpBfVU8Z7MBe7tZtdnSzIypOVVHFI8_FnQ,9869
|
|
179
|
+
khoj/processor/content/org_mode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
180
|
+
khoj/processor/content/org_mode/org_to_entries.py,sha256=3rj4i9TugExndJxux5JfaBAt6aHNHhOMfNpg7QFrL5M,10384
|
|
181
|
+
khoj/processor/content/org_mode/orgnode.py,sha256=C0j0e6iHAY3bKBIcM9PaytqoR9dQ1Qd6hNHzMN-Zeg0,18476
|
|
182
|
+
khoj/processor/content/pdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
|
+
khoj/processor/content/pdf/pdf_to_entries.py,sha256=wGXSmxifrjRE9eJWoFokI0G66kyMmvoog7HFLYyADBA,5044
|
|
184
|
+
khoj/processor/content/plaintext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
185
|
+
khoj/processor/content/plaintext/plaintext_to_entries.py,sha256=4JpWWulSjzrYsGNLPt7Z0qZykjU6isF58vx-0RJjQRw,5127
|
|
186
|
+
khoj/processor/conversation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
|
+
khoj/processor/conversation/prompts.py,sha256=uP8rCZPSg70yf-qfT_919B4_OrpJ_BepOUy1mxyAtus,30923
|
|
188
|
+
khoj/processor/conversation/utils.py,sha256=80QyNvijSgL3dDcMvLkNtTsHkKD16MozprzoeuE03NQ,10678
|
|
189
|
+
khoj/processor/conversation/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
190
|
+
khoj/processor/conversation/anthropic/anthropic_chat.py,sha256=ovhrqcRHJV7XoMpio2Wzwr1hugfzwA6CezUNzuiUtPc,7704
|
|
191
|
+
khoj/processor/conversation/anthropic/utils.py,sha256=uc9d_gIk4Ux2NRlkw3FP9L9KeLRoUI7nC_qb2Qp6d_4,3253
|
|
192
|
+
khoj/processor/conversation/offline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
193
|
+
khoj/processor/conversation/offline/chat_model.py,sha256=dbwVp2irUpS47U9OX-5kLyFARdqd9DWvugQ9QqhlH_s,8884
|
|
194
|
+
khoj/processor/conversation/offline/utils.py,sha256=-e-YYVQIWozAjvh1SvkrNNh9WArMRgP-DmOt5b3ae5s,2954
|
|
195
|
+
khoj/processor/conversation/offline/whisper.py,sha256=DJI-8y8DULO2cQ49m2VOvRyIZ2TxBypc15gM8O3HuMI,470
|
|
196
|
+
khoj/processor/conversation/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
|
+
khoj/processor/conversation/openai/gpt.py,sha256=CIB9LRbgLnw6q5p_MxqVYXDRFP8ZC_4IBWFm8a29Av0,6936
|
|
198
|
+
khoj/processor/conversation/openai/utils.py,sha256=UCfu-dHnkgcKxMajUaWnlxW5Zdidqecv5jIdmimie6o,4067
|
|
199
|
+
khoj/processor/conversation/openai/whisper.py,sha256=RuwDtxSJrVWYdZz4aVnk0XiMQy9w8W9lFcVfE0hMiFY,432
|
|
200
|
+
khoj/processor/speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
|
+
khoj/processor/speech/text_to_speech.py,sha256=Q7sapi5Hv6woXOumtrGqR0t6izZrFBkWXFOGrHM6dJ4,1929
|
|
202
|
+
khoj/processor/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
|
+
khoj/processor/tools/online_search.py,sha256=FGAu-FmD158ILXoVo3j2fbqM5SnaWusKV39o68GhvQY,9373
|
|
204
|
+
khoj/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
205
|
+
khoj/routers/api.py,sha256=CzDpN6zX3XfQkRHKEgVYffFkG4v3XoHvqsKvHfFbhz8,23690
|
|
206
|
+
khoj/routers/api_agents.py,sha256=A8gS-LIgg5cjV9Ec7P-TgCmmylaNtT43TqXcxIia3PQ,1443
|
|
207
|
+
khoj/routers/api_chat.py,sha256=SdBkCveilzM75uyBc0RAJEk-pOolQdl_Xa7L2B3ceQA,45409
|
|
208
|
+
khoj/routers/api_config.py,sha256=qK4he5cH-Rdx5WagOOfoNRpHuJUoD8ja4zbl0ksBh9M,13446
|
|
209
|
+
khoj/routers/api_phone.py,sha256=p9yfc4WeMHDC0hg3aQk60a2VBy8rZPdEnz9wdJ7DzkU,2208
|
|
210
|
+
khoj/routers/auth.py,sha256=pCOLSRihJWcn097DRPxLjPdlejsjHJFRs9jHIzLujZU,6247
|
|
211
|
+
khoj/routers/email.py,sha256=hhxyLdmgSUfeHTXTco7g4aWDAEaVzF82mV-hshxzHsg,3695
|
|
212
|
+
khoj/routers/helpers.py,sha256=dmy8_HTt5fcAhLcYH_lE6NCHU44Xgneb431QhAjoX-U,47418
|
|
213
|
+
khoj/routers/indexer.py,sha256=1fDmOraiCHsggZgzwyH1H7VPAJccjuMa6VHAnJkSmDo,12560
|
|
214
|
+
khoj/routers/notion.py,sha256=DaEvbBLqg0F7UArRalKZqzvl0fxW7snShByo-BOyRO8,3137
|
|
215
|
+
khoj/routers/storage.py,sha256=9ZfBsr_omxdFV-Lcj6p30xTQcF_7wwCZ9XFJukzjITE,1429
|
|
216
|
+
khoj/routers/subscription.py,sha256=qEyV7m7mrY6MGtaij8W3v61tpzX2a7ydm2B-E8h_R-M,4285
|
|
217
|
+
khoj/routers/twilio.py,sha256=MLsuCm4--ETvr3sLxbF0CL_ehlg_l2rKBSLR2Qh2Xls,1081
|
|
218
|
+
khoj/routers/web_client.py,sha256=60N5PqGtVg50p47R5RPMYeLm-S_oQCsPUzjKpDjDCR8,17580
|
|
219
|
+
khoj/search_filter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
220
|
+
khoj/search_filter/base_filter.py,sha256=BzoZA_wAUg_eZ5vhaaipwVTSG0ZMxWCHxHsZrzo4KS0,358
|
|
221
|
+
khoj/search_filter/date_filter.py,sha256=4VL63kDVqYKFOzkCeV6R8Z8lxFaAbbn_z_RWaWQNDWY,10103
|
|
222
|
+
khoj/search_filter/file_filter.py,sha256=1b6xgFqBNB6ZvQFbEXERdTEYV6PDxfHpUVbnz3aFaws,939
|
|
223
|
+
khoj/search_filter/word_filter.py,sha256=5Yx95aSiqGke9kEIbp8T-Ak4dS9cTd3VxI1SaJoK1wY,1005
|
|
224
|
+
khoj/search_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
|
+
khoj/search_type/text_search.py,sha256=Sj55WCTDAZ1j1-dsL-UOSKz52XzLeaCoMRtfT3ecl4Q,8953
|
|
226
|
+
khoj/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
227
|
+
khoj/utils/cli.py,sha256=oTDt6ClKvYNJ3_j9Omwx49H03IxC7sq4oL1qFpormWc,3456
|
|
228
|
+
khoj/utils/config.py,sha256=ZNVZjyJhd7KmeKCA1a1Dtns2ghhAtZtsCF9Lsm-gilw,1805
|
|
229
|
+
khoj/utils/constants.py,sha256=vtQx9UTXwFrZdgdEWudTYMEDxecXP5g2rRYWYIMAsdU,856
|
|
230
|
+
khoj/utils/fs_syncer.py,sha256=Se7414BWUqww0BuRmXyiPvP5lNH6aanhLp3607LasY4,9890
|
|
231
|
+
khoj/utils/helpers.py,sha256=b7q_aQw52C_CO9y18KWRD2Z1Oyo9E6Ef7F9_jfi5S00,14041
|
|
232
|
+
khoj/utils/initialization.py,sha256=Q8csjz5YqQ7WZ6mYJWvmp_Dh36dFRpZ3WRWxEgT2Ql0,7117
|
|
233
|
+
khoj/utils/jsonl.py,sha256=0Ac_COqr8sLCXntzZtquxuCEVRM2c3yKeDRGhgOBRpQ,1192
|
|
234
|
+
khoj/utils/models.py,sha256=Q5tcC9-z25sCiub048fLnvZ6_IIO1bcPNxt5payekk0,2009
|
|
235
|
+
khoj/utils/rawconfig.py,sha256=iqyidXyM4AM6QAPLLMFrMuYR6dYplj374UBNFDOBwkY,3892
|
|
236
|
+
khoj/utils/state.py,sha256=x4GTewP1YhOA6c_32N4wOjnV-3AA3xG_qbY1-wC2Uxc,1559
|
|
237
|
+
khoj/utils/yaml.py,sha256=H0mfw0ZvBFUvFmCQn8pWkfxdmIebsrSykza7D8Wv6wQ,1430
|
|
238
|
+
khoj-1.16.1.dev15.dist-info/METADATA,sha256=tOakxp8QiBGK_TbsIWg-YOS1ql0RS28NoNwZjWqArvA,6894
|
|
239
|
+
khoj-1.16.1.dev15.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
240
|
+
khoj-1.16.1.dev15.dist-info/entry_points.txt,sha256=KBIcez5N_jCgq_ER4Uxf-e1lxTBMTE_BBjMwwfeZyAg,39
|
|
241
|
+
khoj-1.16.1.dev15.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
242
|
+
khoj-1.16.1.dev15.dist-info/RECORD,,
|