File size: 6,902 Bytes
ba59239 82009c8 ba59239 5c55cb5 82009c8 ba59239 82009c8 0b2d10e ba59239 82009c8 ba59239 0b2d10e ba59239 0b2d10e ba59239 0b2d10e ba59239 0b2d10e ba59239 0b2d10e ba59239 0b2d10e ba59239 82009c8 ba59239 82009c8 ba59239 9fa5ff3 ba59239 9fa5ff3 ba59239 82009c8 ba59239 0b2d10e ba59239 0b2d10e ba59239 0b2d10e ba59239 0b2d10e ba59239 0b2d10e ba59239 0b2d10e ba59239 0b2d10e ba59239 9fa5ff3 5c55cb5 ba59239 9fa5ff3 82009c8 5c55cb5 0b2d10e ba59239 d97b7c8 ba59239 d97b7c8 ba59239 d97b7c8 ba59239 82009c8 0b2d10e d97b7c8 ba59239 d97b7c8 ba59239 82009c8 ba59239 82009c8 ba59239 | 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 | import os
import random
import json
import time
import numpy as np
import pandas as pd
import requests
from datetime import datetime
from sklearn.metrics.pairwise import cosine_similarity
from sentence_transformers import SentenceTransformer
import faiss
import gradio as gr
# ============================
# SAFE TOKEN LOAD
# ============================
HF_TOKEN = os.getenv("HF_TOKEN", "").strip()
if not HF_TOKEN and os.path.exists(".env"):
try:
with open(".env", "r") as f:
HF_TOKEN = f.read().strip()
except Exception:
HF_TOKEN = ""
if HF_TOKEN:
print("✅ Hugging Face token loaded successfully.")
else:
print("⚠️ No Hugging Face token found. Running in fallback/local mode.")
# ============================
# CONFIG
# ============================
HF_API_URL = "https://router.huggingface.co/hf-inference"
headers = {"Authorization": f"Bearer {HF_TOKEN}"} if HF_TOKEN else {}
DATA_DIR = "./data"
os.makedirs(DATA_DIR, exist_ok=True)
# ============================
# MODEL + FAISS SETUP
# ============================
model = SentenceTransformer("all-MiniLM-L6-v2")
VECTOR_DIM = model.get_sentence_embedding_dimension()
FAISS_PATH = os.path.join(DATA_DIR, "incident_memory.faiss")
META_PATH = os.path.join(DATA_DIR, "incidents.json")
# Load or initialize FAISS index
if os.path.exists(FAISS_PATH):
try:
index = faiss.read_index(FAISS_PATH)
with open(META_PATH, "r") as f:
incident_memory = json.load(f)
print(f"✅ Loaded {len(incident_memory)} past incidents from FAISS.")
except Exception:
print("⚠️ Failed to load FAISS index. Starting fresh.")
index = faiss.IndexFlatL2(VECTOR_DIM)
incident_memory = []
else:
index = faiss.IndexFlatL2(VECTOR_DIM)
incident_memory = []
# ============================
# ANOMALY DETECTION
# ============================
def detect_anomaly(event):
"""Detects anomalies based on latency/error_rate thresholds, with forced random noise."""
force_anomaly = random.random() < 0.25
if force_anomaly or event["latency"] > 150 or event["error_rate"] > 0.05:
return True
return False
# ============================
# AI ANALYSIS + HEALING
# ============================
def analyze_event(event):
prompt = (
f"Analyze this telemetry event and suggest a healing action:\n"
f"Component: {event['component']}\n"
f"Latency: {event['latency']}\n"
f"Error Rate: {event['error_rate']}\n"
f"Detected Anomaly: {event['anomaly']}\n"
)
if not HF_TOKEN:
return "Local mode: analysis unavailable (no token).", "No action taken."
try:
response = requests.post(
f"{HF_API_URL}/mistralai/Mixtral-8x7B-Instruct-v0.1",
headers=headers,
json={"inputs": prompt},
timeout=10,
)
if response.status_code == 200:
result = response.json()
text = (
result[0]["generated_text"]
if isinstance(result, list) and "generated_text" in result[0]
else str(result)
)
return text, choose_healing_action(event, text)
else:
return f"Error {response.status_code}: {response.text}", "No actionable step detected."
except Exception as e:
return f"Error generating analysis: {e}", "No actionable step detected."
# ============================
# HEALING SIMULATION
# ============================
def choose_healing_action(event, analysis_text):
possible_actions = [
"Restarted container",
"Scaled service replicas",
"Cleared queue backlog",
"Invalidated cache",
"Re-deployed model endpoint",
]
if "restart" in analysis_text.lower():
return "Restarted container"
elif "scale" in analysis_text.lower():
return "Scaled service replicas"
elif "cache" in analysis_text.lower():
return "Invalidated cache"
return random.choice(possible_actions)
# ============================
# VECTOR SIMILARITY + FAISS PERSISTENCE
# ============================
def record_and_search_similar(event, analysis_text):
"""Store each event vector in FAISS and search for similar incidents."""
description = (
f"Component: {event['component']} | "
f"Latency: {event['latency']} | "
f"ErrorRate: {event['error_rate']} | "
f"Analysis: {analysis_text}"
)
embedding = model.encode(description).astype("float32").reshape(1, -1)
similar_info = ""
if len(incident_memory) > 0 and index.ntotal > 0:
k = min(3, len(incident_memory))
D, I = index.search(embedding, k)
similar = [incident_memory[i]["description"] for i in I[0] if D[0][0] < 0.5]
if similar:
similar_info = f"Found {len(similar)} similar incidents (e.g., {similar[0][:120]}...)."
# Store new entry
incident_memory.append({"description": description})
index.add(embedding)
# Persist FAISS + metadata
faiss.write_index(index, FAISS_PATH)
with open(META_PATH, "w") as f:
json.dump(incident_memory, f)
return similar_info
# ============================
# EVENT HANDLER
# ============================
event_log = []
def process_event(component, latency, error_rate):
event = {
"timestamp": datetime.now().strftime("%Y-%m-%d %H:%M:%S"),
"component": component,
"latency": latency,
"error_rate": error_rate,
}
event["anomaly"] = detect_anomaly(event)
status = "Anomaly" if event["anomaly"] else "Normal"
analysis, healing = analyze_event(event)
similar = record_and_search_similar(event, analysis)
healing = f"{healing} {similar}".strip()
event["status"] = status
event["analysis"] = analysis
event["healing_action"] = healing
event_log.append(event)
df = pd.DataFrame(event_log[-20:])
return f"✅ Event Processed ({status})", df
# ============================
# GRADIO UI
# ============================
with gr.Blocks(theme=gr.themes.Soft()) as demo:
gr.Markdown("## 🧠 Agentic Reliability Framework MVP")
gr.Markdown("Adaptive anomaly detection + AI-driven self-healing + vector memory (FAISS persistent)")
component = gr.Textbox(label="Component", value="api-service")
latency = gr.Slider(10, 400, value=100, label="Latency (ms)")
error_rate = gr.Slider(0.0, 0.2, value=0.02, label="Error Rate")
submit = gr.Button("🚀 Submit Telemetry Event", variant="primary")
output = gr.Textbox(label="Detection Output")
table = gr.Dataframe(label="Recent Events (Last 20)")
submit.click(process_event, [component, latency, error_rate], [output, table])
# ============================
# ENTRY POINT
# ============================
if __name__ == "__main__":
demo.launch(server_name="0.0.0.0", server_port=7860)
|