Update app.py
Browse files
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 |
-
|
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:
|
69 |
-
<td style="text-align: center"><
|
|
|
70 |
</tr>
|
71 |
</tbody>
|
72 |
</table>'''
|
@@ -193,9 +188,9 @@ llm = gr.ChatInterface(
|
|
193 |
)
|
194 |
|
195 |
# Creating Gradio Interface
|
196 |
-
with gr.Blocks() as
|
197 |
gr.Markdown("# Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)")
|
198 |
-
gr.HTML(value=
|
199 |
|
200 |
-
demo = gr.TabbedInterface([app, llm,
|
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()
|