Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import requests
|
3 |
+
|
4 |
+
# Define API URL
|
5 |
+
API_URL = "http://34.58.49.157:5000/analyze" # Replace <server-ip> with your server's IP or localhost
|
6 |
+
|
7 |
+
st.title("CXR_Larkai")
|
8 |
+
st.write("Upload an chest xray and ask")
|
9 |
+
|
10 |
+
# File uploader for the image
|
11 |
+
uploaded_file = st.file_uploader("Choose an image", type=["jpg", "png", "jpeg"])
|
12 |
+
|
13 |
+
# Text area for instruction
|
14 |
+
instruction = st.text_area("Enter your instruction", "",height=70)
|
15 |
+
|
16 |
+
if st.button("Analyze"):
|
17 |
+
if uploaded_file and instruction:
|
18 |
+
files = {"image": uploaded_file.getvalue()}
|
19 |
+
data = {"instruction": instruction}
|
20 |
+
|
21 |
+
# Call the API
|
22 |
+
response = requests.post(API_URL, files={"image": uploaded_file}, data=data)
|
23 |
+
if response.status_code == 200:
|
24 |
+
result = response.json()
|
25 |
+
st.success(f"Response: {result['response']}")
|
26 |
+
else:
|
27 |
+
st.error(f"Error: {response.text}")
|
28 |
+
else:
|
29 |
+
st.warning("Please upload an image and enter instructions.")
|