Spaces:
Runtime error
Runtime error
File size: 484 Bytes
60f5b9f c87ff83 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # 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.
"""
)
|