Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
from transformers import pipeline
|
| 3 |
+
import numpy as np
|
| 4 |
+
from groq import Groq # Assuming this is the correct import
|
| 5 |
+
|
| 6 |
+
# Initialize Groq API
|
| 7 |
+
GROQ_API_KEY = "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"
|
| 8 |
+
client = Groq(api_key=GROQ_API_KEY)
|
| 9 |
+
|
| 10 |
+
# Mock Resource Monitoring System
|
| 11 |
+
RESOURCE_LIMITS = {
|
| 12 |
+
"Oxygen Level": (80, 100),
|
| 13 |
+
"Food Reserves (days)": (10, 365),
|
| 14 |
+
"Power Availability (%)": (30, 100),
|
| 15 |
+
"Communication Signals (Strength)": (50, 100),
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
def fetch_health_data():
|
| 19 |
+
"""Simulate fetching health data for astronauts."""
|
| 20 |
+
return {
|
| 21 |
+
"Heart Rate (bpm)": np.random.randint(50, 120),
|
| 22 |
+
"Oxygen Saturation (%)": np.random.randint(80, 100),
|
| 23 |
+
"Stress Indicator": np.random.choice(["Low", "Moderate", "High"])
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
def fetch_resource_data():
|
| 27 |
+
"""Simulate fetching resource data."""
|
| 28 |
+
return {key: np.random.uniform(*limits) for key, limits in RESOURCE_LIMITS.items()}
|
| 29 |
+
|
| 30 |
+
def groq_predict_alert(message):
|
| 31 |
+
"""Use Groq API to analyze emergency alerts."""
|
| 32 |
+
try:
|
| 33 |
+
result = client.predict({"text": message})
|
| 34 |
+
return result.get("label", "No label detected")
|
| 35 |
+
except Exception as e:
|
| 36 |
+
return f"Error using Groq API: {e}"
|
| 37 |
+
|
| 38 |
+
# Streamlit UI
|
| 39 |
+
st.title("ARMS: Autonomous Resource Management System")
|
| 40 |
+
st.write("Track, analyze, and optimize survival resources for space missions.")
|
| 41 |
+
|
| 42 |
+
st.subheader("Real-Time Monitoring")
|
| 43 |
+
resource_data = fetch_resource_data()
|
| 44 |
+
health_data = fetch_health_data()
|
| 45 |
+
|
| 46 |
+
col1, col2 = st.columns(2)
|
| 47 |
+
with col1:
|
| 48 |
+
st.write("### Resource Metrics")
|
| 49 |
+
for key, value in resource_data.items():
|
| 50 |
+
st.metric(key, f"{value:.2f}")
|
| 51 |
+
|
| 52 |
+
with col2:
|
| 53 |
+
st.write("### Astronaut Health Metrics")
|
| 54 |
+
for key, value in health_data.items():
|
| 55 |
+
st.metric(key, value)
|
| 56 |
+
|
| 57 |
+
# Predictive Analytics
|
| 58 |
+
st.subheader("Predictive Analysis & Alerts")
|
| 59 |
+
if st.button("Run Groq Analysis"):
|
| 60 |
+
alert_message = "Critical alert: Resources dangerously low. Immediate action required!"
|
| 61 |
+
groq_result = groq_predict_alert(alert_message)
|
| 62 |
+
st.write("Groq API Result:", groq_result)
|
| 63 |
+
st.warning(alert_message)
|
| 64 |
+
|
| 65 |
+
st.write("Developed for Hackathon using Groq API, Streamlit, and Hugging Face.")
|