Pijush2023 commited on
Commit
ff4ddb2
·
verified ·
1 Parent(s): e94d646

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -24,7 +24,7 @@
24
  # from huggingface_hub import login
25
 
26
  # # Check if the token is already set in the environment variables
27
- # _hftoken = os.getenv("HF_TOKEN")
28
 
29
  # if hf_token is None:
30
  # # If the token is not set, prompt for it (this should be done securely)
@@ -888,12 +888,14 @@ from datetime import datetime
888
  import numpy as np
889
  from gtts import gTTS
890
  from googlemaps import Client as GoogleMapsClient
891
- from diffusers import StableDiffusion3Pipeline
892
  import concurrent.futures
893
  from PIL import Image
 
894
 
895
  # Check if the token is already set in the environment variables
896
  hf_token = os.getenv("HF_TOKEN")
 
897
  if hf_token is None:
898
  # If the token is not set, prompt for it (this should be done securely)
899
  print("Please set your Hugging Face token in the environment variables.")
@@ -1302,7 +1304,7 @@ def generate_audio_elevenlabs(text):
1302
  return None
1303
 
1304
  # Stable Diffusion setup
1305
- pipe = StableDiffusion3Pipeline.from_pretrained("stabilityai/stable-diffusion-3-medium-diffusers", torch_dtype=torch.float16)
1306
  pipe = pipe.to("cuda")
1307
 
1308
  def generate_image(prompt):
@@ -1368,3 +1370,4 @@ demo.launch(share=True)
1368
 
1369
 
1370
 
 
 
24
  # from huggingface_hub import login
25
 
26
  # # Check if the token is already set in the environment variables
27
+ # hf_token = os.getenv("HF_TOKEN")
28
 
29
  # if hf_token is None:
30
  # # If the token is not set, prompt for it (this should be done securely)
 
888
  import numpy as np
889
  from gtts import gTTS
890
  from googlemaps import Client as GoogleMapsClient
891
+ from diffusers import StableDiffusionPipeline
892
  import concurrent.futures
893
  from PIL import Image
894
+ from huggingface_hub import login
895
 
896
  # Check if the token is already set in the environment variables
897
  hf_token = os.getenv("HF_TOKEN")
898
+
899
  if hf_token is None:
900
  # If the token is not set, prompt for it (this should be done securely)
901
  print("Please set your Hugging Face token in the environment variables.")
 
1304
  return None
1305
 
1306
  # Stable Diffusion setup
1307
+ pipe = StableDiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-3-base", torch_dtype=torch.float16)
1308
  pipe = pipe.to("cuda")
1309
 
1310
  def generate_image(prompt):
 
1370
 
1371
 
1372
 
1373
+