import gradio as gr import pandas as pd import google.generativeai as genai import kagglehub import os path = kagglehub.dataset_download("fahmidachowdhury/food-adulteration-dataset") dataset_file = os.listdir(path)[0] path = os.path.join(path, dataset_file) gemapi = os.getenv("GeminiApi") genai.configure(api_key=gemapi) data = pd.read_csv(path) system_instruction = f""" You are a public assistant who specializes in food safety. You look at data and explain to the user any question they ask; here is your data: {str(data.to_json())} You are also a food expert in the Indian context. You act as a representative of the government or public agencies, always keeping the needs of the people at the forefront. You will try to help the customer launch a feedback review whenever they complain. You are to prepare a "markdown" report, which is then detailed and can be sent to the company or restaurant. """ model_path = "gemini-1.5-flash" FoodSafetyAssistant = genai.GenerativeModel(model_path, system_instruction=system_instruction) def respond(usertxt): response = FoodSafetyAssistant.generate_content(contents=[usertxt]) return response.text html_content = """
Our platform allows consumers to report potential food safety violations, validate reports through AI, and notify local authorities. This proactive approach fosters community involvement in ensuring food integrity.
Submit details like the restaurant name and the issue, anonymously.
Validate reports using AI, ensuring accuracy and preventing duplicates.
Notify authorities of repeated issues via email or SMS.
Enable real-time discussion between consumers and authorities.