Spaces:
Runtime error
Runtime error
File size: 717 Bytes
1e53020 428ebc1 1e53020 4241a48 1e53020 428ebc1 1e53020 428ebc1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import streamlit as st
from dotenv import load_dotenv
load_dotenv()
def sidebar():
with st.sidebar:
st.markdown("# About")
st.markdown(
"📖ReferenceBot allows you to ask questions about your "
"documents and get accurate answers with instant citations. "
)
st.markdown(
"This tool is a work in progress. "
"You can contribute to the project on [GitHub](https://github.com/andreped/ReferenceBot) " # noqa: E501
"with your feedback and suggestions💡"
)
st.markdown("The tool was based on KnowledgeGPT made by [mmz_001](https://twitter.com/mm_sasmitha).")
st.markdown("---")
# faq()
|