Spaces:
Runtime error
Runtime error
Commit
·
288487d
1
Parent(s):
28c74aa
Update app.py
Browse files
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 |
-
|
8 |
-
|
9 |
-
os.environ['STABILITY_API_KEY'] = 'sk-GBmsWR78MmCSAWGkkC1CFgWgE6GPgV00pNLJlxlyZWyT3QQO'
|
10 |
-
os.environ['REPLICATE_API_TOKEN'] = 'r8_Tm3LQMS81QaGXzzdGVRyUCOQ3cuNd1i1sJlqp'
|
11 |
|
|
|
|
|
|
|
12 |
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
|
17 |
-
|
18 |
-
|
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
|
32 |
-
|
33 |
-
|
34 |
-
|
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
|
69 |
-
st.write("Upload an image or enter a text prompt to generate and upscale an image.")
|
70 |
|
71 |
-
|
72 |
-
|
73 |
|
74 |
-
if
|
75 |
-
|
76 |
-
|
77 |
-
|
|
|
78 |
|
79 |
-
|
80 |
-
|
81 |
-
|
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()
|