IAMTFRMZA commited on
Commit
209dd92
Β·
verified Β·
1 Parent(s): ce2677e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +40 -10
app.py CHANGED
@@ -6,6 +6,7 @@ import os
6
  import uuid
7
  import firebase_admin
8
  from firebase_admin import credentials, firestore
 
9
 
10
  # πŸ” Firebase setup
11
  if not firebase_admin._apps:
@@ -44,6 +45,27 @@ st.markdown("""
44
  .carfind-logo {
45
  animation: bounceIn 0.6s ease-out;
46
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  </style>
48
  """, unsafe_allow_html=True)
49
 
@@ -96,7 +118,7 @@ def display_chat_history():
96
  unsafe_allow_html=True
97
  )
98
 
99
- # 🧭 Tabs: AI Chat | Car Identifier
100
  tab1, tab2 = st.tabs(["AI Chat", "What car is that?"])
101
 
102
  # πŸ€– AI Chat Tab
@@ -188,19 +210,27 @@ with tab2:
188
  messages = client.beta.threads.messages.list(thread_id=image_thread.id)
189
  assistant_message = messages.data[0].content[0].text.value
190
 
 
 
 
 
 
 
 
191
  st.success("βœ… Identification Complete")
192
  st.markdown(f"""
193
  <div style='
194
- font-size: 15px;
195
- background-color: #1a1f25;
196
- color: #ffffff;
197
- padding: 18px 20px;
198
- border-radius: 10px;
199
- border-left: 6px solid #4CAF50;
200
- box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
201
- line-height: 1.6;
 
202
  '>
203
- {assistant_message}
204
  </div>
205
  """, unsafe_allow_html=True)
206
 
 
6
  import uuid
7
  import firebase_admin
8
  from firebase_admin import credentials, firestore
9
+ import re
10
 
11
  # πŸ” Firebase setup
12
  if not firebase_admin._apps:
 
45
  .carfind-logo {
46
  animation: bounceIn 0.6s ease-out;
47
  }
48
+ .spec-table {
49
+ width: 100%;
50
+ border-collapse: collapse;
51
+ margin-top: 20px;
52
+ }
53
+ .spec-table th {
54
+ background-color: #0071BC;
55
+ color: white;
56
+ padding: 10px;
57
+ text-align: left;
58
+ }
59
+ .spec-table td {
60
+ padding: 10px;
61
+ border: 1px solid #ccc;
62
+ background-color: #f9f9f9;
63
+ }
64
+ .icon {
65
+ width: 16px;
66
+ vertical-align: middle;
67
+ margin-right: 6px;
68
+ }
69
  </style>
70
  """, unsafe_allow_html=True)
71
 
 
118
  unsafe_allow_html=True
119
  )
120
 
121
+ # πŸ› Tabs: AI Chat | Car Identifier
122
  tab1, tab2 = st.tabs(["AI Chat", "What car is that?"])
123
 
124
  # πŸ€– AI Chat Tab
 
210
  messages = client.beta.threads.messages.list(thread_id=image_thread.id)
211
  assistant_message = messages.data[0].content[0].text.value
212
 
213
+ cleaned_message = re.sub(r'\*\*(.*?)\*\*', r'<strong>\1</strong>', assistant_message)
214
+ cleaned_message = cleaned_message.replace("###", "<h4 style='margin-bottom: 10px;'>").replace("\n", "<br>")
215
+
216
+ # Replace key labels with icons
217
+ cleaned_message = cleaned_message.replace("Transmission", "<img src='https://cdn-icons-png.flaticon.com/128/3448/3448449.png' class='icon'/> Transmission")
218
+ cleaned_message = cleaned_message.replace("Engine Size", "<img src='https://cdn-icons-png.flaticon.com/128/888/888879.png' class='icon'/> Engine Size")
219
+
220
  st.success("βœ… Identification Complete")
221
  st.markdown(f"""
222
  <div style='
223
+ font-family: "Segoe UI", sans-serif;
224
+ background-color: #ffffff;
225
+ color: #003B6F;
226
+ padding: 24px;
227
+ border-radius: 12px;
228
+ box-shadow: 0 4px 12px rgba(0,0,0,0.05);
229
+ border-left: 5px solid #0071BC;
230
+ font-size: 15.5px;
231
+ line-height: 1.7;
232
  '>
233
+ {cleaned_message}
234
  </div>
235
  """, unsafe_allow_html=True)
236