Update app.py
Browse files
app.py
CHANGED
@@ -64,10 +64,10 @@ st.markdown("<div style='text-align:center;'>Choose a query from <b>Select a pro
|
|
64 |
image_path = "IITGN_Logo.png"
|
65 |
|
66 |
# Display images and text in three columns with specified ratios
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
model_name = st.sidebar.selectbox("Select LLM:", ["llama3","mixtral", "gemma"])
|
72 |
|
73 |
questions = ['Custom Prompt']
|
|
|
64 |
image_path = "IITGN_Logo.png"
|
65 |
|
66 |
# Display images and text in three columns with specified ratios
|
67 |
+
col1, col2, col3 = st.sidebar.columns((0.8, 2, 1))
|
68 |
+
with col2:
|
69 |
+
st.image(image_path, use_column_width=True)
|
70 |
+
|
71 |
model_name = st.sidebar.selectbox("Select LLM:", ["llama3","mixtral", "gemma"])
|
72 |
|
73 |
questions = ['Custom Prompt']
|