Fix CacheService list_media and recipe inputs type

- Add list_media method to CacheService
- Change recipe run inputs from List to dict

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
giles
2026-01-11 13:28:27 +00:00
parent 4f011a66ff
commit 8591faf0fc
2 changed files with 20 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ class RecipeUploadRequest(BaseModel):
class RecipeRunRequest(BaseModel):
inputs: List[str] = []
inputs: dict = {}
def get_recipe_service():