epochs-demos commited on
Commit
a8216e3
·
1 Parent(s): 6726b96

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -36,11 +36,9 @@ with gr.Blocks() as demo:
36
  ask_button = gr.Button("Ask")
37
  with gr.Accordion("About this project"):
38
  gr.Markdown(
39
- """## CHATGPT-PAPER-READER📝
40
- This repository provides a simple interface that utilizes the gpt-3.5-turbo
41
- model to read academic papers in PDF format locally. You can use it to help you summarize papers,
42
- create presentation slides, or simply fulfill tasks assigned by your supervisor.\n
43
- [Github](https://github.com/talkingwallace/ChatGPT-Paper-Reader)""")
44
  with open("./logo.png", "rb") as f:
45
  image_data = f.read()
46
  image_base64 = base64.b64encode(image_data).decode("utf-8")
 
36
  ask_button = gr.Button("Ask")
37
  with gr.Accordion("About this project"):
38
  gr.Markdown(
39
+ """style="background-image: linear-gradient(to right, #3A5FCD, #87CEFA); -webkit-background-clip: text;
40
+ -webkit-text-fill-color: transparent; text-align: center;">
41
+ Speech Emotion Recognition""")
 
 
42
  with open("./logo.png", "rb") as f:
43
  image_data = f.read()
44
  image_base64 = base64.b64encode(image_data).decode("utf-8")