martynka commited on
Commit
90a170c
·
verified ·
1 Parent(s): 35e0c74

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +36 -32
app.py CHANGED
@@ -1,44 +1,48 @@
1
  import gradio as gr
2
  import requests
3
- from io import BytesIO
4
  from PIL import Image
5
  import os
6
- # Load Stable Diffusion model
7
- #HF_TOKEN = os.environ.get("HF_TOKEN") if os.environ.get("HF_TOKEN") else None
8
- #model = gr.load("models/stabilityai/stable-diffusion-3.5-large", hf_token=HF_TOKEN)
9
- model = gr.Interface.load("models/stabilityai/stable-diffusion-3.5-large")
10
- print(model)
11
- # Chevereto API details
12
- CHEVERETO_API_URL = os.environ.get("api_url") # Replace with your Chevereto API endpoint
13
- CHEVERETO_API_KEY = os.environ.get("API_KEY") # Replace with your API key
14
- CHEVERETO_ALBUM_ID = os.environ.get("ALBUM_ID") # Replace with the album ID where you want to store images
15
-
16
- # Upload image to Chevereto
17
- def upload_to_chevereto(image: Image.Image) -> str:
18
- # Convert image to bytes
19
- buffered = BytesIO()
20
- image.save(buffered, format="PNG")
21
- files = {"source": buffered.getvalue()} # Convert to binary for upload
22
-
23
- # Set API parameters
24
- data = {
25
- "key": CHEVERETO_API_KEY,
26
- "format": "json",
27
- "album": CHEVERETO_ALBUM_ID # Specify album ID
28
- }
29
 
30
- # Upload request
31
- response = requests.post(CHEVERETO_API_URL, files=files, data=data)
32
 
 
 
 
 
 
 
 
 
 
 
 
33
  if response.status_code == 200:
34
- return response.json()["image"]["url"] # Return public URL of uploaded image
35
- return "Error uploading image"
 
36
 
37
- # Generate and upload the image
38
  def generate_image_and_upload(prompt: str) -> str:
39
- #img = model.submit([prompt]) # Get generated image
40
- img = model.predict(prompt)
41
- return upload_to_chevereto(img) # Upload and return the URL
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
  # Define Gradio API returning the Chevereto public URL
44
  iface = gr.Interface(fn=generate_image_and_upload, inputs="text", outputs="text")
 
1
  import gradio as gr
2
  import requests
3
+ import os
4
  from PIL import Image
5
  import os
6
+ # Load environment variables
7
+ CHEVERETO_API_URL = os.environ.get("API_URL") # Your Chevereto API endpoint
8
+ CHEVERETO_API_KEY = os.environ.get("API_KEY") # Your Chevereto API Key
9
+ CHEVERETO_ALBUM_ID = os.environ.get("ALBUM_ID") # Your Album ID
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
+ # Load the Gradio model
12
+ model = gr.Interface.load("models/stabilityai/stable-diffusion-3.5-large")
13
 
14
+ def upload_to_chevereto(img_path: str) -> str:
15
+ """Uploads an image to Chevereto and returns the public image URL."""
16
+ with open(img_path, "rb") as image_file:
17
+ files = {"source": image_file}
18
+ data = {
19
+ "key": CHEVERETO_API_KEY,
20
+ "format": "json",
21
+ "album": CHEVERETO_ALBUM_ID # Include the album ID
22
+ }
23
+ response = requests.post(CHEVERETO_API_URL, files=files, data=data)
24
+
25
  if response.status_code == 200:
26
+ return response.json().get("image", {}).get("url") # Return the image URL
27
+ else:
28
+ return f"Error uploading image: {response.text}" # Debugging error message
29
 
 
30
  def generate_image_and_upload(prompt: str) -> str:
31
+ """Generates an image using the AI model and uploads it to Chevereto."""
32
+ img = model(prompt) # Generate image
33
+
34
+ if isinstance(img, list):
35
+ img = img[0] # If Gradio returns a list, get the first image
36
+
37
+ if isinstance(img, Image.Image):
38
+ img_path = "generated_image.png"
39
+ img.save(img_path, format="PNG") # Save locally before uploading
40
+
41
+ return upload_to_chevereto(img_path) # Upload and return URL
42
+ else:
43
+ return "Error: Model did not return a valid image"
44
+
45
+
46
 
47
  # Define Gradio API returning the Chevereto public URL
48
  iface = gr.Interface(fn=generate_image_and_upload, inputs="text", outputs="text")