AiAgent / app.py
tarek29910's picture
Upload 22 files
b303183 verified
raw
history blame contribute delete
633 Bytes
import gradio as gr
from agent.agent import RealEstateAgent
agent = RealEstateAgent()
def chat(user_input):
response = agent.respond(user_input)
return response
iface = gr.Interface(
fn=chat,
inputs=gr.Textbox(lines=2, placeholder="اكتب سؤالك عن العقارات هنا..."),
outputs="text",
title="مساعد العقارات الذكي",
description="اسأل مساعد الذكاء الاصطناعي عن العقارات المتاحة، العروض، والأسعار بلهجتك العربية المفضلة.",
theme="default"
)
if __name__ == "__main__":
iface.launch()