Spaces:
Running
Running
Update app.py
Browse files
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 |
-
#
|
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-
|
195 |
-
background-color: #
|
196 |
-
color: #
|
197 |
-
padding:
|
198 |
-
border-radius:
|
199 |
-
|
200 |
-
|
201 |
-
|
|
|
202 |
'>
|
203 |
-
{
|
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 |
|