Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ if not HF_TOKEN:
|
|
12 |
raise ValueError("Hugging Face token not found. Please set the 'HF_TOKEN' environment variable.")
|
13 |
|
14 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
15 |
-
model_repo_id = "stabilityai/
|
16 |
|
17 |
if torch.cuda.is_available():
|
18 |
torch_dtype = torch.float16
|
|
|
12 |
raise ValueError("Hugging Face token not found. Please set the 'HF_TOKEN' environment variable.")
|
13 |
|
14 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
15 |
+
model_repo_id = "stabilityai/stable-diffusion-3.5-large" # Replace with the model you would like to use
|
16 |
|
17 |
if torch.cuda.is_available():
|
18 |
torch_dtype = torch.float16
|