Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,9 @@ from huggingface_hub import InferenceClient
|
|
3 |
from gradio_client import Client
|
4 |
import re
|
5 |
|
|
|
|
|
|
|
6 |
# Load custom CSS
|
7 |
with open('style.css') as f:
|
8 |
st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)
|
@@ -87,7 +90,6 @@ def generate_image(prompt):
|
|
87 |
return None
|
88 |
|
89 |
def main():
|
90 |
-
st.set_page_config(layout="wide")
|
91 |
st.title("Free Waifu Character Generator")
|
92 |
st.write("""
|
93 |
Welcome to the Free Waifu Character Generator! This app allows you to create a unique waifu with just one click.
|
|
|
3 |
from gradio_client import Client
|
4 |
import re
|
5 |
|
6 |
+
# Set page configuration
|
7 |
+
st.set_page_config(layout="wide")
|
8 |
+
|
9 |
# Load custom CSS
|
10 |
with open('style.css') as f:
|
11 |
st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)
|
|
|
90 |
return None
|
91 |
|
92 |
def main():
|
|
|
93 |
st.title("Free Waifu Character Generator")
|
94 |
st.write("""
|
95 |
Welcome to the Free Waifu Character Generator! This app allows you to create a unique waifu with just one click.
|