Spaces:
Sleeping
Sleeping
import streamlit as st | |
from utils import generate_script | |
import os | |
os.environ["HUGGINGFACEHUB_API_TOKEN"] = "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" | |
# Applying Styling | |
st.markdown(""" | |
<style> | |
div.stButton > button:first-child { | |
background-color: #0099ff; | |
color:#ffffff; | |
} | |
div.stButton > button:hover { | |
background-color: #00ff00; | |
color:#FFFFFF; | |
} | |
</style>""", unsafe_allow_html=True) | |
# Creating Session State Variable | |
if 'HUGGINGFACEHUB_API_TOKEN' not in st.session_state: | |
st.session_state['HUGGINGFACEHUB_API_TOKEN'] ='' | |
st.title('β€οΈ YouTube Script Writing Tool') | |
# Sidebar to capture the OpenAi API key | |
st.sidebar.title("πποΈ") | |
st.session_state['HUGGINGFACEHUB_API_TOKEN']= st.sidebar.text_input("What's your API key?",type="password") | |
st.sidebar.image('./Youtube.jpg',width=300, use_column_width=True) | |
# Captures User Inputs | |
prompt = st.text_input('Please provide the topic of the video',key="prompt") # The box for the text prompt | |
video_length = st.text_input('Expected Video Length π (in minutes)',key="video_length") # The box for the text prompt | |
creativity = st.slider('Words limit β¨ - (0 LOW || 1 HIGH)', 0.0, 1.0, 0.2,step=0.1) | |
submit = st.button("Generate Script for me") | |
if submit: | |
if st.session_state['HUGGINGFACEHUB_API_TOKEN']: | |
search_result,title,script = generate_script(prompt,video_length,creativity,st.session_state['HUGGINGFACEHUB_API_TOKEN']) | |
#Let's generate the script | |
st.success('Hope you like this script β€οΈ') | |
#Display Title | |
st.subheader("Title:π₯") | |
st.write(title) | |
#Display Video Script | |
st.subheader("Your Video Script:π") | |
st.write(script) | |
#Display Search Engine Result | |
st.subheader("Check Out - DuckDuckGo Search:π") | |
with st.expander('Show me π'): | |
st.info(search_result) | |
else: | |
st.error("Ooopssss!!! Please provide API key.....") |