File size: 2,260 Bytes
8d924c8 |
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
import streamlit as st
IFRAME = '<iframe src="https://ghbtns.com/github-btn.html?user=IvanIsCoding&repo=ResuLLMe&type=star&count=true&size=large" frameborder="0" scrolling="0" width="170" height="30" title="GitHub"></iframe>'
st.markdown(
f"""
# ResuLLMe's Frequently Asked Questions {IFRAME}
""",
unsafe_allow_html=True,
)
with st.expander("**Do I need an OpenAI API Key to run ResuLLMe?**"):
st.markdown(
"""
**Yes**, as we currently only support ChatGPT. You can obtain your key [here](https://platform.openai.com/account/api-keys).
"""
)
with st.expander("**Can I store my OpenAI API Key instead of manually re-entering it?**"):
st.markdown(
"""
**Yes**, you can store your key in an environment variable, but if the environment variable `OPENAI_API_KEY` is not defined, ResuLLMe will prompt the user for a key.
"""
)
with st.expander("**I want to use my own custom format to render my résumé. Is this possible?**"):
st.markdown(
"""
Currently, you **cannot** use your own custom format for your résumé.
"""
)
with st.expander("**What is the LaTeX format?**"):
st.markdown(
"""
LaTeX is a document preperation system that is used to render PDFs. ResuLLMe uses LaTeX to render a new AI-curated résumé in a format chosen by you!
"""
)
with st.expander("**What is the JSON schema for the résumé?**"):
st.markdown(
"""
To render the LaTeX file, we use a JSON schema to format data and allow standardized processing. You can look at this [example](https://github.com/IvanIsCoding/ResuLLMe/blob/main/.github/Turing.json) to examine the schema.
"""
)
with st.expander("**There is information on my résumé that is not accurate. How do I fix it?**"):
st.markdown(
"""
Sometimes, LLMs can hallucinate and produce information that is not correct. If this happened to your résumé,
there are two options to editing it:
* Download the JSON file, and manually edit it using a text editor and render it again by going to [Render JSON Resume](/Render_JSON_Resume).
* Download the LaTeX file and edit it on [Overleaf (or your favorite LaTeX editor)](/Edit_LaTeX_on_Overleaf).
"""
)
|