adil9858 commited on
Commit
9fdbd86
1 Parent(s): 99c70fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -12,6 +12,9 @@ model = genai.GenerativeModel('gemini-pro')
12
  # Streamlit app
13
  st.title("Gemini AI x DataSciencePro")
14
 
 
 
 
15
  # Input text box for user query
16
  user_query = st.text_input("Enter your query:")
17
 
@@ -22,7 +25,4 @@ if st.button("Generate"):
22
  # Display the generated content using Markdown
23
  st.markdown(response.text)
24
 
25
- """# Run the app
26
- if __name__ == "__main__":
27
-
28
- st.run_app()"""
 
12
  # Streamlit app
13
  st.title("Gemini AI x DataSciencePro")
14
 
15
+ logo_image = "image.jpg"
16
+ st.image(logo_image, use_column_width=True)
17
+
18
  # Input text box for user query
19
  user_query = st.text_input("Enter your query:")
20
 
 
25
  # Display the generated content using Markdown
26
  st.markdown(response.text)
27
 
28
+