Spaces:
Configuration error
Configuration error
File size: 11,218 Bytes
8437d61 | 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 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | from io import StringIO
from langchain_core.tools import tool
import sys
import os
from pydantic import BaseModel, Field
import pandas as pd
from typing import Optional
class CleaningToolInput(BaseModel):
query: str = Field(..., description="A valid pandas code snippet that modifies the 'df' DataFrame.")
path: str = Field(..., description="Full path to the source dataset file (CSV, Excel, etc.). A new cleaned file will be created based on this path.")
@tool(args_schema=CleaningToolInput)
def python_cleaning_tool(query: str, path: str) -> str:
"""
Executes a pandas command on a DataFrame loaded from a file path.
IMPORTANT: This tool SAVES the modified DataFrame to a NEW file prefixed with 'cleaned_'.
Use this for cleaning and transformation tasks. The DataFrame is accessible as 'df'.
"""
# Normalize the path to avoid OS-specific issues
path = os.path.normpath(path)
if not os.path.exists(path):
return f"β Source file not found: {path}"
ext = os.path.splitext(path)[-1].lower()
try:
if ext == ".csv":
df = pd.read_csv(path, encoding='utf-8')
elif ext in [".xls", ".xlsx"]:
df = pd.read_excel(path)
else:
return f"β Unsupported file type: {ext}"
except Exception as e:
return f"β Error reading file '{path}': {e}"
local_namespace = {"df": df, "pd": pd}
old_stdout = sys.stdout
sys.stdout = captured_output = StringIO()
try:
# Execute the cleaning code provided by the agent
exec(query, {}, local_namespace)
output = captured_output.getvalue()
# Get the modified DataFrame from the local namespace
modified_df = local_namespace.get("df")
if modified_df is None:
return "β Error: The 'df' DataFrame was not found after code execution."
# === THIS IS THE CRITICAL FIX ===
# 1. Construct the NEW output path with the 'cleaned_' prefix
directory = os.path.dirname(path)
filename = os.path.basename(path)
output_filename = f"cleaned_{filename}"
output_filepath = os.path.join(directory, output_filename)
# 2. Save the modified DataFrame to the NEW file
if ext == ".csv":
modified_df.to_csv(output_filepath, index=False, encoding='utf-8')
elif ext in [".xls", ".xlsx"]:
modified_df.to_excel(output_filepath, index=False)
# ===============================
return f"β
Executed and saved cleaned data to {output_filepath}.\n{output or 'No print output.'}"
except Exception as e:
return f"β Execution failed: {e}"
finally:
sys.stdout = old_stdout
# --- Tool 2: For the Validation Node (Read-Only) ---
class ValidationToolInput(BaseModel):
query: str = Field(..., description="A valid pandas code snippet that inspects 'df' and prints results.")
path: str = Field(..., description="Full path to the dataset file (CSV, Excel, etc.) to be inspected.")
@tool(args_schema=ValidationToolInput)
def python_validation_tool(query: str, path: str) -> str:
"""
Executes a read-only pandas command to inspect a DataFrame loaded from a file path.
IMPORTANT: This tool DOES NOT SAVE any changes. It loads all data as strings to
accurately check the saved state of the file. Use this for validation checks.
The DataFrame is accessible as 'df'.
"""
path = os.path.normpath(path)
if not os.path.exists(path):
return f"β File not found: {path}"
ext = os.path.splitext(path)[-1].lower()
try:
# *** THE KEY DIFFERENCE ***
# Load all columns as strings to prevent automatic type inference by pandas.
# This allows us to see the "raw" state of the saved CSV.
if ext == ".csv":
df = pd.read_csv(path, encoding='utf-8', dtype=str)
elif ext in [".xls", ".xlsx"]:
df = pd.read_excel(path, dtype=str)
else:
return f"β Unsupported file type: {ext}"
except Exception as e:
return f"β Error reading file '{path}': {e}"
local_namespace = {"df": df, "pd": pd}
old_stdout = sys.stdout
sys.stdout = captured_output = StringIO()
try:
exec(query, {}, local_namespace)
output = captured_output.getvalue()
# NOTE: There is NO code here to save the dataframe. This is read-only.
return f"β
Inspection executed successfully.\n{output or 'No print output.'}"
except Exception as e:
return f"β Execution failed: {e}"
finally:
sys.stdout = old_stdout
@tool
def eda_fact_sheet(path:str,sample_size: int = 3, freq_top: int = 3):
"""
Generates a batchwise fact sheet for a dataset.
Args:
path (str): Path to CSV or Excel dataset.
sample_size (int): Number of example values per column.
freq_top (int): Number of top frequent values per column.
Returns:
dict: Fact sheet containing dataset-level info and column-level stats in batches.
"""
path = path.strip().strip('"').strip("'")
path = os.path.normpath(path)
#--- Load dataset ---
if path.endswith(".csv"):
df = pd.read_csv(path)
elif path.endswith(".xlsx") or path.endswith(".xls"):
df = pd.read_excel(path)
else:
raise ValueError("Unsupported file format. Use CSV or Excel.")
df = pd.read_csv(path)
n_rows, n_columns = df.shape
fact_sheet = {
"n_rows": n_rows,
"n_columns": n_columns,
"batches": []
}
# --- Determine batch splits ---
batch_size = 15
batch_splits = [df.columns[i:i+batch_size].tolist() for i in range(0, n_columns, batch_size)]
# --- Process each batch ---
for batch_cols in batch_splits:
batch_profile = {"columns": {}}
for col in batch_cols:
series = df[col]
col_profile = {}
total = len(series)
# Core stats
col_profile["dtype"] = str(series.dtype)
col_profile["null_percent"] = round(float(series.isna().sum() / total * 100), 2)
col_profile["unique_percent"] = round(float(series.nunique(dropna=True) / total * 100), 2)
# Example values
try:
col_profile["examples"] = series.dropna().sample(
min(sample_size, series.dropna().shape[0]),
random_state=42
).tolist()
except ValueError:
col_profile["examples"] = []
# Top frequent values
if not series.isna().all():
top_freq = series.value_counts(dropna=True).head(freq_top)
col_profile["top_values"] = {str(k): int(v) for k, v in top_freq.to_dict().items()}
# Numeric columns
if pd.api.types.is_numeric_dtype(series):
col_profile.update({
"min": float(series.min(skipna=True)),
"max": float(series.max(skipna=True)),
"mean": float(series.mean(skipna=True)),
"std": float(series.std(skipna=True))
})
if series.std(skipna=True) > 0:
z_scores = ((series - series.mean(skipna=True)) / series.std(skipna=True)).abs()
col_profile["has_outliers"] = bool((z_scores > 3).any())
else:
col_profile["has_outliers"] = False
# Datetime columns
elif pd.api.types.is_datetime64_any_dtype(series):
if not series.dropna().empty:
col_profile["min_date"] = str(series.min())
col_profile["max_date"] = str(series.max())
# Text/categorical columns
elif pd.api.types.is_object_dtype(series):
lengths = series.dropna().astype(str).map(len)
if not lengths.empty:
col_profile["avg_length"] = float(lengths.mean())
col_profile["max_length"] = int(lengths.max())
unusual = series.dropna().astype(str).str.contains(r"[^a-zA-Z0-9\s]").sum()
col_profile["unusual_char_percent"] = round(float(unusual / total * 100), 2)
# Flags
if series.nunique(dropna=True) == total:
col_profile["is_identifier"] = True
elif series.nunique(dropna=True) <= 1:
col_profile["is_constant"] = True
batch_profile["columns"][col] = col_profile
fact_sheet["batches"].append(batch_profile)
return fact_sheet
class PythonInputs(BaseModel):
query: str = Field(description="A valid python command to run.")
@tool(args_schema=PythonInputs)
def python_repl_ast(query: str, path: Optional[str] = None) -> str:
"""
Runs a Python command and returns the result.
If `path` is provided, the dataframe at that path will be loaded as `df`.
Supports CSV, Excel, and Parquet.
Any in-place modifications to `df` are saved back to the same file.
"""
df = None
if path:
ext = os.path.splitext(path)[-1].lower()
if ext == ".csv":
df = pd.read_csv(path)
elif ext in [".xls", ".xlsx"]:
df = pd.read_excel(path)
elif ext == ".parquet":
df = pd.read_parquet(path)
else:
return f"Unsupported file type: {ext}"
# Restricted namespaces
local_namespace = {"df": df}
global_namespace = {}
# Capture stdout for print()
old_stdout = sys.stdout
sys.stdout = captured_output = StringIO()
try:
# Run code
exec(query, global_namespace, local_namespace)
# Capture output
output = captured_output.getvalue()
if not output:
try:
# Eval last expression if no print output
lines = [line for line in query.strip().split("\n") if line.strip()]
if lines:
last_line_result = eval(lines[-1], global_namespace, local_namespace)
output = str(last_line_result)
else:
output = "Executed successfully, but no output was produced."
except Exception:
output = "Executed successfully, but no output was produced."
# Save back modified DataFrame if applicable
if path and "df" in local_namespace and isinstance(local_namespace["df"], pd.DataFrame):
df = local_namespace["df"]
if ext == ".csv":
df.to_csv(path, index=False)
elif ext in [".xls", ".xlsx"]:
df.to_excel(path, index=False)
elif ext == ".parquet":
df.to_parquet(path, index=False)
return output
except Exception as e:
return f"Execution failed with error: {e}"
finally:
sys.stdout = old_stdout
|