feat(mma): Complete Visual DAG implementation, fix link creation/deletion, and sync docs

This commit is contained in:
2026-03-06 19:13:20 -05:00
parent 1c977d25d5
commit 661566573c
11 changed files with 260 additions and 36 deletions

View File

@@ -1,10 +1,11 @@
from __future__ import annotations
import tomllib
import os
from dataclasses import dataclass, field
from typing import List, Optional, Dict, Any, Union
from pathlib import Path
CONFIG_PATH = Path("config.toml")
CONFIG_PATH = Path(os.environ.get("SLOP_CONFIG", "config.toml"))
def load_config() -> dict[str, Any]:
with open(CONFIG_PATH, "rb") as f: