Spaces:
Build error
Build error
fix markdown
Browse files- __pycache__/utils.cpython-310.pyc +0 -0
- app.py +8 -8
__pycache__/utils.cpython-310.pyc
CHANGED
Binary files a/__pycache__/utils.cpython-310.pyc and b/__pycache__/utils.cpython-310.pyc differ
|
|
app.py
CHANGED
@@ -67,20 +67,20 @@ with st.sidebar:
|
|
67 |
tab1, tab2 = st.tabs(["Intro", "Chat with the File"])
|
68 |
with tab1:
|
69 |
st.markdown("### How does it work?")
|
70 |
-
st.markdown('Read the article to know how it works:
|
71 |
st.write("File GPT was written with the following tools:")
|
72 |
st.markdown("#### Code GPT")
|
73 |
-
st.write(
|
74 |
st.markdown("#### Streamlit")
|
75 |
-
st.write(
|
76 |
st.markdown("#### LangChain")
|
77 |
-
st.write(
|
78 |
st.markdown("#### Embedding")
|
79 |
-
st.write('
|
80 |
st.markdown("""---""")
|
81 |
-
st.write('Author:
|
82 |
-
st.write('Repo:
|
83 |
-
st.write("This software was developed with Code GPT, for more information visit: https://codegpt.co")
|
84 |
|
85 |
with tab2:
|
86 |
st.write('To obtain an API Key you must create an OpenAI account at the following link: https://openai.com/api/')
|
|
|
67 |
tab1, tab2 = st.tabs(["Intro", "Chat with the File"])
|
68 |
with tab1:
|
69 |
st.markdown("### How does it work?")
|
70 |
+
st.markdown('<p>Read the article to know how it works: <a target="_blank" href="https://medium.com/@dan.avila7/file-gpt-conversaci%C3%B3n-por-chat-con-un-archivo-698d17570358">Medium Article</a></p>', unsafe_allow_html=True)
|
71 |
st.write("File GPT was written with the following tools:")
|
72 |
st.markdown("#### Code GPT")
|
73 |
+
st.write('All code was written with the help of Code GPT. Visit https://codegpt.co to get the extension.')
|
74 |
st.markdown("#### Streamlit")
|
75 |
+
st.write('The design was written with <a target="_blank" href="https://streamlit.io/">Streamlit</a>.', unsafe_allow_html=True)
|
76 |
st.markdown("#### LangChain")
|
77 |
+
st.write('Question answering with source <a target="_blank" href="https://langchain.readthedocs.io/en/latest/use_cases/question_answering.html#adding-in-sources">Langchain QA</a>.', unsafe_allow_html=True)
|
78 |
st.markdown("#### Embedding")
|
79 |
+
st.write('<a target="_blank" href="https://platform.openai.com/docs/guides/embeddings">Embedding</a> is done via the OpenAI API with "text-embedding-ada-002"', unsafe_allow_html=True)
|
80 |
st.markdown("""---""")
|
81 |
+
st.write('Author: <a target="_blank" href="https://www.linkedin.com/in/daniel-avila-arias/">Daniel Avila</a>', unsafe_allow_html=True)
|
82 |
+
st.write('Repo: <a target="_blank" href="https://github.com/davila7/file-gpt)">Github</a>', unsafe_allow_html=True)
|
83 |
+
st.write("This software was developed with Code GPT, for more information visit: https://codegpt.co", unsafe_allow_html=True)
|
84 |
|
85 |
with tab2:
|
86 |
st.write('To obtain an API Key you must create an OpenAI account at the following link: https://openai.com/api/')
|