Update app.py
Browse files
app.py
CHANGED
@@ -251,6 +251,14 @@ def page_2():
|
|
251 |
video_collection = st.session_state.video_collection
|
252 |
st.success("Collections loaded successfully.")
|
253 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
query = st.text_input("Enter your query", value="Example Query")
|
255 |
if query:
|
256 |
inputs = format_prompt_inputs(image_collection, text_collection, video_collection, query)
|
|
|
251 |
video_collection = st.session_state.video_collection
|
252 |
st.success("Collections loaded successfully.")
|
253 |
|
254 |
+
st.markdown("""
|
255 |
+
<style>
|
256 |
+
.stChatInputContainer > div {
|
257 |
+
background-color: #000000;
|
258 |
+
}
|
259 |
+
</style>
|
260 |
+
""", unsafe_allow_html=True)
|
261 |
+
|
262 |
query = st.text_input("Enter your query", value="Example Query")
|
263 |
if query:
|
264 |
inputs = format_prompt_inputs(image_collection, text_collection, video_collection, query)
|