SHAMIL SHAHBAZ AWAN commited on
Commit
84e7946
·
verified ·
1 Parent(s): 8569823

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -0
app.py CHANGED
@@ -113,3 +113,22 @@ else:
113
  query_response = enhance_with_groq(user_query)
114
  st.write("Response from Groq:")
115
  st.write(query_response)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  query_response = enhance_with_groq(user_query)
114
  st.write("Response from Groq:")
115
  st.write(query_response)
116
+ # Add a bottom-left corner credit
117
+ st.markdown("""
118
+ <style>
119
+ .bottom-left {
120
+ position: fixed;
121
+ bottom: 0;
122
+ left: 0;
123
+ padding: 10px;
124
+ font-size: 14px;
125
+ font-family: 'Arial', sans-serif;
126
+ color: #555;
127
+ background-color: rgba(255, 255, 255, 0.7);
128
+ border-top-right-radius: 8px;
129
+ }
130
+ </style>
131
+ <div class="bottom-left">
132
+ Created by Team Materio 🚀
133
+ </div>
134
+ """, unsafe_allow_html=True)