💥 Add generic converter pipeline (#104)

* Add generic converter pipeline

Co-authored-by: Codex <codex@openai.com>

* Update generic converter README

Co-authored-by: Codex <codex@openai.com>

* Simplify generic converter README

Co-authored-by: Codex <codex@openai.com>

* Simplify adapter task loading API

Co-authored-by: Codex <codex@openai.com>

* Require adapter output path

Co-authored-by: Codex <codex@openai.com>

* Use adapter temp output path for LIBERO

Co-authored-by: Codex <codex@openai.com>

* Remove LIBERO changes from generic converter PR

Co-authored-by: Codex <codex@openai.com>

* update readme

---------

Co-authored-by: Codex <codex@openai.com>
This commit is contained in:
Qizhi Chen
2026-06-11 22:16:44 -07:00
committed by GitHub
parent 2ef2370d66
commit f40e09f481
6 changed files with 408 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
from .adapter import BaseAdapter
from .pipeline import run_converter
from .utils import ConversionTask, FeatureSpec, TaskMetadata
__all__ = [
"BaseAdapter",
"ConversionTask",
"FeatureSpec",
"TaskMetadata",
"run_converter",
]