Update app.py
Browse files
app.py
CHANGED
@@ -60,6 +60,14 @@ st.markdown("<div style='text-align:center;'>Choose a query from <b>Select a pro
|
|
60 |
# inference_server = "https://api-inference.huggingface.co/models/codellama/CodeLlama-13b-hf"
|
61 |
# inference_server = "https://api-inference.huggingface.co/models/pandasai/bamboo-llm"
|
62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
model_name = st.sidebar.selectbox("Select LLM:", ["llama3","mixtral", "gemma"])
|
64 |
|
65 |
questions = ['Custom Prompt']
|
|
|
60 |
# inference_server = "https://api-inference.huggingface.co/models/codellama/CodeLlama-13b-hf"
|
61 |
# inference_server = "https://api-inference.huggingface.co/models/pandasai/bamboo-llm"
|
62 |
|
63 |
+
|
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']
|