edit : 이미지 생성시 생성 갯수 지정 가능

This commit is contained in:
2025-01-17 13:26:19 +09:00
parent bb54fdd85e
commit c296204541
6 changed files with 36 additions and 11 deletions

View File

@@ -11,4 +11,15 @@ def prompt_to_filenames(prompt):
else:
filename += i
return filename
return filename
def download_range(download_count:int):
_min = 1
_max = 4
if _min <= download_count and download_count <= _max:
return True
return False