diff --git a/src/lerobot/annotations/steerable_pipeline/config.py b/src/lerobot/annotations/steerable_pipeline/config.py index f7d80c28a..1d8c6c941 100644 --- a/src/lerobot/annotations/steerable_pipeline/config.py +++ b/src/lerobot/annotations/steerable_pipeline/config.py @@ -18,7 +18,6 @@ from __future__ import annotations from dataclasses import dataclass, field from pathlib import Path -from typing import Literal @dataclass @@ -61,7 +60,8 @@ class Module3Config: class VlmConfig: """Shared Qwen-VL client configuration.""" - backend: Literal["vllm", "transformers", "stub"] = "vllm" + backend: str = "vllm" + """One of ``vllm``, ``transformers``, or ``stub`` (tests only).""" model_id: str = "Qwen/Qwen3.6-27B-FP8" max_new_tokens: int = 512 temperature: float = 0.2