Spaces:
Sleeping
Sleeping
File size: 1,063 Bytes
a3f5902 bce3de8 a3f5902 19b5fba a3f5902 |
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 |
import streamlit as st
import faq
def sidebar():
with st.sidebar:
st.markdown("# 🤖YoutuberGPT")
st.markdown("---")
st.markdown("# How to use?")
st.markdown(
"- Input the URL of the video you are interested in "
"- YouTuberGPT will use its advanced semantic search "
"capabilities to analyze the video and generate accurate and helpful answer to your questions ")
st.markdown("# About")
st.markdown(
"YouTuberGPT allows you to ask questions about YouTube videos. "
)
faq.faq()
st.markdown(
"This tool is a work in progress. "
"You can contribute to the project on [GitHub](https://github.com/jorgik1/youtuber_ai_chatbot) " # noqa: E501
"with your feedback and suggestions💡"
)
st.markdown("Made by [jorgik1](https://github.com/jorgik1)")
st.markdown("---")
st.markdown("# Donate")
st.markdown("[Buy me a coffee](https://www.buymeacoffee.com/youtubergtp)")
|