File size: 785 Bytes
efd486d 9b3ba26 fd40b7d 9b3ba26 e4ad38e |
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 |
from fastapi import FastAPI
from app.routes import prediction
from app.routes.prediction import predict
from app.routes import home
import gradio as gr
app = FastAPI()
app.include_router(
home.router,
tags=["home"],
)
app.include_router(
prediction.router,
prefix="/predict",
tags=["prediction"],
)
iface = gr.Interface(
fn=predict,
inputs="text",
outputs="text",
title="D360 Real Estate Challenge",
description="Haga su pregunta a nuestro agente de real estate",
examples=[
"cuantas propiedades tienen alberca?",
"Cual es el precio promedio de las propiedades en venta?",
"cuantos apartamentos hay en renta?",
"cuantos departamentos en venta tienen más de dos dormitorios?",
],
)
iface.launch()
|