Update app.py
Browse files
app.py
CHANGED
|
@@ -1,11 +1,76 @@
|
|
| 1 |
import os
|
| 2 |
-
from
|
|
|
|
| 3 |
|
| 4 |
import gradio as gr
|
| 5 |
import pandas as pd
|
|
|
|
|
|
|
| 6 |
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
def analyze_dataframe(df: pd.DataFrame, analysis_type: str) -> str:
|
| 10 |
"""Basic DataFrame analysis"""
|
| 11 |
if analysis_type == "summary":
|
|
|
|
| 1 |
import os
|
| 2 |
+
from dataclasses import dataclass
|
| 3 |
+
from typing import Any, Callable, Dict, List, Optional
|
| 4 |
|
| 5 |
import gradio as gr
|
| 6 |
import pandas as pd
|
| 7 |
+
import torch
|
| 8 |
+
from litellm import completion
|
| 9 |
|
| 10 |
+
# Agent Implementation
|
| 11 |
+
@dataclass
|
| 12 |
+
class Tool:
|
| 13 |
+
"""Simplified tool class"""
|
| 14 |
+
name: str
|
| 15 |
+
description: str
|
| 16 |
+
func: Callable
|
| 17 |
|
| 18 |
+
class MinimalAgent:
|
| 19 |
+
"""Minimal agent implementation for demo purposes"""
|
| 20 |
+
|
| 21 |
+
def __init__(
|
| 22 |
+
self,
|
| 23 |
+
model_id: str = "gpt-4o-mini",
|
| 24 |
+
temperature: float = 0.7,
|
| 25 |
+
max_steps: int = 5
|
| 26 |
+
):
|
| 27 |
+
self.model_id = model_id
|
| 28 |
+
self.temperature = temperature
|
| 29 |
+
self.max_steps = max_steps
|
| 30 |
+
self.tools: List[Tool] = []
|
| 31 |
+
|
| 32 |
+
def add_tool(self, name: str, description: str, func: Callable) -> None:
|
| 33 |
+
"""Add a tool to the agent"""
|
| 34 |
+
self.tools.append(Tool(name=name, description=description, func=func))
|
| 35 |
+
|
| 36 |
+
def run(self, prompt: str, **kwargs) -> str:
|
| 37 |
+
"""Run the agent with a prompt"""
|
| 38 |
+
messages = [
|
| 39 |
+
{"role": "system", "content": self._get_system_prompt()},
|
| 40 |
+
{"role": "user", "content": prompt}
|
| 41 |
+
]
|
| 42 |
+
|
| 43 |
+
try:
|
| 44 |
+
response = completion(
|
| 45 |
+
model=self.model_id,
|
| 46 |
+
messages=messages,
|
| 47 |
+
temperature=self.temperature,
|
| 48 |
+
)
|
| 49 |
+
return response.choices[0].message.content
|
| 50 |
+
except Exception as e:
|
| 51 |
+
return f"Error: {str(e)}"
|
| 52 |
+
|
| 53 |
+
def _get_system_prompt(self) -> str:
|
| 54 |
+
"""Get the system prompt including available tools"""
|
| 55 |
+
tools_desc = "\n".join([
|
| 56 |
+
f"- {tool.name}: {tool.description}"
|
| 57 |
+
for tool in self.tools
|
| 58 |
+
])
|
| 59 |
+
|
| 60 |
+
return f"""You are a helpful AI agent that can analyze data and write code.
|
| 61 |
+
|
| 62 |
+
Available tools:
|
| 63 |
+
{tools_desc}
|
| 64 |
+
|
| 65 |
+
Additional capabilities:
|
| 66 |
+
- Data analysis with pandas, numpy
|
| 67 |
+
- Visualization with matplotlib, seaborn
|
| 68 |
+
- Machine learning with sklearn
|
| 69 |
+
- Statistical analysis with scipy
|
| 70 |
+
|
| 71 |
+
Provide clear explanations and code examples."""
|
| 72 |
+
|
| 73 |
+
# Analysis Functions
|
| 74 |
def analyze_dataframe(df: pd.DataFrame, analysis_type: str) -> str:
|
| 75 |
"""Basic DataFrame analysis"""
|
| 76 |
if analysis_type == "summary":
|