cli-memory-os 0.1.5__tar.gz → 0.1.7__tar.gz
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.
- {cli_memory_os-0.1.5/cli_memory_os.egg-info → cli_memory_os-0.1.7}/PKG-INFO +1 -1
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7/cli_memory_os.egg-info}/PKG-INFO +1 -1
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/connectors/gmail.py +1 -1
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/infrastructure/config.py +7 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/pyproject.toml +1 -1
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/tests/test_tui.py +2 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/LICENSE +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/MANIFEST.in +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/README.md +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/__init__.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/__init__.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/ask.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/benchmark.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/config_cmd.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/doctor.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/export.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/import_cmd.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/init.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/logs.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/monitor.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/plugins.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/restart.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/start.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/status.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/stop.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/sync.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/version.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/commands/workspace.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/main.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/parser.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/tui/__init__.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli/tui/app.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli_memory_os.egg-info/SOURCES.txt +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli_memory_os.egg-info/dependency_links.txt +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli_memory_os.egg-info/entry_points.txt +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli_memory_os.egg-info/requires.txt +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/cli_memory_os.egg-info/top_level.txt +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/connectors/__init__.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/connectors/base.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/connectors/github.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/connectors/notion.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/connectors/registry.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/core/__init__.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/core/chunker.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/core/context_builder.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/core/embedder.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/core/llm.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/core/vector_store.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/infrastructure/__init__.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/infrastructure/compose.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/infrastructure/docker.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/infrastructure/health.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/infrastructure/observability.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/infrastructure/workspace.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/models/__init__.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/models/memory.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/setup.cfg +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/storage/__init__.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/storage/db.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/storage/graph.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/storage/schema.sql +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/storage/tech_detector.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/tests/test_cli_integration.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/tests/test_commands_phase2.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/tests/test_compose_manager.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/tests/test_first_time_user_experience.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/tests/test_infrastructure_stabilization.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/tests/test_sync_ask_cli.py +0 -0
- {cli_memory_os-0.1.5 → cli_memory_os-0.1.7}/tests/test_v1_features.py +0 -0
|
@@ -140,6 +140,13 @@ def _export_to_environ(config: dict):
|
|
|
140
140
|
os.environ.setdefault("QDRANT_URL", qdrant["url"])
|
|
141
141
|
os.environ.setdefault("QDRANT_PORT", str(qdrant.get("port", 6333)))
|
|
142
142
|
|
|
143
|
+
# SQLite Database
|
|
144
|
+
workspace_root = os.path.expanduser(config.get("workspace", "~/.memory-os"))
|
|
145
|
+
active_profile = config.get("active_profile", "default")
|
|
146
|
+
db_path = os.path.abspath(os.path.join(workspace_root, "workspaces", active_profile, "workspace.db"))
|
|
147
|
+
if "MEMORY_OS_DB_PATH" not in os.environ:
|
|
148
|
+
os.environ["MEMORY_OS_DB_PATH"] = db_path
|
|
149
|
+
|
|
143
150
|
|
|
144
151
|
def get_config() -> dict:
|
|
145
152
|
"""Return the currently loaded config, loading it if necessary."""
|
|
@@ -27,10 +27,12 @@ async def test_tui_sidebar_toggle():
|
|
|
27
27
|
|
|
28
28
|
# Send ctrl+b
|
|
29
29
|
await pilot.press("ctrl+b")
|
|
30
|
+
await pilot.pause()
|
|
30
31
|
assert app.sidebar_visible is False
|
|
31
32
|
|
|
32
33
|
# Send ctrl+b again
|
|
33
34
|
await pilot.press("ctrl+b")
|
|
35
|
+
await pilot.pause()
|
|
34
36
|
assert app.sidebar_visible is True
|
|
35
37
|
|
|
36
38
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|