Spaces:
Running
on
T4
Running
on
T4
rerank model
Browse files
app.py
CHANGED
@@ -81,20 +81,21 @@ st.markdown("""
|
|
81 |
|
82 |
/* Header strip with icon */
|
83 |
.card-header {
|
84 |
-
font-size:
|
85 |
-
margin-bottom: 12px;
|
86 |
-
display: flex;
|
87 |
-
justify-content: center;
|
88 |
-
align-items: center;
|
89 |
height: 60px;
|
90 |
width: 60px;
|
91 |
margin: 0 auto 12px auto;
|
|
|
|
|
|
|
92 |
border-radius: 50%;
|
93 |
-
background: rgba(255, 255, 255, 0.08);
|
94 |
-
backdrop-filter: blur(4px);
|
95 |
-
box-shadow: 0
|
|
|
96 |
}
|
97 |
|
|
|
98 |
.card-text {
|
99 |
font-size: 31px;
|
100 |
font-weight: 500;
|
@@ -190,7 +191,7 @@ with col2:
|
|
190 |
st.markdown("""
|
191 |
<a href="/Multimodal_Conversational_Search" target="_self" style="text-decoration: none;">
|
192 |
<div class="card">
|
193 |
-
<div class="card-header"
|
194 |
<div class="card-text" style="font-size: 31px; color: #e46e08; ">Multimodal RAG</div>
|
195 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
196 |
Explore Multimodal RAG over complex PDFs (with tables, graphs etc) </div>
|
@@ -207,7 +208,7 @@ with col3:
|
|
207 |
st.markdown("""
|
208 |
<a href="/AI_Shopping_Assistant" target="_self" style="text-decoration: none;">
|
209 |
<div class="card">
|
210 |
-
<div class="card-header"
|
211 |
<div class="card-text" style="font-size: 31px; color: #e46e08;">Agentic RAG</div>
|
212 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
213 |
Explore how an AI agent in front of RAG enhances product search experience </div>
|
|
|
81 |
|
82 |
/* Header strip with icon */
|
83 |
.card-header {
|
84 |
+
font-size: 36px;
|
|
|
|
|
|
|
|
|
85 |
height: 60px;
|
86 |
width: 60px;
|
87 |
margin: 0 auto 12px auto;
|
88 |
+
display: flex;
|
89 |
+
justify-content: center;
|
90 |
+
align-items: center;
|
91 |
border-radius: 50%;
|
92 |
+
background: rgba(255, 255, 255, 0.08);
|
93 |
+
backdrop-filter: blur(4px);
|
94 |
+
box-shadow: 0 4px 10px rgba(0,0,0,0.4);
|
95 |
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
96 |
}
|
97 |
|
98 |
+
|
99 |
.card-text {
|
100 |
font-size: 31px;
|
101 |
font-weight: 500;
|
|
|
191 |
st.markdown("""
|
192 |
<a href="/Multimodal_Conversational_Search" target="_self" style="text-decoration: none;">
|
193 |
<div class="card">
|
194 |
+
<div class="card-header">💬</div>
|
195 |
<div class="card-text" style="font-size: 31px; color: #e46e08; ">Multimodal RAG</div>
|
196 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
197 |
Explore Multimodal RAG over complex PDFs (with tables, graphs etc) </div>
|
|
|
208 |
st.markdown("""
|
209 |
<a href="/AI_Shopping_Assistant" target="_self" style="text-decoration: none;">
|
210 |
<div class="card">
|
211 |
+
<div class="card-header">🤖</div>
|
212 |
<div class="card-text" style="font-size: 31px; color: #e46e08;">Agentic RAG</div>
|
213 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
214 |
Explore how an AI agent in front of RAG enhances product search experience </div>
|