prasadnu commited on
Commit
b3dfcea
·
1 Parent(s): a561fab

rerank model

Browse files
Files changed (1) hide show
  1. app.py +11 -10
app.py CHANGED
@@ -81,20 +81,21 @@ st.markdown("""
81
 
82
  /* Header strip with icon */
83
  .card-header {
84
- font-size: 45px;
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); /* faint soft background */
94
- backdrop-filter: blur(4px); /* frosted effect */
95
- box-shadow: 0 2px 6px rgba(0,0,0,0.4); /* subtle depth */
 
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" style="font-size: 50px; margin-bottom: 10px;">💬</div>
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" style="font-size: 50px; margin-bottom: 10px;">🤖</div>
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>