* feat: introduce hindsight-api-slim and hindsight-all-slim packages Closes #552 - Move all source code from hindsight-api/ to new hindsight-api-slim/ - hindsight-api-slim has heavy ML deps (torch, sentence-transformers, transformers, einops, flashrank, mlx, mlx-lm, safetensors) and pg0-embedded as optional extras: [local-ml], [embedded-db], [all] - hindsight-api becomes a zero-code meta-package depending on hindsight-api-slim[all] for full backward compatibility - Add hindsight-all-slim meta-package: hindsight-api-slim + client + embed - hindsight-all updated to depend on hindsight-api-slim[all] - pg0.py: lazy-import pg0 with clear ImportError pointing to [embedded-db] - Dockerfile: replace sed hack with proper uv sync --extra flags - Update release.yml, test.yml, lint.sh, release.sh, CLAUDE.md and all path references throughout the repo * refactor: rename hindsight/ directory to hindsight-all/ * docs: document hindsight-api-slim and hindsight-all-slim package variants Add package variants table and extras explanation to installation.md * docs: remove emojis from installation.md, use professional tone * docs: link Docker slim variant to pip package variants section * docs: consolidate Docker image variants into single table * ci: fix working-directory paths after package restructure - Replace all hindsight-api → hindsight-api-slim in test.yml - Replace hindsight → hindsight-all in test.yml - Add --extra embedded-db to test-embed API install step * ci: add local-ml and embedded-db extras to API sync steps These extras were previously implicit in the old hindsight-api package (which bundled everything). Now that hindsight-api-slim uses optional extras, we must explicitly request local-ml and embedded-db in CI. * ci: add API install step with embedded-db to test-embed smoke test The smoke test starts hindsight-api as a daemon, which requires pg0-embedded. Add a dedicated install step for hindsight-api-slim with embedded-db extra so the daemon can start successfully. * ci: remove --no-install-project when using optional extras When --no-install-project is combined with --extra, the optional deps are not installed because extras require the project to be active. Remove --no-install-project from steps that need local-ml or embedded-db. * ci: fix ordering of uv sync steps to preserve optional extras When uv sync runs for a different workspace member, it removes optional extras installed for other members. Fix by always running extra-requiring API sync last, after other workspace member syncs. Also remove --no-install-project from embedded-db sync in test-embed, as --no-install-project prevents optional extras from being active. * ci: add local-ml extra to test-embed API install for smoke test The smoke test starts the full API server which needs sentence-transformers for local embeddings (default provider). Add local-ml extra to the install. * ci: simplify extras with --all-extras and add slim pip smoke test - Replace explicit --extra local-ml --extra embedded-db with --all-extras for cleaner, more maintainable sync steps - Add test-pip-slim job: tests hindsight-api-slim[embedded-db] without local ML models, using Cohere for embeddings/reranking (mirrors Docker slim smoke test approach) * ci: simplify slim smoke test to health check only (mirrors Docker test)
125 lines
4.1 KiB
Python
125 lines
4.1 KiB
Python
"""Extension loader utilities."""
|
|
|
|
import importlib
|
|
import logging
|
|
import os
|
|
from typing import TYPE_CHECKING, TypeVar
|
|
|
|
from hindsight_api.extensions.base import Extension
|
|
|
|
if TYPE_CHECKING:
|
|
from hindsight_api.extensions.context import ExtensionContext
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
T = TypeVar("T", bound=Extension)
|
|
|
|
|
|
class ExtensionLoadError(Exception):
|
|
"""Raised when an extension fails to load."""
|
|
|
|
pass
|
|
|
|
|
|
def load_extension(
|
|
prefix: str,
|
|
base_class: type[T],
|
|
env_prefix: str = "HINDSIGHT_API",
|
|
context: "ExtensionContext | None" = None,
|
|
) -> T | None:
|
|
"""
|
|
Load an extension from environment variable configuration.
|
|
|
|
The extension class is specified via {env_prefix}_{prefix}_EXTENSION environment
|
|
variable in the format "module.path:ClassName".
|
|
|
|
Configuration for the extension is collected from all environment variables
|
|
matching {env_prefix}_{prefix}_* (excluding the EXTENSION variable itself).
|
|
|
|
Args:
|
|
prefix: The extension prefix (e.g., "OPERATION_VALIDATOR").
|
|
base_class: The base class that the extension must inherit from.
|
|
env_prefix: The environment variable prefix (default: "HINDSIGHT_API").
|
|
context: Optional ExtensionContext to provide system APIs to the extension.
|
|
|
|
Returns:
|
|
An instance of the extension, or None if not configured.
|
|
|
|
Raises:
|
|
ExtensionLoadError: If the extension fails to load or validate.
|
|
|
|
Example:
|
|
HINDSIGHT_API_OPERATION_VALIDATOR_EXTENSION=mypackage.validators:MyValidator
|
|
HINDSIGHT_API_OPERATION_VALIDATOR_MAX_REQUESTS=100
|
|
|
|
ext = load_extension("OPERATION_VALIDATOR", OperationValidatorExtension)
|
|
# ext.config == {"max_requests": "100"}
|
|
"""
|
|
env_var = f"{env_prefix}_{prefix}_EXTENSION"
|
|
ext_path = os.getenv(env_var)
|
|
|
|
if not ext_path:
|
|
logger.debug(f"No extension configured for {env_var}")
|
|
return None
|
|
|
|
logger.info(f"Loading extension from {env_var}={ext_path}")
|
|
|
|
# Parse "module.path:ClassName"
|
|
if ":" not in ext_path:
|
|
raise ExtensionLoadError(f"Invalid extension path '{ext_path}'. Expected format: 'module.path:ClassName'")
|
|
|
|
module_path, class_name = ext_path.rsplit(":", 1)
|
|
|
|
# Import the module
|
|
try:
|
|
module = importlib.import_module(module_path)
|
|
except ImportError as e:
|
|
raise ExtensionLoadError(f"Failed to import extension module '{module_path}': {e}") from e
|
|
|
|
# Get the class
|
|
try:
|
|
ext_class = getattr(module, class_name)
|
|
except AttributeError as e:
|
|
raise ExtensionLoadError(f"Extension class '{class_name}' not found in module '{module_path}'") from e
|
|
|
|
# Validate inheritance
|
|
if not isinstance(ext_class, type) or not issubclass(ext_class, base_class):
|
|
raise ExtensionLoadError(f"Extension class '{ext_class.__name__}' must inherit from '{base_class.__name__}'")
|
|
|
|
# Collect configuration from environment variables
|
|
config = _collect_config(env_prefix, prefix)
|
|
|
|
logger.info(f"Loaded extension {ext_class.__name__} with config keys: {list(config.keys())}")
|
|
|
|
# Instantiate the extension
|
|
try:
|
|
extension = ext_class(config)
|
|
except Exception as e:
|
|
raise ExtensionLoadError(f"Failed to instantiate extension '{ext_class.__name__}': {e}") from e
|
|
|
|
# Set the context if provided
|
|
if context is not None:
|
|
extension.set_context(context)
|
|
logger.debug(f"Set context on extension {ext_class.__name__}")
|
|
|
|
return extension
|
|
|
|
|
|
def _collect_config(env_prefix: str, prefix: str) -> dict[str, str]:
|
|
"""
|
|
Collect configuration from environment variables.
|
|
|
|
Collects all variables matching {env_prefix}_{prefix}_* except for
|
|
{env_prefix}_{prefix}_EXTENSION, strips the prefix, and lowercases keys.
|
|
"""
|
|
config = {}
|
|
full_prefix = f"{env_prefix}_{prefix}_"
|
|
extension_var = f"{full_prefix}EXTENSION"
|
|
|
|
for key, value in os.environ.items():
|
|
if key.startswith(full_prefix) and key != extension_var:
|
|
# Strip prefix and lowercase the key
|
|
config_key = key[len(full_prefix) :].lower()
|
|
config[config_key] = value
|
|
|
|
return config
|