806f7ee1ac
Google's TTS and Imagen tools advertised service-account auth
(GOOGLE_APPLICATION_CREDENTIALS) but only ever authenticated with an API
key string, so users with a service-account JSON could not use either tool.
google_tts.get_status() also over-reported availability when the JSON was
set, then failed at execute() — a silent-availability bug.
Separately, both hand-rolled _load_dotenv parsers kept inline comments as
values, so after `cp .env.example .env` every keyed tool falsely reported
"available" with no real credentials.
Changes:
- Add tools/google_credentials.py: lazy google-auth Bearer-token helper.
- google_tts: authenticate via Cloud TTS Bearer token when only a service
account is configured; make get_status() honest.
- google_imagen: route service-account auth to Vertex AI
({location}-aiplatform.googleapis.com) with project/location resolution,
alongside the existing AI Studio API-key path.
- Fix both _load_dotenv parsers to strip inline comments (quote-aware).
- Add google-auth to requirements; document the new env vars in .env.example.
- .gitignore: never commit GCP service-account key files.
Verified locally with a real service account: TTS produced a valid MP3 and
Imagen produced a valid 1408x768 PNG via Vertex AI. Existing test suite
passes (2 unrelated pre-existing failures only).
Closes #131
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
447 lines
18 KiB
Python
447 lines
18 KiB
Python
"""Tool registry with status, stability, and support-envelope reporting.
|
|
|
|
The registry discovers all registered tools, reports their availability,
|
|
and lets the orchestrator/agents query capabilities by tier, status, etc.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import importlib
|
|
import inspect
|
|
import pkgutil
|
|
from types import ModuleType
|
|
from typing import Any, Optional
|
|
|
|
from tools.base_tool import BaseTool, ToolStatus, ToolTier, ToolStability
|
|
|
|
|
|
# Unicode punctuation that breaks on Windows cp1252 stdout. Map each to an
|
|
# ASCII equivalent. This only touches strings rendered by registry helpers
|
|
# that an agent is likely to print to the user at preflight — not docstrings,
|
|
# comments, or markdown.
|
|
_UNICODE_DASH_REPLACEMENTS = {
|
|
"\u2014": "--", # em dash
|
|
"\u2013": "-", # en dash
|
|
"\u2212": "-", # minus sign
|
|
"\u2018": "'", # left single quote
|
|
"\u2019": "'", # right single quote
|
|
"\u201c": '"', # left double quote
|
|
"\u201d": '"', # right double quote
|
|
"\u2026": "...", # ellipsis
|
|
}
|
|
|
|
|
|
def _scrub_unicode_dashes(value: Any) -> Any:
|
|
"""Recursively normalize unicode punctuation in str leaves to ASCII.
|
|
|
|
Used to keep `provider_menu_summary()` output readable on Windows cp1252
|
|
stdout. Does NOT modify dict/list structure or non-string values.
|
|
"""
|
|
if isinstance(value, str):
|
|
out = value
|
|
for needle, repl in _UNICODE_DASH_REPLACEMENTS.items():
|
|
if needle in out:
|
|
out = out.replace(needle, repl)
|
|
return out
|
|
if isinstance(value, list):
|
|
return [_scrub_unicode_dashes(item) for item in value]
|
|
if isinstance(value, tuple):
|
|
return tuple(_scrub_unicode_dashes(item) for item in value)
|
|
if isinstance(value, dict):
|
|
return {k: _scrub_unicode_dashes(v) for k, v in value.items()}
|
|
return value
|
|
|
|
|
|
class ToolRegistry:
|
|
"""Central registry of all OpenMontage tools."""
|
|
|
|
def __init__(self) -> None:
|
|
self._tools: dict[str, BaseTool] = {}
|
|
self._discovered_packages: set[str] = set()
|
|
|
|
def register(self, tool: BaseTool) -> None:
|
|
"""Register a tool instance."""
|
|
if not tool.name:
|
|
raise ValueError("Tool must have a non-empty name")
|
|
self._tools[tool.name] = tool
|
|
|
|
def clear(self) -> None:
|
|
"""Clear registered tools and discovery state."""
|
|
self._tools.clear()
|
|
self._discovered_packages.clear()
|
|
|
|
def register_module(self, module: ModuleType) -> list[str]:
|
|
"""Register all concrete BaseTool subclasses defined in a module."""
|
|
registered: list[str] = []
|
|
for _, cls in inspect.getmembers(module, inspect.isclass):
|
|
if cls is BaseTool or not issubclass(cls, BaseTool):
|
|
continue
|
|
if cls.__module__ != module.__name__ or inspect.isabstract(cls):
|
|
continue
|
|
tool = cls()
|
|
self.register(tool)
|
|
registered.append(tool.name)
|
|
return registered
|
|
|
|
@staticmethod
|
|
def _load_dotenv() -> None:
|
|
"""Load .env file into os.environ if present, so tools can find API keys."""
|
|
from pathlib import Path
|
|
import os
|
|
env_path = Path(__file__).resolve().parent.parent / ".env"
|
|
if not env_path.is_file():
|
|
return
|
|
import re
|
|
with open(env_path, encoding="utf-8", errors="ignore") as f:
|
|
for line in f:
|
|
line = line.strip()
|
|
if not line or line.startswith("#") or "=" not in line:
|
|
continue
|
|
key, _, value = line.partition("=")
|
|
key = key.strip()
|
|
value = value.strip()
|
|
# Quoted value: take the content inside the quotes verbatim.
|
|
if value[:1] in ("'", '"'):
|
|
quote = value[0]
|
|
end = value.find(quote, 1)
|
|
value = value[1:end] if end != -1 else value[1:]
|
|
else:
|
|
# Strip an inline comment ('#' at line start or after
|
|
# whitespace) so "KEY= # note" yields "" not "# note".
|
|
match = re.search(r"(^|\s)#", value)
|
|
if match:
|
|
value = value[: match.start()]
|
|
value = value.strip()
|
|
if key and key not in os.environ:
|
|
os.environ[key] = value
|
|
|
|
def discover(self, package_name: str = "tools") -> list[str]:
|
|
"""Import a package tree and register any concrete tools it defines."""
|
|
self._load_dotenv()
|
|
package = importlib.import_module(package_name)
|
|
discovered: list[str] = []
|
|
package_paths = getattr(package, "__path__", None)
|
|
if package_paths is None:
|
|
return self.register_module(package)
|
|
|
|
for module_info in pkgutil.walk_packages(package_paths, f"{package.__name__}."):
|
|
if module_info.name.endswith(".base_tool") or module_info.name.endswith(".tool_registry"):
|
|
continue
|
|
module = importlib.import_module(module_info.name)
|
|
discovered.extend(self.register_module(module))
|
|
|
|
self._discovered_packages.add(package_name)
|
|
return discovered
|
|
|
|
def ensure_discovered(self, package_name: str = "tools") -> None:
|
|
"""Load tool modules once before reporting capabilities."""
|
|
if package_name not in self._discovered_packages:
|
|
self.discover(package_name)
|
|
|
|
def get(self, name: str) -> Optional[BaseTool]:
|
|
"""Get a tool by name."""
|
|
return self._tools.get(name)
|
|
|
|
def list_all(self) -> list[str]:
|
|
"""List all registered tool names."""
|
|
return list(self._tools.keys())
|
|
|
|
def get_by_tier(self, tier: ToolTier) -> list[BaseTool]:
|
|
"""Get all tools in a given tier."""
|
|
return [t for t in self._tools.values() if t.tier == tier]
|
|
|
|
def get_by_capability(self, capability: str) -> list[BaseTool]:
|
|
"""Get all tools registered for a top-level capability family."""
|
|
return [t for t in self._tools.values() if t.capability == capability]
|
|
|
|
def get_by_provider(self, provider: str) -> list[BaseTool]:
|
|
"""Get all tools backed by a specific provider."""
|
|
return [t for t in self._tools.values() if t.provider == provider]
|
|
|
|
def get_by_status(self, status: ToolStatus) -> list[BaseTool]:
|
|
"""Get all tools with a given status."""
|
|
return [t for t in self._tools.values() if t.get_status() == status]
|
|
|
|
def get_available(self) -> list[BaseTool]:
|
|
"""Get all tools that are currently available."""
|
|
return self.get_by_status(ToolStatus.AVAILABLE)
|
|
|
|
def get_unavailable(self) -> list[BaseTool]:
|
|
"""Get all tools that are currently unavailable."""
|
|
return self.get_by_status(ToolStatus.UNAVAILABLE)
|
|
|
|
def get_by_stability(self, stability: ToolStability) -> list[BaseTool]:
|
|
"""Get all tools at a given stability level."""
|
|
return [t for t in self._tools.values() if t.stability == stability]
|
|
|
|
def find_by_capability(self, capability: str) -> list[BaseTool]:
|
|
"""Find tools that declare a given capability."""
|
|
return [
|
|
t for t in self._tools.values()
|
|
if capability in t.capabilities
|
|
]
|
|
|
|
def find_fallback(self, tool_name: str) -> Optional[BaseTool]:
|
|
"""Find the fallback tool for a given tool, if declared and available."""
|
|
tool = self.get(tool_name)
|
|
if tool is None:
|
|
return None
|
|
candidates = list(tool.fallback_tools or [])
|
|
if tool.fallback and tool.fallback not in candidates:
|
|
candidates.append(tool.fallback)
|
|
for name in candidates:
|
|
fb = self.get(name)
|
|
if fb and fb.get_status() == ToolStatus.AVAILABLE:
|
|
return fb
|
|
return None
|
|
|
|
def support_envelope(self) -> dict[str, Any]:
|
|
"""Generate a full support-envelope report for all tools.
|
|
|
|
Returns a dict mapping tool name to its contract info + live status.
|
|
This is the primary report the orchestrator uses to understand
|
|
what the system can and cannot do.
|
|
"""
|
|
self.ensure_discovered()
|
|
report: dict[str, Any] = {}
|
|
for name, tool in self._tools.items():
|
|
info = tool.get_info()
|
|
report[name] = info
|
|
return report
|
|
|
|
def capability_catalog(self) -> dict[str, list[dict[str, Any]]]:
|
|
"""Group the support envelope by top-level capability."""
|
|
self.ensure_discovered()
|
|
grouped: dict[str, list[dict[str, Any]]] = {}
|
|
for tool in self._tools.values():
|
|
grouped.setdefault(tool.capability, []).append(tool.get_info())
|
|
for items in grouped.values():
|
|
items.sort(key=lambda item: (item["provider"], item["name"]))
|
|
return dict(sorted(grouped.items()))
|
|
|
|
def provider_catalog(self) -> dict[str, list[dict[str, Any]]]:
|
|
"""Group the support envelope by provider."""
|
|
self.ensure_discovered()
|
|
grouped: dict[str, list[dict[str, Any]]] = {}
|
|
for tool in self._tools.values():
|
|
grouped.setdefault(tool.provider, []).append(tool.get_info())
|
|
for items in grouped.values():
|
|
items.sort(key=lambda item: (item["capability"], item["name"]))
|
|
return dict(sorted(grouped.items()))
|
|
|
|
def tier_summary(self) -> dict[str, dict[str, int]]:
|
|
"""Summarize tool counts by tier and status.
|
|
|
|
Returns:
|
|
{"core": {"available": 5, "unavailable": 2, "degraded": 0}, ...}
|
|
"""
|
|
summary: dict[str, dict[str, int]] = {}
|
|
for tier in ToolTier:
|
|
tier_tools = self.get_by_tier(tier)
|
|
counts = {"available": 0, "unavailable": 0, "degraded": 0}
|
|
for t in tier_tools:
|
|
status = t.get_status().value
|
|
counts[status] = counts.get(status, 0) + 1
|
|
if tier_tools:
|
|
summary[tier.value] = counts
|
|
return summary
|
|
|
|
def provider_menu(self) -> dict[str, dict[str, Any]]:
|
|
"""Generate a capability-grouped provider menu for user-facing display.
|
|
|
|
Returns a dict like:
|
|
{
|
|
"video_generation": {
|
|
"available": [{"name": ..., "provider": ..., "best_for": ...}],
|
|
"unavailable": [{"name": ..., "provider": ..., "install_instructions": ...}],
|
|
"total": 12,
|
|
"configured": 2,
|
|
},
|
|
...
|
|
}
|
|
|
|
This powers the agent's preflight provider menu — the agent reads this
|
|
output and presents it to the user. Adding a new tool to tools/ is
|
|
enough; this method auto-discovers it.
|
|
"""
|
|
self.ensure_discovered()
|
|
menu: dict[str, dict[str, Any]] = {}
|
|
|
|
# Skip selectors — they aggregate, they aren't providers themselves
|
|
tools = [t for t in self._tools.values() if t.provider != "selector"]
|
|
|
|
for tool in tools:
|
|
cap = tool.capability
|
|
if cap not in menu:
|
|
menu[cap] = {"available": [], "unavailable": [], "total": 0, "configured": 0}
|
|
|
|
info = tool.get_info()
|
|
status = tool.get_status()
|
|
entry = {
|
|
"name": tool.name,
|
|
"provider": tool.provider,
|
|
"runtime": tool.runtime.value,
|
|
"best_for": tool.best_for,
|
|
"install_instructions": tool.install_instructions,
|
|
"status": status.value,
|
|
}
|
|
for extra_key in (
|
|
"source_provider_menu",
|
|
"source_provider_summary",
|
|
"render_engines",
|
|
"remotion_note",
|
|
"provider_matrix",
|
|
):
|
|
if extra_key in info:
|
|
entry[extra_key] = info[extra_key]
|
|
|
|
if status == ToolStatus.AVAILABLE:
|
|
menu[cap]["available"].append(entry)
|
|
menu[cap]["configured"] += 1
|
|
else:
|
|
menu[cap]["unavailable"].append(entry)
|
|
menu[cap]["total"] += 1
|
|
|
|
for bucket in menu.values():
|
|
bucket["available"].sort(key=lambda entry: (entry["provider"], entry["name"]))
|
|
bucket["unavailable"].sort(key=lambda entry: (entry["provider"], entry["name"]))
|
|
|
|
return dict(sorted(menu.items()))
|
|
|
|
def provider_menu_summary(self) -> dict[str, Any]:
|
|
"""Compact, human-ready rollup of provider_menu() for onboarding/preflight.
|
|
|
|
Returns a dict shaped for the "N of M configured" capability menu the
|
|
agent is supposed to present to the user per AGENT_GUIDE.md → "Provider
|
|
Menu (Mandatory at Preflight)". Collapses the firehose of
|
|
support_envelope() into something the agent can paraphrase in plain
|
|
language in a few lines.
|
|
|
|
Example output (abbreviated):
|
|
{
|
|
"composition_runtimes": {
|
|
"ffmpeg": True,
|
|
"remotion": True,
|
|
"hyperframes": True,
|
|
},
|
|
"capabilities": [
|
|
{"capability": "video_generation", "configured": 10, "total": 16,
|
|
"available_providers": ["fal", "heygen", ...],
|
|
"unavailable_providers": ["openai", ...]},
|
|
...
|
|
],
|
|
"setup_offers": [
|
|
{"capability": "music_generation", "tool": "suno_music",
|
|
"install_instructions": "Add SUNO_API_KEY to .env"},
|
|
...
|
|
],
|
|
"runtime_warnings": [
|
|
"hyperframes: npm package `hyperframes` not resolvable: ...",
|
|
...
|
|
],
|
|
}
|
|
|
|
Agents should use this as the source for the preflight capability
|
|
menu rather than rendering `support_envelope()` or `provider_menu()`
|
|
raw. See AGENT_GUIDE.md > "Provider Menu (Mandatory at Preflight)".
|
|
"""
|
|
self.ensure_discovered()
|
|
menu = self.provider_menu()
|
|
|
|
# Composition runtimes — lift from video_compose.get_info() since
|
|
# they're the signal the runtime-selection contract depends on.
|
|
comp_runtimes: dict[str, bool] = {}
|
|
runtime_warnings: list[str] = []
|
|
vc = self._tools.get("video_compose")
|
|
if vc is not None:
|
|
info = vc.get_info()
|
|
engines = info.get("render_engines") or {}
|
|
comp_runtimes = {k: bool(v) for k, v in engines.items()}
|
|
# If hyperframes_compose is registered, surface its npm-resolve reasons
|
|
# explicitly — those are the "looks available but isn't" failures.
|
|
hf = self._tools.get("hyperframes_compose")
|
|
if hf is not None:
|
|
hf_info = hf.get_info()
|
|
rc = hf_info.get("hyperframes_runtime") or {}
|
|
for reason in rc.get("reasons") or []:
|
|
runtime_warnings.append(f"hyperframes: {reason}")
|
|
|
|
# Capabilities rollup (configured/total + provider lists).
|
|
# When a provider has multiple tools (e.g. seedance-fal and
|
|
# seedance-replicate both reporting provider="seedance"), a
|
|
# naive set-split shows the provider in BOTH available and
|
|
# unavailable — confusing for users. Dedupe: if the provider has
|
|
# any available tool, do NOT list it as unavailable.
|
|
capabilities: list[dict[str, Any]] = []
|
|
for cap, bucket in menu.items():
|
|
available_providers = {
|
|
e.get("provider") for e in bucket.get("available", [])
|
|
} - {None}
|
|
unavailable_providers = (
|
|
{e.get("provider") for e in bucket.get("unavailable", [])}
|
|
- {None}
|
|
- available_providers # provider with any available tool wins
|
|
)
|
|
capabilities.append(
|
|
{
|
|
"capability": cap,
|
|
"configured": bucket.get("configured", 0),
|
|
"total": bucket.get("total", 0),
|
|
"available_providers": sorted(available_providers),
|
|
"unavailable_providers": sorted(unavailable_providers),
|
|
}
|
|
)
|
|
|
|
# Setup offers — unavailable tools that would be 1-minute env-var fixes.
|
|
# Filter for short install instructions referencing an env var so the
|
|
# agent can lead with the easy wins.
|
|
setup_offers: list[dict[str, Any]] = []
|
|
for cap, bucket in menu.items():
|
|
for entry in bucket.get("unavailable", []):
|
|
hint = entry.get("install_instructions") or ""
|
|
# Heuristic: 1-minute fixes mention an env var or API key.
|
|
if any(k in hint.lower() for k in ["api key", "env", "_key=", "_api"]):
|
|
setup_offers.append(
|
|
{
|
|
"capability": cap,
|
|
"tool": entry.get("name"),
|
|
"provider": entry.get("provider"),
|
|
"install_instructions": hint,
|
|
}
|
|
)
|
|
|
|
result = {
|
|
"composition_runtimes": comp_runtimes,
|
|
"capabilities": capabilities,
|
|
"setup_offers": setup_offers,
|
|
"runtime_warnings": runtime_warnings,
|
|
}
|
|
# Normalize em-dashes and en-dashes to ASCII so preflight output prints
|
|
# cleanly on Windows cp1252 stdout (the default on Git Bash / PowerShell
|
|
# without PYTHONIOENCODING=utf-8). Agents paste this dict into chat; a
|
|
# mojibake `�` in an install_instructions string looks like a bug.
|
|
# Markdown docs keep their typographic dashes; this only touches the
|
|
# runtime-reported strings.
|
|
return _scrub_unicode_dashes(result)
|
|
|
|
# Post-hoc fix: narrow helper that keeps the registry output stdout-safe on
|
|
# Windows cp1252 without imposing a new style rule on every tool author.
|
|
|
|
def gpu_required_tools(self) -> list[str]:
|
|
"""List tools that require GPU (VRAM > 0)."""
|
|
return [
|
|
t.name for t in self._tools.values()
|
|
if t.resource_profile.vram_mb > 0
|
|
]
|
|
|
|
def network_required_tools(self) -> list[str]:
|
|
"""List tools that require network access."""
|
|
return [
|
|
t.name for t in self._tools.values()
|
|
if t.resource_profile.network_required
|
|
]
|
|
|
|
|
|
# Singleton registry instance
|
|
registry = ToolRegistry()
|