Spaces:
Runtime error
Runtime error
import streamlit as st | |
from utils import img2txt, txt2story, txt2speech, get_user_preferences | |
def main(): | |
st.set_page_config(page_title="π¨ Image-to-Audio Story π§", page_icon="πΌοΈ") | |
st.title("Turn the Image into Audio Story") | |
uploaded_file = st.file_uploader("# π· Upload an image...", type=["jpg", "jpeg", "png"]) | |
st.sidebar.markdown("# LLM Inference Configuration Parameters") | |
top_k = st.sidebar.number_input("Top-K", min_value=1, max_value=100, value=5) | |
top_p = st.sidebar.number_input("Top-P", min_value=0.0, max_value=1.0, value=0.8) | |
temperature = st.sidebar.number_input("Temperature", min_value=0.1, max_value=2.0, value=1.5) | |
st.markdown("## Story Preferences") | |
preferences = get_user_preferences(st) | |
if uploaded_file is not None: | |
bytes_data = uploaded_file.read() | |
with open("uploaded_image.jpg", "wb") as file: | |
file.write(bytes_data) | |
st.image(uploaded_file, caption='πΌοΈ Uploaded Image', use_column_width=True) | |
with st.spinner("## π€ AI is at Work! "): | |
scenario = img2txt("uploaded_image.jpg") | |
prompt = f"Based on the image description: '{scenario}', create a {preferences['genre']} story set in {preferences['setting']} in {preferences['continent']}. " \ | |
f"The story should have a {preferences['tone']} tone and explore the theme of {preferences['theme']}. " \ | |
f"The main conflict should be {preferences['conflict']}. " \ | |
f"The story should have a {preferences['twist']} and end with a {preferences['ending']} ending." | |
story = txt2story(prompt, top_k, top_p, temperature) | |
txt2speech(story) | |
st.markdown("---") | |
st.markdown("## π Image Caption") | |
st.write(scenario) | |
st.markdown("---") | |
st.markdown("## π Story") | |
st.write(story) | |
st.markdown("---") | |
st.markdown("## π§ Audio Story") | |
st.audio("audio_story.mp3") | |
if __name__ == '__main__': | |
main() | |
# Credits | |
st.markdown("### Credits") | |
st.caption(''' | |
Made with β€οΈ by @Aditya-Neural-Net-Ninja\n | |
Utilizes Image-to-Text, Text Generation, Text-to-Speech Transformer Models\n | |
Gratitude to Streamlit, π€ Spaces for Deployment & Hosting | |
''') |