edit : 이미지생성 api(gemini) 추가

This commit is contained in:
2025-09-23 09:55:40 +09:00
parent 605a7660c4
commit 39d5683eee
5 changed files with 64 additions and 3 deletions

View File

@@ -26,6 +26,7 @@ class Config:
self.sftp_port = 22
self.sftp_id = "fermat"
self.sftp_pw = "fermat3514"
self.db_pw = "1234"
if not os.path.exists(self.remote_folder):
os.makedirs(self.remote_folder)
@@ -34,6 +35,8 @@ class Config:
self.config = 'release'
self.local_folder = "./result" # 결과물 저장 폴더
self.db_pw = "Fermat3514!"
if not os.path.exists(self.local_folder):
os.makedirs(self.local_folder)