pdf-explainer / pages /02_About.py
Juan Perez Tejada
Disable pylint rules
60f5b9f
raw
history blame contribute delete
484 Bytes
# pylint: disable=invalid-name
"""Collection's Page"""
import streamlit as st
import openai
from gnosis.chroma_client import ChromaDB
chroma_db = ChromaDB(openai.api_key)
st.header("About")
# A summary of the project
st.write(
"""
GnosisPages was developed by
[J.P. Pérez Tejada](https://www.linkedin.com/in/juanpaulopereztejada/). December, 2023.
Check the [GitHub repository](https://github.com/maclenn77/pdf-explainer) for more information.
"""
)