fix: remove select param from registry find_many (custom Prisma wrapper does not support it)

This commit is contained in:
Ishaan Jaffer 2026-04-17 18:16:09 -07:00
parent b83e6dae2d
commit 96716c69bd
No known key found for this signature in database

View file

@ -275,12 +275,6 @@ class LiteLLMSkillsHandler:
take=limit,
skip=offset,
order={"created_at": "desc"},
select={
"skill_id": True,
"display_title": True,
"description": True,
"metadata": True,
},
)
result = []