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.
- mnemoai/__init__.py +1 -0
- mnemoai/__main__.py +6 -0
- mnemoai/client/__init__.py +5 -0
- mnemoai/client/agent/__init__.py +2 -0
- mnemoai/client/agent/agent.py +1168 -0
- mnemoai/client/agent/orchestrator.py +106 -0
- mnemoai/client/agent/reasoning_utils.py +99 -0
- mnemoai/client/agent/router.py +167 -0
- mnemoai/client/client.py +932 -0
- mnemoai/client/managers/__init__.py +0 -0
- mnemoai/client/managers/agent_conversation_manager.py +406 -0
- mnemoai/client/managers/user_profile_manager.py +558 -0
- mnemoai/client/mcp_tool_wrapper.py +367 -0
- mnemoai/client/memory/__init__.py +0 -0
- mnemoai/client/memory/chroma_store.py +244 -0
- mnemoai/client/memory/episodic_memory.py +390 -0
- mnemoai/client/memory/faiss_store.py +233 -0
- mnemoai/client/memory/playbook_store.py +343 -0
- mnemoai/client/memory/reflector.py +449 -0
- mnemoai/client/ui/__init__.py +1 -0
- mnemoai/client/ui/chat_interface.py +501 -0
- mnemoai/client/ui/spinner.py +41 -0
- mnemoai/main.py +80 -0
- mnemoai/models/__init__.py +0 -0
- mnemoai/models/chat_models/__init__.py +0 -0
- mnemoai/models/chat_models/chat_ollama_wrapper.py +17 -0
- mnemoai/models/chat_models/sagemaker_chat.py +352 -0
- mnemoai/models/controllers/__init__.py +1 -0
- mnemoai/models/controllers/base_model_controller.py +8 -0
- mnemoai/models/controllers/embeddings_controller.py +362 -0
- mnemoai/models/controllers/llm_controller.py +241 -0
- mnemoai/models/controllers/vision_model_controller.py +283 -0
- mnemoai/models/mantle_factory.py +129 -0
- mnemoai/models/provider_params.py +220 -0
- mnemoai/server/__init__.py +1 -0
- mnemoai/server/error_handler.py +278 -0
- mnemoai/server/server.py +16 -0
- mnemoai/server/tools/__init__.py +13 -0
- mnemoai/server/tools/background_tasks.py +449 -0
- mnemoai/server/tools/describe_image.py +88 -0
- mnemoai/server/tools/execute_bash.py +85 -0
- mnemoai/server/tools/file_edit.py +212 -0
- mnemoai/server/tools/file_search.py +277 -0
- mnemoai/server/tools/fs_read.py +120 -0
- mnemoai/server/tools/fs_write.py +422 -0
- mnemoai/server/tools/git_safety.py +634 -0
- mnemoai/server/tools/plan_mode.py +382 -0
- mnemoai/server/tools/rag/__init__.py +14 -0
- mnemoai/server/tools/rag/chroma_store.py +128 -0
- mnemoai/server/tools/rag/faiss_store.py +152 -0
- mnemoai/server/tools/rag/session.py +368 -0
- mnemoai/server/tools/rag/vector_store_controller.py +144 -0
- mnemoai/server/tools/rag_tool.py +138 -0
- mnemoai/server/tools/readers/__init__.py +19 -0
- mnemoai/server/tools/readers/chunking_helper.py +381 -0
- mnemoai/server/tools/readers/csv_reader.py +128 -0
- mnemoai/server/tools/readers/directory_reader.py +94 -0
- mnemoai/server/tools/readers/docx_reader.py +122 -0
- mnemoai/server/tools/readers/json_reader.py +173 -0
- mnemoai/server/tools/readers/line_reader.py +111 -0
- mnemoai/server/tools/readers/pdf_reader.py +113 -0
- mnemoai/server/tools/readers/search_reader.py +75 -0
- mnemoai/server/tools/todo_manager.py +162 -0
- mnemoai/server/tools/tools_manager.py +165 -0
- mnemoai/server/tools/web_crawler.py +164 -0
- mnemoai/server/tools/web_search.py +130 -0
- mnemoai/utils/__init__.py +1 -0
- mnemoai/utils/bm25.py +64 -0
- mnemoai/utils/config.py +144 -0
- mnemoai/utils/config.yaml.bedrock.example +383 -0
- mnemoai/utils/config.yaml.bedrock.mantle.example +429 -0
- mnemoai/utils/config.yaml.example +384 -0
- mnemoai/utils/configurator.py +870 -0
- mnemoai/utils/console.py +22 -0
- mnemoai/utils/formatting/__init__.py +4 -0
- mnemoai/utils/formatting/code_formatter.py +203 -0
- mnemoai/utils/formatting/response_parser.py +66 -0
- mnemoai/utils/formatting/url_formatter.py +133 -0
- mnemoai/utils/logger.py +59 -0
- mnemoai/utils/paths.py +97 -0
- mnemoai_assistant-0.1.0.dist-info/METADATA +1934 -0
- mnemoai_assistant-0.1.0.dist-info/RECORD +85 -0
- mnemoai_assistant-0.1.0.dist-info/WHEEL +4 -0
- mnemoai_assistant-0.1.0.dist-info/entry_points.txt +2 -0
- 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