feat: use speed steps as default instead of hardcoded 30

This commit is contained in:
Manuel Schmid 2024-05-30 00:20:23 +02:00
parent db8228d8f5
commit f8f2455b65
No known key found for this signature in database
GPG Key ID: 32C4F7569B40B84B
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ class MetadataParser(ABC):
self.full_prompt: str = ''
self.raw_negative_prompt: str = ''
self.full_negative_prompt: str = ''
self.steps: int = 30
self.steps: int = Steps.SPEED.value
self.base_model_name: str = ''
self.base_model_hash: str = ''
self.refiner_model_name: str = ''