diff --git a/invokeai/app/services/invocation_cache/invocation_cache_memory.py b/invokeai/app/services/invocation_cache/invocation_cache_memory.py index aa955e3ec4..d15269caf9 100644 --- a/invokeai/app/services/invocation_cache/invocation_cache_memory.py +++ b/invokeai/app/services/invocation_cache/invocation_cache_memory.py @@ -61,9 +61,7 @@ class MemoryInvocationCache(InvocationCacheBase): self._delete_oldest_access(number_to_delete) self._cache[key] = CachedItem( invocation_output, - invocation_output.model_dump_json( - warnings=False, exclude_defaults=True, exclude_unset=True, include={"type"} - ), + invocation_output.model_dump_json(warnings=False, exclude_defaults=True, exclude_unset=True), ) def _delete_oldest_access(self, number_to_delete: int) -> None: