File size: 6,238 Bytes
ce5e147
 
 
 
 
 
 
 
 
 
 
 
46b0eac
ce5e147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
import streamlit as st
# from img_classification import teachable_machine_classification
# from PIL import Image, ImageOps
import streamlit_authenticator as stauth
import yaml
from yaml.loader import SafeLoader
import datetime
# import configparser
import webbrowser
import openai
from openai.error import InvalidRequestError
import requests
# from diffusers import StableDiffusionPipeline
import torch
import io
from PIL import Image


# authentification
with open('./bla.yaml') as file:
    config = yaml.load(file, Loader=SafeLoader)
authenticator = stauth.Authenticate(
    config['credentials'],
    config['cookie']['name'],
    config['cookie']['key'],
    config['cookie']['expiry_days'],
    config['preauthorized']
)

name, authentication_status, username = authenticator.login('Login', 'main')
if authentication_status:
    authenticator.logout('Logout', 'main')

    # page = st.sidebar.selectbox("ζŽ’η΄’ζˆ–ι’„ζ΅‹", ("OpenJourney",
    #     "OpenAI_Dall-E",))

    # if page == "OpenJourney":
    st.title("使用 Huggingface ζ¨‘εž‹ η”Ÿζˆε›Ύεƒ")
    st.write("model[link](https://huggingface.co/prompthero/openjourney?text=a+girl+sining+on+a+boat+on+the+river+in+a+forest)")

    # model_id = "prompthero/openjourney"
    # pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
    # pipe = pipe.to("cuda")
    # prompt = "retro serie of different cars with different colors and shapes, mdjrny-v4 style"
    # image = pipe(prompt).images[0]
    # image.save("./retro_cars.png")



    prompt1 = st.text_input("Prompt", value="θΏ™ι‡ŒθΎ“ε…₯...")
    # sizz = st.select_slider("倧小", options=(['1024x1024', '512x512', '256x256']))
    sizz = st.radio(

    "倧小",

    ('prompthero/openjourney-v4','stabilityai/stable-diffusion-2-1','lambdalabs/sd-pokemon-diffusers','nitrosocke/Arcane-Diffusion','trinart_stable_diffusion_v2'))
    # ("倧小", options=(['prompthero/openjourney-v4', 'stabilityai/stable-diffusion-2-1', 'lambdalabs/sd-pokemon-diffusers']))
    st.write(sizz)
    # st.write(sizz)
    if st.button("η”Ÿζˆ"):
        with st.spinner("η”Ÿζˆε›Ύεƒ..."):

            API_URL = "https://api-inference.huggingface.co/models/"+sizz#prompthero/openjourney-v4"
            headers = {"Authorization": f"Bearer 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"}

            def query(payload):
                response = requests.post(API_URL, headers=headers, json=payload)
                return response.content
            image_bytes = query({
                "inputs": prompt1,
            })
            # print(image_bytes)
            # You can access the image with PIL.Image for example

            image = Image.open(io.BytesIO(image_bytes))
            st.image(image)


            # model_id = "prompthero/openjourney"
            # pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
            # pipe = pipe.to("cpu")
            # prompt = prompt1
            # image = pipe(prompt).images[0]
            # st.image(image)
            # image.save("./retro_cars.png")

            # r = requests.post(
            #     "https://api.deepai.org/api/cute-creature-generator",
            #     data={
            #         'text': prompt,
            #     },
            #     headers={'api-key': 'quickstart-QUdJIGlzIGNvbWluZy4uLi4K'}
            # )
            # print(r.json())
            # st.write("图片网址[link]("+r.json()["output_url"]+")")

    # elif page == "OpenAI_Dall-E":
    #     pass
        # st.title("使用 DALL-E η”Ÿζˆε›Ύεƒ")
        # st.write("教程[link](https://learndataanalysis.org/source-code-use-ai-to-create-images-with-python-tutorial-for-beginners-openai-dall-e-api/)")
        # def generate_image(prompt, num_image=1, size='512x512', output_format='url'):
        #     """
        #     params:
        #         prompt (str):
        #         num_image (int):
        #         size (str):
        #         output_format (str):
        #     """
        #     try:
        #         images = []
        #         response = openai.Image.create(
        #             prompt=prompt,
        #             n=num_image,
        #             size=size,
        #             response_format=output_format
        #         )
        #         if output_format == 'url':
        #             for image in response['data']:
        #                 images.append(image.url)
        #         elif output_format == 'b64_json':
        #             for image in response['data']:
        #                 images.append(image.b64_json)
        #         return {'created': datetime.datetime.fromtimestamp(response['created']), 'images': images}
        #     except InvalidRequestError as e:
        #         print(e)

        # # config = configparser.ConfigParser() 
        # # config.read('credential.ini')
        # # API_KEY = config['openai']['APIKEY']
        # openai.api_key = st.secrets["OPENAI_KEY"]

        # SIZES = ('1024x1024', '512x512', '256x256')

        # # generate images (url outputs)
        # prompt = st.text_input("Prompt", value="θΏ™ι‡ŒθΎ“ε…₯...")
        # sizz = st.select_slider("倧小", options=(['1024x1024', '512x512', '256x256']))
        # # st.write(sizz)
        # if st.button("η”Ÿζˆ"):
        #     with st.spinner("η”Ÿζˆε›Ύεƒ..."):
        #         response = generate_image(prompt, num_image=1, size=SIZES[0])
        #         response['created']
        #         images = response['images']
        #         for image in images:
        #             webbrowser.open(image)
        #             st.write("图片网址[link]("+image+")")

        #         ## generate images (byte output)
        #         # response = generate_image('San Francisco and Chicago mixed', num_image=2, size=SIZES[1], output_format='b64_json')
        #         # prefix = 'demo'
        #         # for indx, image in enumerate(response['images']):
        #         #     with open(f'{prefix}_{indx}.jpg', 'wb') as f:
        #         #         f.write(b64decode(image))






elif authentication_status == False:
    st.error('Username/password is incorrect')
elif authentication_status == None:
    st.warning('Please enter your username and password')