rishiraj commited on
Commit
ec3e909
1 Parent(s): 9fba804

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -12
app.py CHANGED
@@ -55,18 +55,13 @@ Machine Learning Engineer at <a href="https://hf.co/">Hugging Face</a>, Google D
55
  <p>Besides being great at ML, he’s also a chess player and is just as passionate about it. I wish Rishiraj an amazing career ahead.</p>
56
  </blockquote>'''
57
 
58
- conferences = '''
59
  <table>
60
- <thead>
61
- <tr>
62
- <th style="text-align: left"><h3>Conferences:</h3></th>
63
- <th style="text-align: center"><h3>Photos</h3></th>
64
- </tr>
65
- </thead>
66
  <tbody>
67
  <tr>
68
- <td style="text-align: left"><strong><em><a href="https://gdg.community.dev/events/details/google-gdg-cloud-kolkata-presents-google-io-extended-2023-by-gdg-cloud-kolkata/">Google I/O Extended 2023</a> by GDG Cloud Kolkata</em></strong><br><br>Saturday, August 19, 2023, 11:00 AM (IST)<br><br>Techno India University - Salt Lake Sector V, Kolkata, 700091</td>
69
- <td style="text-align: center"><img src="https://raw.githubusercontent.com/rishiraj/rishiraj.github.io/main/assets/event4.jpg" alt=""></td>
 
70
  </tr>
71
  </tbody>
72
  </table>'''
@@ -193,9 +188,9 @@ llm = gr.ChatInterface(
193
  )
194
 
195
  # Creating Gradio Interface
196
- with gr.Blocks() as talks:
197
  gr.Markdown("# Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)")
198
- gr.HTML(value=conferences)
199
 
200
- demo = gr.TabbedInterface([app, llm, talks], ["About", "Chat", "Talks"])
201
  demo.launch()
 
55
  <p>Besides being great at ML, he’s also a chess player and is just as passionate about it. I wish Rishiraj an amazing career ahead.</p>
56
  </blockquote>'''
57
 
58
+ posts = '''
59
  <table>
 
 
 
 
 
 
60
  <tbody>
61
  <tr>
62
+ <td style="text-align: center"><a href="https://blog.dynopii.com/tutorials/the-evolution-of-language-modeling-from-word2vec-to-gpt/"><img src="https://blog.dynopii.com/content/images/2024/01/Purpose-of-Prompt-Engineering-in-Gen-AI-systems---1-.jpg" alt=""></a></td>
63
+ <td style="text-align: center"><a href="https://blog.dynopii.com/tutorials/hallucinations-in-large-language-models-a-technical-perspective/"><img src="https://blog.dynopii.com/content/images/2023/11/Purpose-of-Prompt-Engineering-in-Gen-AI-systems-.jpg" alt=""></a></td>
64
+ <td style="text-align: center"><a href="https://blog.dynopii.com/tutorials/mastering-prompt-engineering-for-llms-best-practices-and-advanced-techniques/"><img src="https://blog.dynopii.com/content/images/2023/12/Purpose-of-Prompt-Engineering-in-Gen-AI-systems---1-.jpg" alt=""></a></td>
65
  </tr>
66
  </tbody>
67
  </table>'''
 
188
  )
189
 
190
  # Creating Gradio Interface
191
+ with gr.Blocks() as blogs:
192
  gr.Markdown("# Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)")
193
+ gr.HTML(value=posts)
194
 
195
+ demo = gr.TabbedInterface([app, llm, blogs], ["About", "Chat", "Blogs"])
196
  demo.launch()