shukdevdatta123 commited on
Commit
c88d865
·
verified ·
1 Parent(s): f6f137b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -17,6 +17,9 @@ from io import BytesIO
17
  # Streamlit title
18
  st.title("Vehicle Information Extraction from Images")
19
 
 
 
 
20
  # Prompt user for OpenAI API key
21
  openai_api_key = st.text_input("Enter your OpenAI API Key:", type="password")
22
 
 
17
  # Streamlit title
18
  st.title("Vehicle Information Extraction from Images")
19
 
20
+ translateimg = Image.open("car.jpg") # Ensure the file is in the correct directory
21
+ st.image(translateimg, use_container_width=True) # Adjust the size as per preference
22
+
23
  # Prompt user for OpenAI API key
24
  openai_api_key = st.text_input("Enter your OpenAI API Key:", type="password")
25