ddiddu commited on
Commit
4394dc5
Β·
verified Β·
1 Parent(s): 761196b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -29
app.py CHANGED
@@ -49,41 +49,25 @@ css = """
49
  with gr.Blocks(theme='gradio/soft', fill_height=True) as demo:
50
  gr.Markdown(
51
  """
52
- <!DOCTYPE html>
53
- <html lang="en">
54
- <head>
55
- <!-- Google tag (gtag.js) -->
56
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-FDMKL18ZZS"></script>
57
- <script>
58
- window.dataLayer = window.dataLayer || [];
59
- function gtag(){dataLayer.push(arguments);}
60
- gtag('js', new Date());
61
-
62
- gtag('config', 'G-FDMKL18ZZS');
63
- </script>
64
- </head>
65
- <body>
66
- <img src="http://jisulog.kim/profile.png" alt="Profile Image" style="width: 200px; height: auto; border-radius: 50%;">
67
-
68
- # 😊 Hi, I am Jisu Kim!
69
 
70
- I am a data science intern at 🚘**Tesla** and an MS candidate in the **Interactive Computing** at 🐝**Georgia Tech**.
71
- I am advised by [**Ashok Goel**](https://dilab.gatech.edu/ashok-k-goel/) and [**Richmond Wong**](https://richmondywong.com/), and was previously advised by [**Juho Kim**](https://juhokim.com/) at πŸͺΏ**KAIST**.
72
- My research interests lie at the intersection of artificial intelligence (AI) and human-computer interaction (HCI).
73
- I am interested in helping humans better understand and interact with data and AI.
74
- Driven by my goal to enhance human productivity with AI, I am applying to Ph.D. programs for Fall 2025!
75
 
76
- [**LinkedIn**](https://www.linkedin.com/in/jisulog/) | [**Twitter**](https://x.com/jisukiim?s=21) | [**CV**](https://gtvault-my.sharepoint.com/:w:/g/personal/jkim3931_gatech_edu/EeSjGKGyhzpHvejflM5q9-QBNGTGED9amUD9PXgFIj3pGg?e=1Zi598) | [**YouTube**](https://youtu.be/btZOScj22jE?si=0zz5y61KNLsBJXcm)
77
 
78
- ---
79
 
80
- # πŸ€– Hi, I am Jisu's personal assistant!
81
 
82
- **Ask about Jisu and I will provide you with the information as far as I know.**
83
 
84
- I am currently under development. If there are errors or improvements, feel free to share with Jisu! You don't know how to reach out to Jisu? **Ask me!**
85
- </body>
86
- </html>
87
  """)
88
  gr.ChatInterface(fn=predict, chatbot=gr.Chatbot(elem_id="chatbot", render=False), examples=examples)
89
 
 
49
  with gr.Blocks(theme='gradio/soft', fill_height=True) as demo:
50
  gr.Markdown(
51
  """
52
+ <img src="http://jisulog.kim/profile.png" alt="Profile Image" style="width: 200px; height: auto; border-radius: 50%;">
53
+
54
+ # 😊 Hi, I am Jisu Kim!
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
 
56
+ I am a data science intern at 🚘**Tesla** and an MS candidate in the **Interactive Computing** at 🐝**Georgia Tech**.
57
+ I am advised by [**Ashok Goel**](https://dilab.gatech.edu/ashok-k-goel/) and [**Richmond Wong**](https://richmondywong.com/), and was previously advised by [**Juho Kim**](https://juhokim.com/) at πŸͺΏ**KAIST**.
58
+ My research interests lie at the intersection of artificial intelligence (AI) and human-computer interaction (HCI).
59
+ I am interested in helping humans better understand and interact with data and AI.
60
+ Driven by my goal to enhance human productivity with AI, I am applying to Ph.D. programs for Fall 2025!
61
 
62
+ [**LinkedIn**](https://www.linkedin.com/in/jisulog/) | [**Twitter**](https://x.com/jisukiim?s=21) | [**CV**](https://gtvault-my.sharepoint.com/:w:/g/personal/jkim3931_gatech_edu/EeSjGKGyhzpHvejflM5q9-QBNGTGED9amUD9PXgFIj3pGg?e=1Zi598) | [**YouTube**](https://youtu.be/btZOScj22jE?si=0zz5y61KNLsBJXcm)
63
 
64
+ ---
65
 
66
+ # πŸ€– Hi, I am Jisu's personal assistant!
67
 
68
+ **Ask about Jisu and I will provide you with the information as far as I know.**
69
 
70
+ I am currently under development. If there are errors or improvements, feel free to share with Jisu! You don't know how to reach out to Jisu? **Ask me!**
 
 
71
  """)
72
  gr.ChatInterface(fn=predict, chatbot=gr.Chatbot(elem_id="chatbot", render=False), examples=examples)
73