evi-assistant 0.24.0__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 (87) hide show
  1. evi/__init__.py +3 -0
  2. evi/__main__.py +11 -0
  3. evi/apps/__init__.py +0 -0
  4. evi/apps/cli/__init__.py +0 -0
  5. evi/apps/cli/main.py +3386 -0
  6. evi/apps/web/__init__.py +0 -0
  7. evi/apps/web/server.py +1054 -0
  8. evi/apps/web/static/index.html +1727 -0
  9. evi/apps/web/static/manifest.json +18 -0
  10. evi/audio_input.py +113 -0
  11. evi/backends/__init__.py +34 -0
  12. evi/backends/base.py +125 -0
  13. evi/backends/factory.py +45 -0
  14. evi/backends/llamacpp.py +75 -0
  15. evi/backends/lmstudio.py +34 -0
  16. evi/backends/ollama.py +135 -0
  17. evi/backends/openai_compat.py +34 -0
  18. evi/backup.py +181 -0
  19. evi/calendar.py +472 -0
  20. evi/citations.py +71 -0
  21. evi/commands.py +87 -0
  22. evi/config.py +313 -0
  23. evi/debug.py +57 -0
  24. evi/doctor.py +186 -0
  25. evi/downloads.py +87 -0
  26. evi/dream.py +196 -0
  27. evi/embeddings.py +34 -0
  28. evi/firstrun.py +165 -0
  29. evi/guardrails.py +145 -0
  30. evi/hardware.py +168 -0
  31. evi/hooks.py +224 -0
  32. evi/index.py +280 -0
  33. evi/llm/__init__.py +0 -0
  34. evi/llm/agent.py +1319 -0
  35. evi/llm/client.py +24 -0
  36. evi/llm/responses.py +189 -0
  37. evi/llm/subagent.py +97 -0
  38. evi/mcp/__init__.py +21 -0
  39. evi/mcp/bridge.py +83 -0
  40. evi/mcp/manager.py +189 -0
  41. evi/mcp/publish.py +288 -0
  42. evi/mcp/servers.py +88 -0
  43. evi/memory.py +178 -0
  44. evi/obsidian.py +309 -0
  45. evi/portprobe.py +133 -0
  46. evi/profiles.py +83 -0
  47. evi/project.py +70 -0
  48. evi/py.typed +0 -0
  49. evi/recommend.py +277 -0
  50. evi/repl_input.py +265 -0
  51. evi/reporting.py +182 -0
  52. evi/review.py +121 -0
  53. evi/routing.py +244 -0
  54. evi/scheduled.py +135 -0
  55. evi/scheduler.py +207 -0
  56. evi/search.py +173 -0
  57. evi/sessions.py +308 -0
  58. evi/skills.py +137 -0
  59. evi/tools/__init__.py +7 -0
  60. evi/tools/base.py +154 -0
  61. evi/tools/calendar.py +132 -0
  62. evi/tools/code.py +46 -0
  63. evi/tools/computer.py +159 -0
  64. evi/tools/fs.py +97 -0
  65. evi/tools/git.py +178 -0
  66. evi/tools/image_comfy.py +217 -0
  67. evi/tools/index.py +110 -0
  68. evi/tools/memory.py +62 -0
  69. evi/tools/ocr.py +142 -0
  70. evi/tools/pdf.py +97 -0
  71. evi/tools/rerank.py +141 -0
  72. evi/tools/skills.py +39 -0
  73. evi/tools/sqlite.py +140 -0
  74. evi/tools/subagent.py +46 -0
  75. evi/tools/voice.py +40 -0
  76. evi/tools/websearch.py +135 -0
  77. evi/transcripts.py +140 -0
  78. evi/update.py +505 -0
  79. evi/vision.py +101 -0
  80. evi/voice.py +562 -0
  81. evi/worktree.py +152 -0
  82. evi_assistant-0.24.0.dist-info/METADATA +302 -0
  83. evi_assistant-0.24.0.dist-info/RECORD +87 -0
  84. evi_assistant-0.24.0.dist-info/WHEEL +5 -0
  85. evi_assistant-0.24.0.dist-info/entry_points.txt +2 -0
  86. evi_assistant-0.24.0.dist-info/licenses/LICENSE +21 -0
  87. evi_assistant-0.24.0.dist-info/top_level.txt +1 -0
evi/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ """Evi — local-first personal AI assistant core library."""
2
+
3
+ __version__ = "0.24.0"
evi/__main__.py ADDED
@@ -0,0 +1,11 @@
1
+ """Run the Evi CLI as `python -m evi`.
2
+
3
+ Handy when the `evi` console script isn't on PATH — notably for MCP clients
4
+ (Claude Desktop / Cursor / Cline) that spawn Evi as a server subprocess by
5
+ interpreter path, e.g. `python -m evi mcp serve`.
6
+ """
7
+
8
+ from evi.apps.cli.main import app
9
+
10
+ if __name__ == "__main__":
11
+ app()
evi/apps/__init__.py ADDED
File without changes
File without changes