Singularity666 commited on
Commit
288487d
·
1 Parent(s): 28c74aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -75
app.py CHANGED
@@ -1,92 +1,42 @@
1
  import streamlit as st
2
- import os
3
  import requests
4
  from PIL import Image
5
  from io import BytesIO
6
 
7
- # Set up environment variables for API keys
8
- os.environ['CLIPDROP_API_KEY'] = '1143a102dbe21628248d4bb992b391a49dc058c584181ea72e17c2ccd49be9ca69ccf4a2b97fc82c89ff1029578abbea'
9
- os.environ['STABILITY_API_KEY'] = 'sk-GBmsWR78MmCSAWGkkC1CFgWgE6GPgV00pNLJlxlyZWyT3QQO'
10
- os.environ['REPLICATE_API_TOKEN'] = 'r8_Tm3LQMS81QaGXzzdGVRyUCOQ3cuNd1i1sJlqp'
11
 
 
 
 
12
 
13
- # Importing Replicate and Stability SDK libraries
14
- import replicate
15
- import stability_sdk.interfaces.gooseai.generation.generation_pb2 as generation
16
 
17
- def upscale_image(image_path):
18
- # Open the image file
19
- with open(image_path, "rb") as img_file:
20
- # Run the GFPGAN model
21
- output = replicate.run(
22
- "tencentarc/gfpgan:9283608cc6b7be6b65a8e44983db012355fde4132009bf99d976b2f0896856a3",
23
- input={"img": img_file, "version": "v1.4", "scale": 16}
24
- )
25
-
26
- # The output is a URI of the processed image
27
- # We will retrieve the image data and save it
28
- response = requests.get(output)
29
- img = Image.open(BytesIO(response.content))
30
 
31
- return img
32
-
33
- def generate_and_upscale_image(prompt):
34
- # Make a POST request to the ClipDrop text-to-image API
35
- url = 'https://clipdrop-api.co/text-to-image/v1'
36
- headers = {'x-api-key': os.environ['CLIPDROP_API_KEY']}
37
- data = {'prompt': prompt}
38
- response = requests.post(url, headers=headers, data=data)
39
-
40
- if response.status_code == 200:
41
- # Get the generated image from the response
42
- img = Image.open(BytesIO(response.content))
43
-
44
- # Upscale the generated image using the Stability API
45
- upscale_api = replicate.StabilityInference(
46
- key=os.environ['STABILITY_API_KEY'],
47
- upscale_engine="stable-diffusion-x4-latent-upscaler"
48
- )
49
- upscale_responses = upscale_api.upscale(init_image=img)
50
-
51
- if upscale_responses:
52
- # Get the upscaled image from the response
53
- upscaled_img = None
54
- for resp in upscale_responses:
55
- for artifact in resp.artifacts:
56
- if artifact.type == generation.ARTIFACT_IMAGE:
57
- upscaled_img = Image.open(BytesIO(artifact.binary))
58
- break
59
- if upscaled_img:
60
- break
61
- return upscaled_img
62
- else:
63
- st.error('Failed to upscale the image.')
64
- else:
65
- st.error('Failed to generate image from text prompt.')
66
 
67
  def main():
68
- st.title("Image Upscaling")
69
- st.write("Upload an image or enter a text prompt to generate and upscale an image.")
70
 
71
- uploaded_file = st.file_uploader("Choose an image...", type=["png", "jpg", "jpeg"])
72
- text_prompt = st.text_input("Enter a text prompt:", max_chars=1000)
73
 
74
- if uploaded_file is not None:
75
- with open("temp_img.png", "wb") as f:
76
- f.write(uploaded_file.getbuffer())
77
- st.success("Uploaded image successfully!")
 
78
 
79
- if st.button("Upscale Image"):
80
- # Upscale the uploaded image using GFPGAN
81
- img = upscale_image("temp_img.png")
82
- st.image(img, caption='Upscaled Image (GFPGAN)', use_column_width=True)
83
 
84
- elif text_prompt != "":
85
- if st.button("Generate and Upscale"):
86
- # Generate and upscale an image from the text prompt
87
- img = generate_and_upscale_image(text_prompt)
88
- if img:
89
- st.image(img, caption='Generated and Upscaled Image', use_column_width=True)
90
-
91
  if __name__ == "__main__":
92
  main()
 
1
  import streamlit as st
 
2
  import requests
3
  from PIL import Image
4
  from io import BytesIO
5
 
6
+ API_KEY = "1143a102dbe21628248d4bb992b391a49dc058c584181ea72e17c2ccd49be9ca69ccf4a2b97fc82c89ff1029578abbea"
7
+ API_URL = "https://clipdrop-api.co/text-to-image/v1"
 
 
8
 
9
+ def generate_image(prompt):
10
+ headers = {"x-api-key": API_KEY}
11
+ files = {"prompt": (None, prompt, "text/plain")}
12
 
13
+ try:
14
+ response = requests.post(API_URL, files=files, headers=headers)
15
+ response.raise_for_status()
16
 
17
+ # Get the generated image
18
+ image = Image.open(BytesIO(response.content))
 
 
 
 
 
 
 
 
 
 
 
19
 
20
+ return image
21
+ except requests.exceptions.RequestException as e:
22
+ st.error(f"Error occurred during image generation: {str(e)}")
23
+ return None
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
  def main():
26
+ st.title("Text-to-Image Generator")
 
27
 
28
+ # Text prompt input
29
+ prompt = st.text_input("Enter a text prompt")
30
 
31
+ if prompt:
32
+ # Generate image when the "Generate Image" button is clicked
33
+ if st.button("Generate Image"):
34
+ st.write("Generating image...")
35
+ image = generate_image(prompt)
36
 
37
+ if image:
38
+ # Display the generated image
39
+ st.image(image, caption="Generated Image", use_column_width=True)
 
40
 
 
 
 
 
 
 
 
41
  if __name__ == "__main__":
42
  main()