khoj 1.30.1.dev9__py3-none-any.whl → 1.30.2__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 (98) hide show
  1. khoj/configure.py +25 -0
  2. khoj/database/adapters/__init__.py +1 -1
  3. khoj/database/admin.py +39 -0
  4. khoj/interface/compiled/404/index.html +1 -1
  5. khoj/interface/compiled/_next/static/chunks/1210.ef7a0f9a7e43da1d.js +1 -0
  6. khoj/interface/compiled/_next/static/chunks/1279-4cb23143aa2c0228.js +1 -0
  7. khoj/interface/compiled/_next/static/chunks/1603-ba5f9f05e92c8412.js +1 -0
  8. khoj/interface/compiled/_next/static/chunks/1970-1b63ac1497b03a10.js +1 -0
  9. khoj/interface/compiled/_next/static/chunks/2646-92ba433951d02d52.js +20 -0
  10. khoj/interface/compiled/_next/static/chunks/3072-be830e4f8412b9d2.js +1 -0
  11. khoj/interface/compiled/_next/static/chunks/3463-081c031e873b7966.js +3 -0
  12. khoj/interface/compiled/_next/static/chunks/3690-51312931ba1eae30.js +1 -0
  13. khoj/interface/compiled/_next/static/chunks/{6297-d1c842ed3f714ab0.js → 3717-b46079dbe9f55694.js} +1 -1
  14. khoj/interface/compiled/_next/static/chunks/4504-62ac13e7d94c52f9.js +1 -0
  15. khoj/interface/compiled/_next/static/chunks/4752-554a3db270186ce3.js +1 -0
  16. khoj/interface/compiled/_next/static/chunks/5512-7cc62049bbe60e11.js +1 -0
  17. khoj/interface/compiled/_next/static/chunks/5538-e5f3c9f4d67a64b9.js +1 -0
  18. khoj/interface/compiled/_next/static/chunks/7592-a09c39a38e60634b.js +1 -0
  19. khoj/interface/compiled/_next/static/chunks/8423-1dda16bc56236523.js +1 -0
  20. khoj/interface/compiled/_next/static/chunks/app/agents/{page-4353b1a532795ad1.js → page-f5c0801b27a8e95e.js} +1 -1
  21. khoj/interface/compiled/_next/static/chunks/app/automations/{layout-27c28e923c9b1ff0.js → layout-7f1b79a2c67af0b4.js} +1 -1
  22. khoj/interface/compiled/_next/static/chunks/app/automations/{page-c9f13c865e739607.js → page-0393501fad5f8e3d.js} +1 -1
  23. khoj/interface/compiled/_next/static/chunks/app/chat/{page-2790303dee566590.js → page-f2539e3197d03c0d.js} +1 -1
  24. khoj/interface/compiled/_next/static/chunks/app/{page-e83f8a77f5c3caef.js → page-5cc56a8db5d21b38.js} +1 -1
  25. khoj/interface/compiled/_next/static/chunks/app/search/{page-8e28deacb61f75aa.js → page-e8b578d155550386.js} +1 -1
  26. khoj/interface/compiled/_next/static/chunks/app/settings/{layout-254eaaf916449a60.js → layout-1f4d76a8b09517b1.js} +1 -1
  27. khoj/interface/compiled/_next/static/chunks/app/settings/page-b6c835050c970be7.js +1 -0
  28. khoj/interface/compiled/_next/static/chunks/app/share/chat/{page-07e1a8a345e768de.js → page-635635e4fb39fe29.js} +1 -1
  29. khoj/interface/compiled/_next/static/chunks/webpack-5dbccc5145b80b64.js +1 -0
  30. khoj/interface/compiled/_next/static/css/4cae6c0e5c72fb2d.css +1 -0
  31. khoj/interface/compiled/_next/static/css/5d8d85d3f2e95bae.css +25 -0
  32. khoj/interface/compiled/_next/static/css/63e106a52a0ec4ca.css +1 -0
  33. khoj/interface/compiled/agents/index.html +1 -1
  34. khoj/interface/compiled/agents/index.txt +2 -2
  35. khoj/interface/compiled/automations/index.html +1 -1
  36. khoj/interface/compiled/automations/index.txt +3 -3
  37. khoj/interface/compiled/chat/index.html +1 -1
  38. khoj/interface/compiled/chat/index.txt +2 -2
  39. khoj/interface/compiled/index.html +1 -1
  40. khoj/interface/compiled/index.txt +2 -2
  41. khoj/interface/compiled/search/index.html +1 -1
  42. khoj/interface/compiled/search/index.txt +2 -2
  43. khoj/interface/compiled/settings/index.html +1 -1
  44. khoj/interface/compiled/settings/index.txt +3 -3
  45. khoj/interface/compiled/share/chat/index.html +1 -1
  46. khoj/interface/compiled/share/chat/index.txt +2 -2
  47. khoj/main.py +4 -0
  48. khoj/processor/conversation/anthropic/anthropic_chat.py +8 -2
  49. khoj/processor/conversation/anthropic/utils.py +22 -3
  50. khoj/processor/conversation/google/gemini_chat.py +8 -2
  51. khoj/processor/conversation/google/utils.py +19 -3
  52. khoj/processor/conversation/offline/chat_model.py +12 -4
  53. khoj/processor/conversation/openai/gpt.py +9 -2
  54. khoj/processor/conversation/openai/utils.py +39 -21
  55. khoj/processor/conversation/prompts.py +40 -21
  56. khoj/processor/conversation/utils.py +15 -9
  57. khoj/processor/tools/run_code.py +1 -25
  58. khoj/routers/api_chat.py +41 -16
  59. khoj/routers/api_subscription.py +9 -2
  60. khoj/routers/auth.py +2 -2
  61. khoj/routers/helpers.py +20 -5
  62. khoj/routers/research.py +2 -1
  63. khoj/utils/cli.py +2 -0
  64. khoj/utils/constants.py +17 -0
  65. khoj/utils/helpers.py +55 -1
  66. khoj/utils/state.py +1 -0
  67. {khoj-1.30.1.dev9.dist-info → khoj-1.30.2.dist-info}/METADATA +9 -4
  68. {khoj-1.30.1.dev9.dist-info → khoj-1.30.2.dist-info}/RECORD +77 -79
  69. khoj/interface/compiled/_next/static/chunks/1210.132a7e1910006bbb.js +0 -1
  70. khoj/interface/compiled/_next/static/chunks/1279-f37ee4a388ebf544.js +0 -1
  71. khoj/interface/compiled/_next/static/chunks/1603-dc5fd983dbcd070d.js +0 -1
  72. khoj/interface/compiled/_next/static/chunks/1970-c78f6acc8e16e30b.js +0 -1
  73. khoj/interface/compiled/_next/static/chunks/2261-748f7c327df3c8c1.js +0 -1
  74. khoj/interface/compiled/_next/static/chunks/3062-71ed4b46ac2bb87c.js +0 -1
  75. khoj/interface/compiled/_next/static/chunks/3124-a4cea2eda163128d.js +0 -1
  76. khoj/interface/compiled/_next/static/chunks/3803-d74118a2d0182c52.js +0 -1
  77. khoj/interface/compiled/_next/static/chunks/4504-1629487c8bc82203.js +0 -1
  78. khoj/interface/compiled/_next/static/chunks/5512-94c7c2bbcf58c19d.js +0 -1
  79. khoj/interface/compiled/_next/static/chunks/5538-b87b60ecc0c27ceb.js +0 -1
  80. khoj/interface/compiled/_next/static/chunks/7883-b1305ec254213afe.js +0 -20
  81. khoj/interface/compiled/_next/static/chunks/796-68f9e87f9cdfda1d.js +0 -3
  82. khoj/interface/compiled/_next/static/chunks/8423-c0123d454681e03a.js +0 -1
  83. khoj/interface/compiled/_next/static/chunks/9001-3b27af6d5f21df44.js +0 -1
  84. khoj/interface/compiled/_next/static/chunks/9417-32c4db52ca42e681.js +0 -1
  85. khoj/interface/compiled/_next/static/chunks/app/settings/page-610d33158b233b34.js +0 -1
  86. khoj/interface/compiled/_next/static/chunks/webpack-6e43825796b7dfa6.js +0 -1
  87. khoj/interface/compiled/_next/static/css/2d097a35da6bfe8d.css +0 -1
  88. khoj/interface/compiled/_next/static/css/80bd6301fc657983.css +0 -1
  89. khoj/interface/compiled/_next/static/css/ed437164d77aa600.css +0 -25
  90. /khoj/interface/compiled/_next/static/{iSHZR6RZZ76lh-q0YbAa5 → UR4enQiSbkZKb3SDFX2tx}/_buildManifest.js +0 -0
  91. /khoj/interface/compiled/_next/static/{iSHZR6RZZ76lh-q0YbAa5 → UR4enQiSbkZKb3SDFX2tx}/_ssgManifest.js +0 -0
  92. /khoj/interface/compiled/_next/static/chunks/{4602-8eeb4b76385ad159.js → 4602-460621c3241e0d13.js} +0 -0
  93. /khoj/interface/compiled/_next/static/chunks/{7023-a5bf5744d19b3bd3.js → 7023-e8de2bded4df6539.js} +0 -0
  94. /khoj/interface/compiled/_next/static/chunks/app/_not-found/{page-07ff4ab42b07845e.js → page-cfba071f5a657256.js} +0 -0
  95. /khoj/interface/compiled/_next/static/chunks/{fd9d1056-2b978342deb60015.js → fd9d1056-2e6c8140e79afc3b.js} +0 -0
  96. {khoj-1.30.1.dev9.dist-info → khoj-1.30.2.dist-info}/WHEEL +0 -0
  97. {khoj-1.30.1.dev9.dist-info → khoj-1.30.2.dist-info}/entry_points.txt +0 -0
  98. {khoj-1.30.1.dev9.dist-info → khoj-1.30.2.dist-info}/licenses/LICENSE +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.