mnemoai-assistant 0.1.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 (85) hide show
  1. mnemoai/__init__.py +1 -0
  2. mnemoai/__main__.py +6 -0
  3. mnemoai/client/__init__.py +5 -0
  4. mnemoai/client/agent/__init__.py +2 -0
  5. mnemoai/client/agent/agent.py +1168 -0
  6. mnemoai/client/agent/orchestrator.py +106 -0
  7. mnemoai/client/agent/reasoning_utils.py +99 -0
  8. mnemoai/client/agent/router.py +167 -0
  9. mnemoai/client/client.py +932 -0
  10. mnemoai/client/managers/__init__.py +0 -0
  11. mnemoai/client/managers/agent_conversation_manager.py +406 -0
  12. mnemoai/client/managers/user_profile_manager.py +558 -0
  13. mnemoai/client/mcp_tool_wrapper.py +367 -0
  14. mnemoai/client/memory/__init__.py +0 -0
  15. mnemoai/client/memory/chroma_store.py +244 -0
  16. mnemoai/client/memory/episodic_memory.py +390 -0
  17. mnemoai/client/memory/faiss_store.py +233 -0
  18. mnemoai/client/memory/playbook_store.py +343 -0
  19. mnemoai/client/memory/reflector.py +449 -0
  20. mnemoai/client/ui/__init__.py +1 -0
  21. mnemoai/client/ui/chat_interface.py +501 -0
  22. mnemoai/client/ui/spinner.py +41 -0
  23. mnemoai/main.py +80 -0
  24. mnemoai/models/__init__.py +0 -0
  25. mnemoai/models/chat_models/__init__.py +0 -0
  26. mnemoai/models/chat_models/chat_ollama_wrapper.py +17 -0
  27. mnemoai/models/chat_models/sagemaker_chat.py +352 -0
  28. mnemoai/models/controllers/__init__.py +1 -0
  29. mnemoai/models/controllers/base_model_controller.py +8 -0
  30. mnemoai/models/controllers/embeddings_controller.py +362 -0
  31. mnemoai/models/controllers/llm_controller.py +241 -0
  32. mnemoai/models/controllers/vision_model_controller.py +283 -0
  33. mnemoai/models/mantle_factory.py +129 -0
  34. mnemoai/models/provider_params.py +220 -0
  35. mnemoai/server/__init__.py +1 -0
  36. mnemoai/server/error_handler.py +278 -0
  37. mnemoai/server/server.py +16 -0
  38. mnemoai/server/tools/__init__.py +13 -0
  39. mnemoai/server/tools/background_tasks.py +449 -0
  40. mnemoai/server/tools/describe_image.py +88 -0
  41. mnemoai/server/tools/execute_bash.py +85 -0
  42. mnemoai/server/tools/file_edit.py +212 -0
  43. mnemoai/server/tools/file_search.py +277 -0
  44. mnemoai/server/tools/fs_read.py +120 -0
  45. mnemoai/server/tools/fs_write.py +422 -0
  46. mnemoai/server/tools/git_safety.py +634 -0
  47. mnemoai/server/tools/plan_mode.py +382 -0
  48. mnemoai/server/tools/rag/__init__.py +14 -0
  49. mnemoai/server/tools/rag/chroma_store.py +128 -0
  50. mnemoai/server/tools/rag/faiss_store.py +152 -0
  51. mnemoai/server/tools/rag/session.py +368 -0
  52. mnemoai/server/tools/rag/vector_store_controller.py +144 -0
  53. mnemoai/server/tools/rag_tool.py +138 -0
  54. mnemoai/server/tools/readers/__init__.py +19 -0
  55. mnemoai/server/tools/readers/chunking_helper.py +381 -0
  56. mnemoai/server/tools/readers/csv_reader.py +128 -0
  57. mnemoai/server/tools/readers/directory_reader.py +94 -0
  58. mnemoai/server/tools/readers/docx_reader.py +122 -0
  59. mnemoai/server/tools/readers/json_reader.py +173 -0
  60. mnemoai/server/tools/readers/line_reader.py +111 -0
  61. mnemoai/server/tools/readers/pdf_reader.py +113 -0
  62. mnemoai/server/tools/readers/search_reader.py +75 -0
  63. mnemoai/server/tools/todo_manager.py +162 -0
  64. mnemoai/server/tools/tools_manager.py +165 -0
  65. mnemoai/server/tools/web_crawler.py +164 -0
  66. mnemoai/server/tools/web_search.py +130 -0
  67. mnemoai/utils/__init__.py +1 -0
  68. mnemoai/utils/bm25.py +64 -0
  69. mnemoai/utils/config.py +144 -0
  70. mnemoai/utils/config.yaml.bedrock.example +383 -0
  71. mnemoai/utils/config.yaml.bedrock.mantle.example +429 -0
  72. mnemoai/utils/config.yaml.example +384 -0
  73. mnemoai/utils/configurator.py +870 -0
  74. mnemoai/utils/console.py +22 -0
  75. mnemoai/utils/formatting/__init__.py +4 -0
  76. mnemoai/utils/formatting/code_formatter.py +203 -0
  77. mnemoai/utils/formatting/response_parser.py +66 -0
  78. mnemoai/utils/formatting/url_formatter.py +133 -0
  79. mnemoai/utils/logger.py +59 -0
  80. mnemoai/utils/paths.py +97 -0
  81. mnemoai_assistant-0.1.0.dist-info/METADATA +1934 -0
  82. mnemoai_assistant-0.1.0.dist-info/RECORD +85 -0
  83. mnemoai_assistant-0.1.0.dist-info/WHEEL +4 -0
  84. mnemoai_assistant-0.1.0.dist-info/entry_points.txt +2 -0
  85. mnemoai_assistant-0.1.0.dist-info/licenses/LICENSE +21 -0
mnemoai/__init__.py ADDED
@@ -0,0 +1 @@
1
+ """mnemoai — local agentic AI assistant (LangGraph + MCP)."""
mnemoai/__main__.py ADDED
@@ -0,0 +1,6 @@
1
+ """Module entry point: ``python -m mnemoai``."""
2
+
3
+ from mnemoai.main import cli
4
+
5
+ if __name__ == "__main__":
6
+ cli()
@@ -0,0 +1,5 @@
1
+ """Client package initialization."""
2
+
3
+ from .client import LangGraphClient
4
+
5
+ __all__ = ["LangGraphClient"]
@@ -0,0 +1,2 @@
1
+ """Agent loop: the LangGraph StateGraph agent, query router, task
2
+ orchestrator, and shared reasoning helpers."""