allow loading high level tasks

This commit is contained in:
Jade Choghari
2025-12-10 16:22:54 +00:00
parent 8edbd5b55e
commit 3c11946755
6 changed files with 770 additions and 56 deletions
+1 -1
View File
@@ -513,7 +513,7 @@ class Qwen3VL(BaseVLM):
data = json.loads(match.group())
skills_data = data.get("skills", [])
return [Skill.from_dict(s) for s in skills_data]
breakpoint()
raise ValueError(f"Could not parse skills from response: {response[:200]}...")