Update app.py
Browse files
    	
        app.py
    CHANGED
    
    | 
         @@ -397,7 +397,6 @@ st.set_page_config(layout="wide") 
     | 
|
| 397 | 
         
             
            st.markdown("<h1 style='text-align: center;'>Clarifai Story Teller</h1>", unsafe_allow_html=True)
         
     | 
| 398 | 
         
             
            st.markdown("<h2 style='text-align: center;'>Branching Reading Adventure</h2>", unsafe_allow_html=True)
         
     | 
| 399 | 
         | 
| 400 | 
         
            -
            st.image('crewai/resources/display.jpg')
         
     | 
| 401 | 
         | 
| 402 | 
         
             
            tabs = ["Create Your Story Script", "Build Your Image-Audio Book", "Interact with Your Characters"]
         
     | 
| 403 | 
         | 
| 
         @@ -424,6 +423,7 @@ with tab1: 
     | 
|
| 424 | 
         
             
                with col2:
         
     | 
| 425 | 
         
             
                    # Input for the user
         
     | 
| 426 | 
         
             
                    input_topic = st.text_area("What Exciting Adventures Awaits Us", height=100, placeholder="Start Our Story...")
         
     | 
| 
         | 
|
| 427 | 
         
             
                    st.session_state['on_topic'] = input_topic
         
     | 
| 428 | 
         
             
                    # Button to run the process
         
     | 
| 429 | 
         
             
                    if st.button("Create a Story"):
         
     | 
| 
         | 
|
| 397 | 
         
             
            st.markdown("<h1 style='text-align: center;'>Clarifai Story Teller</h1>", unsafe_allow_html=True)
         
     | 
| 398 | 
         
             
            st.markdown("<h2 style='text-align: center;'>Branching Reading Adventure</h2>", unsafe_allow_html=True)
         
     | 
| 399 | 
         | 
| 
         | 
|
| 400 | 
         | 
| 401 | 
         
             
            tabs = ["Create Your Story Script", "Build Your Image-Audio Book", "Interact with Your Characters"]
         
     | 
| 402 | 
         | 
| 
         | 
|
| 423 | 
         
             
                with col2:
         
     | 
| 424 | 
         
             
                    # Input for the user
         
     | 
| 425 | 
         
             
                    input_topic = st.text_area("What Exciting Adventures Awaits Us", height=100, placeholder="Start Our Story...")
         
     | 
| 426 | 
         
            +
                    st.image('crewai/resources/display.jpg')
         
     | 
| 427 | 
         
             
                    st.session_state['on_topic'] = input_topic
         
     | 
| 428 | 
         
             
                    # Button to run the process
         
     | 
| 429 | 
         
             
                    if st.button("Create a Story"):
         
     |