Spaces:
Sleeping
Sleeping
File size: 3,671 Bytes
83452e3 |
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 |
import validators
import streamlit as st
from langchain.prompts import PromptTemplate
from langchain_groq import ChatGroq
from langchain.chains.summarize import load_summarize_chain
from langchain_community.document_loaders import YoutubeLoader, UnstructuredURLLoader
from dotenv import load_dotenv
import os
## Load environment variables
load_dotenv()
## Streamlit APP
st.set_page_config(page_title="Text Summarizer", page_icon="π")
# Add some extra styling effects for the webpage
st.markdown(
"""
<style>
.main-header { font-size: 40px; text-align: center; font-weight: bold; color: #4CAF50; }
.description { text-align: center; font-size: 18px; color: #888888; margin-bottom: 20px; }
.footer { font-size: 16px; text-align: center; color: #888888; margin-top: 50px; padding-top: 20px; border-top: 1px solid #888888; }
</style>
""",
unsafe_allow_html=True
)
# Main page
st.markdown('<div class="main-header">π RapidRecap: Summarize Content from YouTube or Website</div>', unsafe_allow_html=True)
st.markdown('<div class="description">π This tool allows you to summarize content from YouTube videos and websites. Simply enter a URL, and get a quick and concise summary! π</div>', unsafe_allow_html=True)
st.subheader('Summarize URL π')
# Sidebar for API key and URL input
with st.sidebar:
st.markdown("π οΈ **Settings**")
groq_api_key = st.text_input("Groq API Key π", value="", type="password")
# If the API key is not provided, check the environment variable
if not groq_api_key.strip():
groq_api_key = os.getenv("GROQ_API_KEY")
generic_url = st.text_input("Enter a YouTube or Website URL π", label_visibility="collapsed")
# Langchain Model using Groq API
if groq_api_key:
try:
llm = ChatGroq(model="Gemma-7b-It", groq_api_key=groq_api_key)
except Exception as e:
st.error("Failed to initialize Groq API with the provided key. Please enter a valid Groq API Key. β οΈ")
st.stop()
else:
st.error("Please enter your Groq API Key to continue. β οΈ")
st.stop()
# Prompt template for summarization
prompt_template = """
Provide a summary of the following content in 300 words:
Content:{text}
"""
prompt = PromptTemplate(template=prompt_template, input_variables=["text"])
# Summarize button
if st.button("Summarize the Content from YT or Website π―"):
# Validate inputs
if not generic_url.strip():
st.error("Please provide the URL to summarize. β οΈ")
elif not validators.url(generic_url):
st.error("Please enter a valid URL (YouTube or website) β οΈ")
else:
try:
with st.spinner("Processing... β³"):
# Load YouTube or website data
if "youtube.com" in generic_url:
loader = YoutubeLoader.from_youtube_url(generic_url, add_video_info=True)
else:
loader = UnstructuredURLLoader(
urls=[generic_url], ssl_verify=False,
headers={"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 13_5_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36"}
)
docs = loader.load()
# Chain for summarization
chain = load_summarize_chain(llm, chain_type="stuff", prompt=prompt)
output_summary = chain.run(docs)
st.success(output_summary)
except Exception as e:
st.exception(f"Exception: {e}")
# Footer
st.markdown('<div class="footer">β¨ Developed by Your Name | Powered by LangChain and Groq LLM π</div>', unsafe_allow_html=True)
|