zayed-upal
commited on
Commit
•
18dde28
1
Parent(s):
12991e6
UI changes
Browse files
app.py
CHANGED
@@ -54,18 +54,13 @@ if 'running' not in st.session_state:
|
|
54 |
st.session_state.cover_letter_stream = ""
|
55 |
st.set_page_config(page_title='LLM Cover Letter Generator', layout="wide")
|
56 |
st.markdown("## Cover Letter Generator using Large Language Models (LLM)")
|
57 |
-
st.info("
|
58 |
-
"
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
f" - Faster generation on OpenAI models due to non-local execution.\n"
|
65 |
-
f" - Run open-source models on CPU with 10GB RAM (Around 5-min generation time).\n"
|
66 |
-
f" - Significantly faster generation on GPUs. \n"
|
67 |
-
f" - Free of cost and user-data ownership.\n\n"
|
68 |
-
f"Checkout my profile: https://zayedupal.github.io")
|
69 |
|
70 |
input_col, output_col = st.columns(2)
|
71 |
|
|
|
54 |
st.session_state.cover_letter_stream = ""
|
55 |
st.set_page_config(page_title='LLM Cover Letter Generator', layout="wide")
|
56 |
st.markdown("## Cover Letter Generator using Large Language Models (LLM)")
|
57 |
+
st.info("This project aims to Explore various open-source Large Language Models (LLMs) and "
|
58 |
+
"compare them to OpenAI models. \n"
|
59 |
+
"Please be patient with the open source LLM models, as they are running without GPU. \n "
|
60 |
+
"Average generation time around 5 minutes. \n"
|
61 |
+
"The Open AI models are faster, but needs API key as they are hosted by Open AI. \n"
|
62 |
+
"Checkout my profile: https://zayedupal.github.io"
|
63 |
+
)
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
input_col, output_col = st.columns(2)
|
66 |
|