Hermes Agent 396a27f43a feat: KTV pipeline adapter — 17 step handlers, decoupled from engine
Adapter pattern: pipeline-service is the stable engine,
pipeline-ktv registers its step_types and handlers independently.

- 17 KTV step handlers (audio/video/demucs/lyrics/music/subtitle/video)
- Step type metadata with categories (media/llm)
- load_ktv_adapter() one-call integration
- Depends on pipeline_service>=3.1.0
2026-06-16 11:19:13 +08:00

17 lines
460 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""pipeline_ktv — KTV产线适配器
将KTV产线的17个step handlers注册到pipeline-service引擎。
独立的适配器包不侵入pipeline-service核心代码。
Usage in host app:
from pipeline_service import load_pipeline_service
from pipeline_ktv import load_ktv_adapter
load_pipeline_service()
load_ktv_adapter()
"""
from .adapter import load_ktv_adapter, register_ktv_handlers, register_ktv_step_types
__version__ = "1.0.0"