zayed-upal commited on
Commit
18dde28
1 Parent(s): 12991e6

UI changes

Browse files
Files changed (1) hide show
  1. app.py +7 -12
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("Please be patient with the open source LLM models, as they are running on a CPU on the server.\n "
58
- "Average generation time around 5 mins.")
59
- info = st.expander("Information")
60
- info.write(f"This project aims to:\n"
61
- f"- Explore various open-source Large Language Models (LLMs).\n"
62
- f"- Compare them to OpenAI models for performance. \n"
63
- f"- Highlight benefits of open-source LLMs: \n"
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