Sunil Surendra Singh commited on
Commit
90e2b8a
·
1 Parent(s): 09c167e

Corrected logo and title image

Browse files
README.md CHANGED
@@ -1,6 +1,6 @@
1
  <a href="https://nlp-text-paraphraser-gpt-sssingh.streamlit.app/" target="_blank"><img src="https://img.shields.io/badge/open_app_in_streamlit-f63366?style=for-the-badge&logo=streamlit&logoColor=black" /></a>
2
 
3
- <img src="https://github.com/sssingh/nlp-text-paraphraser-gpt/blob/main/streamlit/assets/title.png?raw=true" width="1000" height="300"/><br><br>
4
 
5
  # Introduction
6
  ***This App demonstrates the `text paraphrasing` NLP functionality.***
 
1
  <a href="https://nlp-text-paraphraser-gpt-sssingh.streamlit.app/" target="_blank"><img src="https://img.shields.io/badge/open_app_in_streamlit-f63366?style=for-the-badge&logo=streamlit&logoColor=black" /></a>
2
 
3
+ <img src="https://github.com/sssingh/nlp-text-paraphraser-gpt/blob/main/streamlit/assets/title.png?raw=true" width="1000" height="350"/><br><br>
4
 
5
  # Introduction
6
  ***This App demonstrates the `text paraphrasing` NLP functionality.***
streamlit/assets/title.png CHANGED
streamlit/src/config.py CHANGED
@@ -32,7 +32,7 @@ class __AppConfig:
32
  # get current working directory
33
  cwd = os.getcwd()
34
  banner_image = f"{cwd}/"
35
- logo_image = f"{cwd}/streamlit/assets/logo.svg"
36
  app_title = "Text Paraphraser"
37
  app_icon = f"{cwd}/streamlit/assets/st_title.png"
38
  app_short_desc = "🤖 AI powered paraphraser"
 
32
  # get current working directory
33
  cwd = os.getcwd()
34
  banner_image = f"{cwd}/"
35
+ logo_image = f"{cwd}/streamlit/assets/logo.png"
36
  app_title = "Text Paraphraser"
37
  app_icon = f"{cwd}/streamlit/assets/st_title.png"
38
  app_short_desc = "🤖 AI powered paraphraser"
streamlit/src/utils.py CHANGED
@@ -26,7 +26,7 @@ def setup_app(config):
26
  f"<p style='text-align: left;'>{app_config.app_short_desc}</p>",
27
  unsafe_allow_html=True,
28
  )
29
- logo.image(image=app_config.logo_image)
30
  # st.divider()
31
 
32
 
 
26
  f"<p style='text-align: left;'>{app_config.app_short_desc}</p>",
27
  unsafe_allow_html=True,
28
  )
29
+ logo.image(image=app_config.logo_image, width=100)
30
  # st.divider()
31
 
32