Spaces:
Sleeping
Sleeping
File size: 15,078 Bytes
6816d40 eac497f 6816d40 0b18578 83b731f 0b18578 74ab061 a69d6fe 74ab061 fcc9d25 74ab061 0b18578 83b731f 0b18578 |
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 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 |
import streamlit as st
import pandas as pd
from langchain.memory import ConversationBufferMemory
from langchain_google_genai import ChatGoogleGenerativeAI
import google.generativeai as genai
from PIL import Image
import PyPDF2
import os
from langchain.agents import initialize_agent, Tool
from langchain.agents.agent_types import AgentType
from difflib import get_close_matches
from dotenv import load_dotenv
# Load environment variables
load_dotenv()
# Configure Google API
genai.configure(api_key=os.getenv('GOOGLE_API_KEY'))
def configure_gemini(api_key):
genai.configure(api_key=api_key)
return genai.GenerativeModel('gemini-2.0-flash-thinking-exp')
model = configure_gemini(os.environ['GOOGLE_API_KEY'])
# Initialize Gemini models
llm_flash_exp = ChatGoogleGenerativeAI(
model="gemini-2.0-flash-thinking-exp",
max_retries=2
)
class SmartShoppingAssistant:
def __init__(self, products_df):
self.df = products_df
# Preprocess product names for faster matching.
self.df['CleanName'] = self.df['ProductName'].str.upper().str.strip().str.replace(r'\s+', ' ', regex=True)
self.product_names = self.df['CleanName'].tolist()
self.memory = ConversationBufferMemory(memory_key="chat_history", return_messages=True)
self.setup_agent()
def find_closest_product(self, product_name, threshold=0.7):
product_name = product_name.upper().strip()
matches = get_close_matches(
product_name,
self.product_names,
n=3,
cutoff=threshold
)
return matches if matches else []
def match_products_with_catalogue(self, extracted_items):
"""Match extracted items with catalogue products using Gemini."""
product_list = self.df['ProductName'].tolist()
product_string = ", ".join(product_list)
prompt = f"""
Given these extracted items and quantities:
{extracted_items}
And this product catalogue:
{product_string}
Match each item with the most appropriate product from the catalogue.
For each item, provide:
1. The exact product name from the catalogue
2. The quantity (if specified, otherwise assume 1)
3. Any specific requirements (brand, size, etc.)
Format the response as one entry per line:
ProductName == "MATCHED_PRODUCT" quantity: NUMBER
"""
try:
matches = llm_flash_exp.predict(prompt)
return matches.strip()
except Exception as e:
return f"Error matching products: {str(e)}"
def search_products_fuzzy(self, product_names_with_quantities):
"""Perform fuzzy search and return a DataFrame with product details."""
results = pd.DataFrame()
matched_products = set()
for item in product_names_with_quantities:
# Expect a line like: ProductName == "Some Name" quantity: 3
parts = item.split('quantity:')
if len(parts) < 2:
continue # Skip badly formatted lines.
clean_name = parts[0].strip().upper().replace('PRODUCTNAME ==', '').strip(' "\'')
try:
quantity = int(parts[1].strip())
except Exception:
quantity = 1
if clean_name in matched_products:
continue
closest_matches = self.find_closest_product(clean_name)
for match in closest_matches:
matched = self.df[self.df['CleanName'] == match]
if not matched.empty:
matched = matched.copy()
matched['Quantity'] = quantity
results = pd.concat([results, matched], ignore_index=True)
matched_products.add(clean_name)
break # Use the first good match
return results.drop_duplicates(subset=['CleanName'])
def setup_agent(self):
"""Set up the LangChain agent with necessary tools."""
def search_products(query):
try:
product_entries = [entry.strip() for entry in query.split('or')]
results = self.search_products_fuzzy(product_entries)
if not results.empty:
formatted_results = results.apply(
lambda x: f"{x['ProductName']} (Quantity: {x['Quantity']}) - Price: ${x['RetailPrice']:.2f}",
axis=1
)
return "\n".join(formatted_results)
return "No products found matching your criteria."
except Exception as e:
return f"Error executing query: {str(e)}"
tools = [
Tool(
name="Product Search",
func=search_products,
description="Search for products in the supermarket database using fuzzy matching"
)
]
self.agent = initialize_agent(
tools=tools,
memory=self.memory,
llm=llm_flash_exp,
agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION,
verbose=True,
max_iterations=5
)
def process_natural_language_query(self, query):
"""
Process a natural language query:
1. Extract items and quantities.
2. Match them with the catalogue.
3. Return a DataFrame (if possible) so that quantity and price can be displayed and the total computed.
"""
try:
extraction_prompt = f"""
Extract the products and their quantities from this shopping request.
If a quantity is not specified, assume 1.
Shopping request: {query}
Format each item on a separate line as:
ProductName == "EXTRACTED_PRODUCT" quantity: NUMBER
"""
extracted_items = llm_flash_exp.predict(extraction_prompt)
matched_products_str = self.match_products_with_catalogue(extracted_items)
product_entries = [line.strip() for line in matched_products_str.splitlines() if line.strip()]
results_df = self.search_products_fuzzy(product_entries)
# If no matches are found, return the text response.
if results_df.empty:
return "No products were matched in the catalogue."
return results_df
except Exception as e:
return f"Error processing query: {str(e)}"
def extract_text_from_image(self, image):
"""Extract text from an uploaded image using Gemini."""
prompt = """
Analyze this image and extract products and their quantities.
If quantities aren't specified, assume 1.
List each item starting with its quantity and then name of item and nothing else
"""
try:
response = model.generate_content([prompt, image])
return response.text
except Exception as e:
return f"Error processing image: {str(e)}"
def extract_text_from_pdf(self, pdf_file):
"""Extract text from an uploaded PDF."""
try:
pdf_reader = PyPDF2.PdfReader(pdf_file)
text = ""
for page in pdf_reader.pages:
text += page.extract_text()
prompt = """
extract products and their quantities from this text.
If quantities aren't specified, assume 1.
List each item starting with its quantity and then name of item and nothing else
"""
try:
response = model.generate_content([prompt,text])
return response.text
except Exception as e:
return f"Error processing text from pdf: {str(e)}"
except Exception as e:
return f"Error processing PDF: {str(e)}"
# --- Cart Management Functions ---
def add_to_cart(product):
if 'cart' not in st.session_state:
st.session_state.cart = []
# Check if product already exists in the cart; if so, update the quantity.
existing = next((item for item in st.session_state.cart if item['ProductName'] == product['ProductName']), None)
if existing:
existing['Quantity'] += product['Quantity']
else:
st.session_state.cart.append(product)
def remove_from_cart(product_name):
st.session_state.cart = [item for item in st.session_state.cart if item['ProductName'] != product_name]
def generate_receipt():
from fpdf import FPDF
pdf = FPDF()
pdf.add_page()
pdf.set_font("Arial", size=12)
pdf.cell(200, 10, txt="Bon Marche Receipt", ln=1, align='C')
pdf.cell(200, 10, txt=f"Date: {pd.Timestamp.now().strftime('%Y-%m-%d %H:%M')}", ln=1)
total = 0
for item in st.session_state.cart:
price = item['RetailPrice'] * item['Quantity']
pdf.cell(200, 10,
txt=f"{item['ProductName']} x{item['Quantity']} - ${price:.2f}",
ln=1)
total += price
pdf.cell(200, 10, txt=f"Total: ${total:.2f}", ln=1)
return pdf.output(dest='S').encode('latin1')
# --- Main App Function ---
def main():
st.set_page_config(page_title="Smart Shopping Assistant", layout="wide")
st.title("🛒 Smart Shopping Assistant")
st.write("Powered by Brave Retail Insights")
@st.cache_data
def load_product_data():
# Ensure the CSV file has columns including ProductName, RetailPrice, etc.
return pd.read_csv('supermarket4i.csv')
df = load_product_data()
assistant = SmartShoppingAssistant(df)
# Initialize session state variables if not already set.
if 'upload_text' not in st.session_state:
st.session_state.upload_text = ""
if 'last_results' not in st.session_state:
st.session_state.last_results = None
if 'cart' not in st.session_state:
st.session_state.cart = []
with st.sidebar:
st.header("Upload Shopping List")
# Allow multiple file uploads.
uploaded_files = st.file_uploader(
"Upload one or more images or PDFs of your shopping list",
type=['png', 'jpg', 'jpeg', 'pdf'],
accept_multiple_files=True
)
if uploaded_files:
extracted_texts = []
for uploaded_file in uploaded_files:
try:
if uploaded_file.type.startswith('image'):
with st.spinner("Extracting items from image..."):
image = Image.open(uploaded_file)
text = assistant.extract_text_from_image(image)
extracted_texts.append(text)
elif uploaded_file.type == 'application/pdf':
with st.spinner("Extracting items from PDF..."):
text = assistant.extract_text_from_pdf(uploaded_file)
extracted_texts.append(text)
except Exception as e:
st.error(f"Error processing file: {str(e)}")
# Combine texts from all uploads into a single string.
st.session_state.upload_text = "\n".join(extracted_texts)
# Use a container to hold the query text area so that it can be refreshed.
query_container = st.container()
with query_container:
# Use a different key ("query_input") for the text area.
query = st.text_area(
"Describe what you're looking for (include quantities if needed):",
value=st.session_state.get("upload_text", ""),
key="query_input",
height=100
)
col1, col2 = st.columns([2, 1])
with col1:
st.header("Search Products")
if st.button("Search", key="search_button"):
if query.strip():
with st.spinner("Searching..."):
results = assistant.process_natural_language_query(query)
st.session_state.last_results = results
# Clear the stored upload text so that the text area appears empty on next render.
st.session_state.upload_text = ""
# Use the new st.rerun() method to reinitialize widgets.
st.rerun()
# Display search results if available.
if st.session_state.last_results is not None:
if isinstance(st.session_state.last_results, pd.DataFrame):
st.subheader("Results")
for index, row in st.session_state.last_results.iterrows():
with st.container():
cols = st.columns([3, 1])
with cols[0]:
st.write(f"**{row['ProductName']}**")
st.write(f"Price: ${row['RetailPrice']:.2f} | Qty: {row['Quantity']}")
with cols[1]:
if st.button("Add", key=f"add_{index}"):
add_to_cart(row.to_dict())
st.success(f"Added {row['ProductName']} to cart")
# Only compute the total if the expected columns exist.
if 'RetailPrice' in st.session_state.last_results.columns and 'Quantity' in st.session_state.last_results.columns:
total_search = (st.session_state.last_results['RetailPrice'] * st.session_state.last_results['Quantity']).sum()
st.markdown(f"**Total for these items: ${total_search:.2f}**")
else:
st.write(st.session_state.last_results)
with col2:
st.header("Shopping Cart")
if st.session_state.cart:
total_cart = 0
for item in st.session_state.cart:
cols = st.columns([3, 1, 1])
with cols[0]:
st.write(f"{item['ProductName']} x{item['Quantity']}")
with cols[1]:
cost = item['RetailPrice'] * item['Quantity']
st.write(f"${cost:.2f}")
with cols[2]:
if st.button("❌", key=f"del_{item['ProductName']}"):
remove_from_cart(item['ProductName'])
st.rerun()
total_cart += item['RetailPrice'] * item['Quantity']
st.divider()
st.write(f"**Total: ${total_cart:.2f}**")
if st.button("Checkout"):
receipt = generate_receipt()
st.download_button(
label="Download Receipt",
data=receipt,
file_name="bon_marche_receipt.pdf",
mime="application/pdf"
)
else:
st.write("Your cart is empty")
if __name__ == "__main__":
main()
|