File size: 9,326 Bytes
b67668b | 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 | import os
import json
import streamlit as st
import pandas as pd
from src.agent.graph import run_agent
from src.core.cleaning import clean_dataframe
from src.core.query import plan_query_with_llm, execute_query, summarize_results_with_llm
from src.core.security import basic_injection_check
st.set_page_config(page_title="AI Data Validation Agent (Industry-ready)", page_icon="π€", layout="wide")
st.title("π€ AI Data Validation Agent (Industry-ready)")
st.caption("Deterministic pandas answers + LLM planning/summarization (no LLM guessing).")
with st.sidebar:
st.header("Configuration")
api_key = st.text_input("OpenAI API Key", value=os.getenv("OPENAI_API_KEY",""), type="password")
model = st.selectbox("Model", ["gpt-4.1-mini","gpt-4.1","gpt-4o-mini","gpt-4o"], index=0)
st.divider()
uploaded = st.file_uploader("Upload CSV", type=["csv"])
st.divider()
st.markdown("**Tip:** Clean the data first, then ask questions.")
if "df_raw" not in st.session_state:
st.session_state.df_raw = None
if "df_clean" not in st.session_state:
st.session_state.df_clean = None
if "clean_report" not in st.session_state:
st.session_state.clean_report = None
tab1, tab2, tab3 = st.tabs(["π Data cleaning", "π¬ Ask questions", "π§ Self-correcting agent"])
with tab1:
st.subheader("1) Upload & clean")
if uploaded is None:
st.info("Upload a CSV from the sidebar.")
else:
df = pd.read_csv(uploaded)
st.session_state.df_raw = df
st.write("Raw preview")
st.dataframe(df.head(20), use_container_width=True)
if st.button("Clean & normalize", type="primary"):
dfc, report = clean_dataframe(df)
st.session_state.df_clean = dfc
st.session_state.clean_report = report
if st.session_state.df_clean is not None:
st.success("Cleaned dataset ready β
")
report = st.session_state.clean_report
st.write("Cleaning report")
st.json({"rows": report.rows, "fixes": report.fixes, "warnings": report.warnings})
st.write("Clean preview")
st.dataframe(st.session_state.df_clean, use_container_width=True)
csv_bytes = st.session_state.df_clean.to_csv(index=False).encode("utf-8")
st.download_button("Download cleaned CSV", data=csv_bytes, file_name="cleaned.csv", mime="text/csv")
with tab2:
st.subheader("2) Ask deterministic questions")
if st.session_state.df_clean is None:
st.warning("Clean your dataset first (Data cleaning tab).")
else:
question = st.text_input("Ask a question about the dataset", placeholder='e.g., "Names of users in Artificial Intelligence department"')
colA, colB = st.columns([1,1])
with colA:
run = st.button("Run query", type="primary")
with colB:
show_plan = st.checkbox("Show query plan (JSON)", value=False)
if run:
if not api_key:
st.error("Please add your OpenAI API key in the sidebar.")
elif not question.strip():
st.error("Please type a question.")
else:
blocked, msg = basic_injection_check(question)
if blocked:
st.error(msg)
else:
try:
spec = plan_query_with_llm(question, st.session_state.df_clean, api_key=api_key, model=model)
if show_plan:
st.code(spec.model_dump_json(indent=2), language="json")
result = execute_query(spec, st.session_state.df_clean)
st.write("Result table")
st.dataframe(result, use_container_width=True)
answer = summarize_results_with_llm(question, result, api_key=api_key, model=model)
st.markdown("### Answer")
st.write(answer)
except Exception as e:
st.error(str(e))
st.divider()
st.markdown("### Why this is accurate")
st.markdown("- LLM only creates a small JSON query plan.\n- Pandas executes it deterministically.\n- LLM only summarizes already computed results.")
from src.agent.graph import run_agent
import pandas as pd
with tab3:
st.subheader("Self-Correcting Data Validation Agent")
st.caption("Paste messy data β Extract JSON β Validate β Auto-correct retries β Final schema-perfect output (NO hallucination)")
raw = st.text_area("Paste messy employee data (any format)", height=220)
max_attempts = st.slider("Max retries", 1, 6, 3)
# --- 1) VISUALIZE STATE MACHINE (diagram) ---
st.markdown("### π§ State Machine (Extract β Validate β Correct β Finalize)")
dot = """
digraph G {
rankdir=LR;
node [shape=box, style="rounded,filled", color="#444444", fillcolor="#F4F6F8"];
Extract [label="extract"];
Validate [label="validate"];
Correct [label="correct"];
Finalize [label="finalize"];
Extract -> Validate;
Validate -> Finalize [label="pass OR max_retries"];
Validate -> Correct [label="fail AND retries_left"];
Correct -> Validate;
}
"""
try:
st.graphviz_chart(dot, use_container_width=True)
except Exception:
st.code(
"extract β validate β (pass) finalize\n"
" β (fail) correct β validate (loop)\n",
language="text"
)
if st.button("Run Agent", type="primary"):
if not api_key:
st.error("Please add your OpenAI API key in the sidebar.")
st.stop()
if not raw.strip():
st.error("Paste some messy data first.")
st.stop()
with st.spinner("Running extract β validate β correct loop..."):
final_state = run_agent(raw, api_key=api_key, model=model, max_attempts=max_attempts)
log = final_state.get("log", [])
result = final_state.get("result")
# --- 3) CORRECTION COUNT SUMMARY (metrics) ---
# attempts used
attempts_used = max((x.get("attempt", 0) for x in log), default=0)
# counts
employees_n = len(result.get("employees", [])) if result else 0
rejected_n = len(result.get("rejected", [])) if result else 0
# how many correct steps happened
correct_steps = sum(1 for x in log if x.get("step") == "correct")
validate_fails = sum(1 for x in log if x.get("step") == "validate" and x.get("status") == "fail")
st.markdown("### π Run Summary")
c1, c2, c3, c4 = st.columns(4)
c1.metric("Attempts used", attempts_used if attempts_used else 1)
c2.metric("Corrections", correct_steps)
c3.metric("Valid employees", employees_n)
c4.metric("Rejected records", rejected_n)
# Optional: show pass/fail clearly
if result is None:
st.error("Could not produce schema-valid JSON within retry limit.")
else:
st.success("Schema-valid output β
")
# --- 2) BEFORE / AFTER COMPARISON ---
st.markdown("### π Before vs After")
left, right = st.columns(2)
with left:
st.markdown("#### Before (Raw Input)")
st.code(raw.strip(), language="text")
with right:
st.markdown("#### After (Schema Output)")
if result is None:
st.code(final_state.get("last_json_text", ""), language="json")
else:
st.code(json.dumps(result, indent=2, default=str), language="json")
# --- Correction Log (keep your existing) ---
st.markdown("### π§Ύ Correction Log")
st.json(log)
# If failed, stop here
if result is None:
st.markdown("### Last JSON Attempt (debug)")
st.code(final_state.get("last_json_text", ""), language="json")
st.stop()
# -------- Valid employees table --------
st.markdown("### β
Valid Employees")
employees = result.get("employees", [])
if employees:
df_emp = pd.DataFrame(employees)
st.dataframe(df_emp, use_container_width=True)
else:
st.info("No valid employees extracted (all records were rejected).")
# -------- Rejected records table --------
st.markdown("### π« Rejected Records (No hallucination)")
rejected = result.get("rejected", [])
if rejected:
rej_rows = []
for r in rejected:
rej_rows.append(
{
"raw_record": r.get("raw_record", ""),
"reasons": "; ".join(r.get("reasons", [])),
}
)
df_rej = pd.DataFrame(rej_rows)
st.dataframe(df_rej, use_container_width=True)
else:
st.info("No rejected records. Everything was schema-valid.")
# -------- Download --------
st.download_button(
"Download JSON",
data=json.dumps(result, indent=2, default=str),
file_name="validated_output.json",
mime="application/json",
)
|