Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -98,6 +98,7 @@ question_json = {
|
|
98 |
cv_json = {
|
99 |
"name": "Jisu Kim",
|
100 |
"location": "Atlanta, GA",
|
|
|
101 |
"contact" : [
|
102 |
{
|
103 |
"email": "[email protected]",
|
@@ -352,8 +353,26 @@ examples = [
|
|
352 |
# "How is the answer generated?"
|
353 |
]
|
354 |
|
355 |
-
|
356 |
-
gr.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
357 |
|
358 |
if __name__ == "__main__":
|
359 |
demo.launch()
|
|
|
98 |
cv_json = {
|
99 |
"name": "Jisu Kim",
|
100 |
"location": "Atlanta, GA",
|
101 |
+
"CV": "https://ddiddu.github.io/JisuKim_CV.pdf",
|
102 |
"contact" : [
|
103 |
{
|
104 |
"email": "[email protected]",
|
|
|
353 |
# "How is the answer generated?"
|
354 |
]
|
355 |
|
356 |
+
with gr.Blocks(theme='gradio/soft') as demo:
|
357 |
+
gr.Markdown(
|
358 |
+
"""
|
359 |
+
# 😊 Hi Hi Hawaii, I am Jisu Kim!
|
360 |
+
|
361 |
+
I am an MS candidate in the **Interactive Computing** at 🐝**Georgia Tech**. I am advised by [**Ashok Goel**](https://dilab.gatech.edu/ashok-k-goel/) and [**Richmond Wong**](https://richmondywong.com/), and previously by [**Juho Kim**](https://juhokim.com/) at 🪿**KAIST**.
|
362 |
+
|
363 |
+
My research interests lie at the intersection of artificial intelligence (AI) and human-computer interaction (HCI). I am focused on enhancing both productivity tools and creativity support tools in learning environments. My goal is to develop AI technologies that enrich the learning experience and enhance human-AI interaction. Driven by my passion for creating human-centric AI technologies, I am applying to Ph.D. programs for Fall 2025.
|
364 |
+
|
365 |
+
[**LinkedIn**](https://www.linkedin.com/in/jisulog/) | [**Twitter**](https://x.com/jisukiim?s=21) | [**CV**](https://ddiddu.github.io/JisuKim_CV.pdf) | [**YoutTube**](https://youtu.be/btZOScj22jE?si=0zz5y61KNLsBJXcm)
|
366 |
+
|
367 |
+
---
|
368 |
+
|
369 |
+
# 🤖 Hi, I am Jisu's personal assistant!
|
370 |
+
|
371 |
+
**Ask about Jisu and I will provide you with the information as far as I know.**
|
372 |
+
|
373 |
+
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!**
|
374 |
+
""")
|
375 |
+
gr.ChatInterface(predict, examples=examples)
|
376 |
|
377 |
if __name__ == "__main__":
|
378 |
demo.launch()
|