File size: 6,013 Bytes
96f0aad
2790bac
8bf44c2
b66e512
 
52ac874
 
96f0aad
52ac874
fb5cdfa
037b17d
8bf44c2
fb5cdfa
96a7efe
037b17d
b66e512
 
 
8bf44c2
 
 
b66e512
 
 
 
 
 
2790bac
 
 
 
 
52ac874
2790bac
b66e512
52ac874
2790bac
 
52ac874
 
 
2790bac
52ac874
 
 
8bf44c2
 
b66e512
 
8bf44c2
b66e512
 
8bf44c2
 
b66e512
 
 
 
 
 
 
 
 
 
 
8bf44c2
 
 
ed2ba1b
52ac874
 
 
8bf44c2
52ac874
 
fb5cdfa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8bf44c2
52ac874
 
 
 
 
 
fb5cdfa
 
 
 
 
 
 
 
 
 
 
 
 
b66e512
 
 
 
fb5cdfa
 
 
 
b66e512
fb5cdfa
b66e512
 
52ac874
b66e512
fb5cdfa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52ac874
fb5cdfa
 
 
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
import streamlit as st
import pandas as pd
import numpy as np
import os
import requests
import json
import re

# — Page config
st.set_page_config(page_title="CSV-Backed AI Agent with Function Calling", layout="wide")

# — Title & image
st.title("CSV-Backed AI Agent with Function Calling")
st.image("./nadi-lok-image.png")

# — Load API key
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
if not OPENAI_API_KEY:
    st.error("❌ OPENAI_API_KEY not set in Settings → Secrets.")
    st.stop()

HEADERS = {
    "Authorization": f"Bearer {OPENAI_API_KEY}",
    "Content-Type": "application/json",
}

# — Sidebar: CSV upload & preview
st.sidebar.header("Upload CSV File")
uploaded_file = st.sidebar.file_uploader("Choose a CSV file", type="csv")

if uploaded_file:
    try:
        df = pd.read_csv(uploaded_file)
        st.sidebar.success("File uploaded successfully!")
        st.sidebar.write("Preview of the uploaded file:")
        st.sidebar.dataframe(df.head())
    except Exception as e:
        st.sidebar.error(f"Error reading file: {e}")
        df = None
else:
    df = None

if df is not None:
    st.markdown(f"**Loaded CSV:** {df.shape[0]} rows × {df.shape[1]} columns")

    @st.cache_data(show_spinner=False)
    def build_row_embeddings(df: pd.DataFrame):
        # 1) Convert each row to a compact JSON string
        texts = df.apply(lambda r: r.to_json(), axis=1).tolist()

        # 2) Batch‐call the embeddings endpoint
        embeddings = []
        for i in range(0, len(texts), 100):
            batch = texts[i : i + 100]
            resp = requests.post(
                "https://api.openai.com/v1/embeddings",
                headers=HEADERS,
                json={"model": "text-embedding-ada-002", "input": batch},
                timeout=60,
            )
            resp.raise_for_status()
            data = resp.json()["data"]
            embeddings.extend(d["embedding"] for d in data)

        return np.array(embeddings), texts

    embeddings, row_texts = build_row_embeddings(df)

# — Prompt input
prompt = st.text_area(
    "Enter your prompt for the agent",
    placeholder="e.g. Which products have price > 100?",
    height=150,
)

# — Define function for OpenAI function calling
def search_csv(query: str):
    # Run a Pandas query safely
    try:
        result_df = df.query(query)
        return result_df.to_dict(orient="records")
    except Exception as e:
        return {"error": f"Query error: {str(e)}"}

function_schema = [
    {
        "name": "search_csv",
        "description": "Filter the CSV rows by a Pandas query. Example: price > 100",
        "parameters": {
            "type": "object",
            "properties": {
                "query": {
                    "type": "string",
                    "description": "A Pandas query string, e.g. 'price > 100 and category == \"A\"'"
                },
            },
            "required": ["query"],
        },
    }
]

# — Run Agent
if st.button("Run Agent"):
    if df is None:
        st.error("Please upload a CSV file first.")
    elif not prompt.strip():
        st.error("Please enter a prompt.")
    else:
        # 1) First call: ask OpenAI if it wants to use a function
        messages = [
            {
                "role": "system",
                "content": (
                    "You are an AI agent helping users analyze a CSV file. "
                    "If you need to search or filter the CSV, call the 'search_csv' function. "
                    "Only use the function when you need data from the CSV."
                ),
            },
            {"role": "user", "content": prompt}
        ]

        chat_resp = requests.post(
            "https://api.openai.com/v1/chat/completions",
            headers=HEADERS,
            json={
                "model": "gpt-3.5-turbo-1106",  # or "gpt-4-1106-preview" if available
                "messages": messages,
                "functions": function_schema,
                "function_call": "auto",
                "temperature": 0,
                "max_tokens": 1000,
            },
            timeout=60,
        )
        chat_resp.raise_for_status()
        response_json = chat_resp.json()
        msg = response_json["choices"][0]["message"]

        # 2) Check if function call is requested
        if msg.get("function_call"):
            func_name = msg["function_call"]["name"]
            args_json = msg["function_call"]["arguments"]
            args = json.loads(args_json)
            # Only one function: search_csv
            search_result = search_csv(args["query"])

            # 3) Pass function result back to OpenAI for final answer
            followup_messages = [
                {
                    "role": "system",
                    "content": (
                        "You are an AI agent helping users analyze a CSV file."
                    ),
                },
                {"role": "user", "content": prompt},
                {
                    "role": "function",
                    "name": func_name,
                    "content": json.dumps(search_result),
                }
            ]

            final_resp = requests.post(
                "https://api.openai.com/v1/chat/completions",
                headers=HEADERS,
                json={
                    "model": "gpt-3.5-turbo-1106",  # or "gpt-4-1106-preview"
                    "messages": followup_messages,
                    "temperature": 0,
                    "max_tokens": 1500,
                },
                timeout=60,
            )
            final_resp.raise_for_status()
            answer = final_resp.json()["choices"][0]["message"]["content"]

            st.subheader("✅ Agent Answer")
            st.markdown(answer)
            st.subheader("📊 Filtered CSV Data")
            st.json(search_result)
        else:
            # No function call: model answered directly
            st.subheader("✅ Agent Answer")
            st.markdown(msg["content"])