Update app.py
Browse files
app.py
CHANGED
|
@@ -8,56 +8,44 @@ from env import EmailTriageEnv, URGENCY_LABELS, ROUTING_LABELS, RESOLUTION_LABEL
|
|
| 8 |
|
| 9 |
app = FastAPI()
|
| 10 |
|
| 11 |
-
# --- Agent Logic
|
| 12 |
def smart_agent_logic(desc):
|
| 13 |
desc = desc.lower()
|
| 14 |
-
# Hard: Security
|
| 15 |
if any(x in desc for x in ["password", "hacked", "breach", "phish", "threat", "ransomware"]):
|
| 16 |
-
if "threat" in desc or "ransomware" in desc
|
| 17 |
-
return [2, 2, 2]
|
| 18 |
-
return [2, 1, 2]
|
| 19 |
-
# Medium: Billing
|
| 20 |
if any(x in desc for x in ["billing", "refund", "dispute", "invoice", "payment"]):
|
| 21 |
return [1, 2, 2]
|
| 22 |
-
# Easy: Tech/General
|
| 23 |
if any(x in desc for x in ["support", "routine", "slow", "error"]):
|
| 24 |
return [0, 1, 1]
|
| 25 |
return [0, 0, 0]
|
| 26 |
|
| 27 |
-
# --- Core
|
| 28 |
def run_demo(task):
|
| 29 |
try:
|
| 30 |
env = EmailTriageEnv(task=task)
|
| 31 |
env.reset()
|
| 32 |
results = []
|
| 33 |
total_reward = 0
|
| 34 |
-
|
| 35 |
-
print(f"[START] Task: {task}") # CRITICAL TAG
|
| 36 |
-
|
| 37 |
for i, email in enumerate(env._queue):
|
| 38 |
action = smart_agent_logic(email['description'])
|
| 39 |
_, reward, _, _, _ = env.step(action)
|
| 40 |
total_reward += reward
|
| 41 |
-
|
| 42 |
-
# Print tags for Task Validation
|
| 43 |
print(f"[STEP] Index: {i} | Action: {action} | Reward: {reward}")
|
| 44 |
-
|
| 45 |
status = "✅ MATCH" if reward >= 1.0 else "❌ MISMATCH"
|
| 46 |
results.append(f"#{i+1} [{task.upper()}] {email['description'][:30]}... | {status}")
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
return "\n".join(results) + f"\n\n--- FINAL SCORE: {final_score:.3f} / 1.000 ---"
|
| 52 |
except Exception as e:
|
| 53 |
return f"Error: {str(e)}"
|
| 54 |
|
| 55 |
-
# ---
|
| 56 |
@app.post("/reset")
|
| 57 |
async def reset_endpoint():
|
| 58 |
return {"status": "success", "message": "Environment Reset OK"}
|
| 59 |
|
| 60 |
-
@app.get("/")
|
| 61 |
async def health_check():
|
| 62 |
return {"status": "online"}
|
| 63 |
|
|
@@ -70,7 +58,9 @@ with gr.Blocks(title="Email Gatekeeper AI") as demo:
|
|
| 70 |
out = gr.Textbox(label="Evaluation Logs", lines=12)
|
| 71 |
btn.click(run_demo, inputs=diff, outputs=out)
|
| 72 |
|
|
|
|
| 73 |
app = gr.mount_gradio_app(app, demo, path="/")
|
| 74 |
|
| 75 |
if __name__ == "__main__":
|
|
|
|
| 76 |
uvicorn.run(app, host="0.0.0.0", port=7860)
|
|
|
|
| 8 |
|
| 9 |
app = FastAPI()
|
| 10 |
|
| 11 |
+
# --- Agent Logic ---
|
| 12 |
def smart_agent_logic(desc):
|
| 13 |
desc = desc.lower()
|
|
|
|
| 14 |
if any(x in desc for x in ["password", "hacked", "breach", "phish", "threat", "ransomware"]):
|
| 15 |
+
return [2, 2, 2] if "threat" in desc or "ransomware" in desc else [2, 1, 2]
|
|
|
|
|
|
|
|
|
|
| 16 |
if any(x in desc for x in ["billing", "refund", "dispute", "invoice", "payment"]):
|
| 17 |
return [1, 2, 2]
|
|
|
|
| 18 |
if any(x in desc for x in ["support", "routine", "slow", "error"]):
|
| 19 |
return [0, 1, 1]
|
| 20 |
return [0, 0, 0]
|
| 21 |
|
| 22 |
+
# --- Core Function ---
|
| 23 |
def run_demo(task):
|
| 24 |
try:
|
| 25 |
env = EmailTriageEnv(task=task)
|
| 26 |
env.reset()
|
| 27 |
results = []
|
| 28 |
total_reward = 0
|
| 29 |
+
print(f"[START] Task: {task}")
|
|
|
|
|
|
|
| 30 |
for i, email in enumerate(env._queue):
|
| 31 |
action = smart_agent_logic(email['description'])
|
| 32 |
_, reward, _, _, _ = env.step(action)
|
| 33 |
total_reward += reward
|
|
|
|
|
|
|
| 34 |
print(f"[STEP] Index: {i} | Action: {action} | Reward: {reward}")
|
|
|
|
| 35 |
status = "✅ MATCH" if reward >= 1.0 else "❌ MISMATCH"
|
| 36 |
results.append(f"#{i+1} [{task.upper()}] {email['description'][:30]}... | {status}")
|
| 37 |
+
score = total_reward / len(env._queue) if env._queue else 0
|
| 38 |
+
print(f"[END] Final Score: {score}")
|
| 39 |
+
return "\n".join(results) + f"\n\n--- FINAL SCORE: {score:.3f} / 1.000 ---"
|
|
|
|
|
|
|
| 40 |
except Exception as e:
|
| 41 |
return f"Error: {str(e)}"
|
| 42 |
|
| 43 |
+
# --- API for Validator ---
|
| 44 |
@app.post("/reset")
|
| 45 |
async def reset_endpoint():
|
| 46 |
return {"status": "success", "message": "Environment Reset OK"}
|
| 47 |
|
| 48 |
+
@app.get("/status")
|
| 49 |
async def health_check():
|
| 50 |
return {"status": "online"}
|
| 51 |
|
|
|
|
| 58 |
out = gr.Textbox(label="Evaluation Logs", lines=12)
|
| 59 |
btn.click(run_demo, inputs=diff, outputs=out)
|
| 60 |
|
| 61 |
+
# IS LINE KO DHAYAN SE DEKHO: Humne path="/" kar diya hai
|
| 62 |
app = gr.mount_gradio_app(app, demo, path="/")
|
| 63 |
|
| 64 |
if __name__ == "__main__":
|
| 65 |
+
# Hugging Face hamesha port 7860 use karta hai
|
| 66 |
uvicorn.run(app, host="0.0.0.0", port=7860)
|