Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -16,8 +16,8 @@ st.markdown(
|
|
16 |
body {
|
17 |
background-image: url('file://%s');
|
18 |
background-size: cover;
|
19 |
-
background-color: #
|
20 |
-
color:
|
21 |
}
|
22 |
.st-bw {
|
23 |
color: white;
|
@@ -34,7 +34,7 @@ def load_llm():
|
|
34 |
return llm
|
35 |
|
36 |
st.title("☔ ☔Chat with CSV using Llama2 ☔ ☔")
|
37 |
-
st.markdown("<h3 style='text-align: center; color: white;'>Built by <a href=https://github.com/Sakil786'
|
38 |
# Your background image URL goes here
|
39 |
#background_image_url = 'https://www.bing.com/images/search?view=detailV2&ccid=lFAWXtbv&id=BB57AC3541361FF3844CAA706B667014CB515B92&thid=OIP.lFAWXtbvpchf66BryfJQ1QHaE8&mediaurl=https%3a%2f%2fimage.freepik.com%2ffree-photo%2ftwo-llamas-andean-highland-bolivia_107467-2006.jpg&exph=418&expw=626&q=llama2+image&simid=608011097331751957&FORM=IRPRST&ck=F66D65F1AFAAA4BBCF9986ADF8ED1643&selectedIndex=4'
|
40 |
background_image_path = 'image2.jpg'
|
@@ -45,11 +45,11 @@ st.markdown(
|
|
45 |
body {
|
46 |
background-image: url('file://%s');
|
47 |
background-size: cover;
|
48 |
-
background-color: #
|
49 |
color: white;
|
50 |
}
|
51 |
.st-bw {
|
52 |
-
color:
|
53 |
}
|
54 |
</style>
|
55 |
""" % background_image_path.replace("\\", "/"),
|
|
|
16 |
body {
|
17 |
background-image: url('file://%s');
|
18 |
background-size: cover;
|
19 |
+
background-color: #00FF00; /* Dodger Blue */
|
20 |
+
color: blue;
|
21 |
}
|
22 |
.st-bw {
|
23 |
color: white;
|
|
|
34 |
return llm
|
35 |
|
36 |
st.title("☔ ☔Chat with CSV using Llama2 ☔ ☔")
|
37 |
+
st.markdown("<h3 style='text-align: center; color: white;'>Built by <a href=https://github.com/Sakil786'>♻️ CSVQConnect ♻️ </a></h3>", unsafe_allow_html=True)
|
38 |
# Your background image URL goes here
|
39 |
#background_image_url = 'https://www.bing.com/images/search?view=detailV2&ccid=lFAWXtbv&id=BB57AC3541361FF3844CAA706B667014CB515B92&thid=OIP.lFAWXtbvpchf66BryfJQ1QHaE8&mediaurl=https%3a%2f%2fimage.freepik.com%2ffree-photo%2ftwo-llamas-andean-highland-bolivia_107467-2006.jpg&exph=418&expw=626&q=llama2+image&simid=608011097331751957&FORM=IRPRST&ck=F66D65F1AFAAA4BBCF9986ADF8ED1643&selectedIndex=4'
|
40 |
background_image_path = 'image2.jpg'
|
|
|
45 |
body {
|
46 |
background-image: url('file://%s');
|
47 |
background-size: cover;
|
48 |
+
background-color: #00FF00; /* Dodger Blue */
|
49 |
color: white;
|
50 |
}
|
51 |
.st-bw {
|
52 |
+
color: blue;
|
53 |
}
|
54 |
</style>
|
55 |
""" % background_image_path.replace("\\", "/"),
|