Spaces:
Sleeping
Sleeping
File size: 8,937 Bytes
6bc65e6 0fd9758 6bc65e6 3d5446e 6bc65e6 3d5446e 6bc65e6 0fd9758 6bc65e6 0fd9758 6bc65e6 0fd9758 6bc65e6 0fd9758 6bc65e6 d2f7599 6bc65e6 d2f7599 6bc65e6 0fd9758 d2f7599 6bc65e6 d2f7599 6bc65e6 d2f7599 6bc65e6 1a9bf9b 6bc65e6 3d5446e 6bc65e6 1a9bf9b 0fd9758 6bc65e6 1a9bf9b 6bc65e6 0fd9758 6bc65e6 0fd9758 6bc65e6 0fd9758 6bc65e6 0fd9758 6bc65e6 0fd9758 6bc65e6 1a9bf9b 6bc65e6 0fd9758 6bc65e6 0fd9758 6bc65e6 0fd9758 6bc65e6 0fd9758 6bc65e6 0fd9758 1d1c9dc 0fd9758 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 |
import streamlit as st
import requests
from datetime import datetime
from deep_translator import GoogleTranslator
from geopy.geocoders import Nominatim
from streamlit_lottie import st_lottie
from timezonefinder import TimezoneFinder
import pytz
from streamlit_js_eval import get_geolocation
# ---------------------------
# API Key
# ---------------------------
GROQ_API_KEY = "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"
# ---------------------------
# Rescue numbers dictionary
# ---------------------------
rescue_contacts = {
"Pakistan": {
"Ambulance": "115",
"Fire Brigade": "16",
"Rescue Service": "1122",
"Police": "15"
},
"India": {
"Ambulance": "102",
"Fire Brigade": "101",
"Disaster Helpline": "108",
"Police": "100"
},
"USA": {
"Emergency Services": "911",
"Fire Rescue Division" : "888-772-3207"
},
"United Kingdom": {
"Emergency Services": "999",
"Non-Emergency Police Line" : "101"
}
}
# ---------------------------
# Timezone Helper
# ---------------------------
def get_timezone(lat, lon):
tf = TimezoneFinder()
tz_name = tf.timezone_at(lat=lat, lng=lon)
if tz_name:
try:
return pytz.timezone(tz_name)
except Exception:
return pytz.timezone("Asia/Karachi") # fallback to Pakistan
return pytz.timezone("Asia/Karachi")
# ---------------------------
# Session setup
# ---------------------------
if "history" not in st.session_state:
st.session_state.history = []
if "tz" not in st.session_state:
st.session_state.tz = pytz.timezone("Asia/Karachi") # default Lahore
# ---------------------------
# CSS Styling
# ---------------------------
st.markdown("""
<style>
body { background-color: #0d1117; color: white; }
h1, h2, h3, h4, h5 { color: white; }
input, textarea, .stTextInput>div>div>input { background-color: #161b22 !important; color: white !important; }
.chat-bubble { background-color: #f0f0f0; color: #000; padding: 0.5rem; margin-bottom: 0.5rem; border-radius: 10px; }
.answer-box { background-color: #d6f5f5; padding: 1rem; border-radius: 12px; color: #000; }
.contact-box { background-color: #ffeecc; padding: 1rem; border-radius: 10px; color: #000; }
[data-testid="stSidebar"] { background-color: #161b22; }
.sidebar .sidebar-content { background-color: #161b22; }
</style>
""", unsafe_allow_html=True)
# ---------------------------
# Sidebar Navigation
# ---------------------------
st.sidebar.markdown("# π AI Disaster Response Assistant")
page = st.sidebar.radio("Navigation", ["Chat Assistant", "Image Analysis"])
if page == "Image Analysis":
st.switch_page("pages/image_analysis.py")
# ---------------------------
# Main Page (Chat Assistant)
# ---------------------------
st.markdown("""
<h1 style='text-align: center; background-color: #008080; color: white; padding: 1rem; border-radius: 12px;'>
π¬ AI Disaster Chat Assistant
</h1>
""", unsafe_allow_html=True)
# ---------------------------
# Language Selection
# ---------------------------
language_options = {
"English": "en",
"Urdu": "ur",
"Hindi": "hi",
"Japanese": "ja",
"Turkish": "tr",
"Italian": "it"
}
preferred_language = st.selectbox("π Select your preferred language for responses:", list(language_options.keys()))
target_lang_code = language_options[preferred_language]
# new added ---------------------------
# Manual Location Dropdown (NEW)
# ---------------------------
st.markdown("## π Set Your Location")
location_options = {
"Karachi, Pakistan": "Pakistan",
"Islamabad, Pakistan": "Pakistan",
"Lahore , Pakistan " : "Pakistan",
"Mumbai, India": "India",
"London, UK": "United Kingdom",
"Los Angeles, USA": "USA",
"Miami, USA": "USA"
}
selected_location = st.selectbox("Choose a location:", list(location_options.keys()))
selected_country = location_options[selected_location]
st.markdown(f"π Selected Country: **{selected_country}**")
# Overwrite country and user_location if user selects manually
user_location = selected_location
country = selected_country
# ---------------------------
# Get Location & Timezone
# ---------------------------
location_data = get_geolocation()
user_location = "Unknown"
city = ""
country = ""
if location_data and location_data.get("coords"):
lat = location_data["coords"]["latitude"]
lon = location_data["coords"]["longitude"]
st.success(f"π GPS Location: {lat:.4f}, {lon:.4f}")
try:
geolocator = Nominatim(user_agent="geoapiExercises")
location = geolocator.reverse((lat, lon), language='en')
city = location.raw['address'].get('city', '') or location.raw['address'].get('town', '')
country = location.raw['address'].get('country', '')
user_location = f"{city}, {country}"
st.markdown(f"π You are in {user_location}")
st.session_state.tz = get_timezone(lat, lon)
except Exception:
st.warning("π Could not resolve full address or timezone from GPS.")
# ---------------------------
# Display rescue numbers
# ---------------------------
if country in rescue_contacts:
st.markdown("### π¨ Local Emergency Numbers")
contacts = rescue_contacts[country]
for service, number in contacts.items():
st.markdown(f"<div class='contact-box'>π <strong>{service}</strong>: {number}</div>", unsafe_allow_html=True)
# ---------------------------
# Chat UI
# ---------------------------
col1, col2 = st.columns([2, 1])
with col1:
st.markdown("### π§ Ask your question (any language):")
user_input = st.text_area(" ", placeholder="e.g. Ψ²ΩΨ²ΩΫ Ϊ©Ϋ Ψ―ΩΨ±Ψ§Ω Ω
Ψ¬ΪΎΫ Ϊ©ΫΨ§ Ϊ©Ψ±ΩΨ§ ΪΨ§ΫΫΫΨ or What to do in a flood?", height=120)
if st.button("π Get Help"):
if user_input.strip():
try:
translated_input = GoogleTranslator(source='auto', target='en').translate(user_input)
# ---------------------------
# If user asks for emergency number (NEW)
# ---------------------------
if "emergency number" in translated_input.lower():
if selected_country in rescue_contacts:
contacts = rescue_contacts[selected_country]
st.markdown("### π¨ Emergency Contact Details")
for service, number in contacts.items():
st.markdown(f"<div class='contact-box'>π <strong>{service}</strong>: {number}</div>", unsafe_allow_html=True)
# Stop further processing to avoid sending prompt to model
st.stop()
else:
st.warning("π« No emergency data found for selected country.")
st.stop()
location_context = f"The user is currently in {user_location}. Provide disaster-specific advice and include local rescue contact details if relevant. "
prompt = f"{location_context}Answer this disaster-related question: {translated_input}"
headers = {
"Authorization": f"Bearer {GROQ_API_KEY}",
"Content-Type": "application/json"
}
data = {
"model": "llama3-70b-8192",
"messages": [{"role": "user", "content": prompt}]
}
response = requests.post("https://api.groq.com/openai/v1/chat/completions", headers=headers, json=data)
if response.status_code == 200:
answer_en = response.json()['choices'][0]['message']['content']
translated_answer = GoogleTranslator(source='en', target=target_lang_code).translate(answer_en)
st.markdown(f"<div class='answer-box'>{translated_answer}</div>", unsafe_allow_html=True)
# Get current local time with timezone
now = datetime.now(st.session_state.tz)
timestamp = now.strftime("%I:%M %p")
st.session_state.history.append({"time": timestamp, "question": user_input})
else:
st.error("β Error: " + response.text)
except Exception as e:
st.error(f"β Exception occurred: {e}")
with col2:
st.markdown("### π Chat History")
if st.session_state.history:
for entry in reversed(st.session_state.history):
st.markdown(f"""
<div class='chat-bubble'>
π {entry['time']}<br><strong>{entry['question']}</strong>
</div>
""", unsafe_allow_html=True)
else:
st.info("No questions asked yet.")
if st.button("π§Ή Clear History"):
st.session_state.history = []
st.success("Chat history cleared.")
|