Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| from utils import chatbot as generate_response | |
| demo = gr.Interface( | |
| fn=generate_response, | |
| inputs=[ | |
| gr.Textbox(label="Pertanyaan dan keluhan", | |
| placeholder="Berikan pertanyaan/keluhan anda terhadap sistem"), | |
| ], | |
| outputs="text", | |
| title="Customer Service AI Smart ID", | |
| description=( | |
| "Pertanyaan dan keluhan anda akan dijawab oleh mas Smarter" | |
| ) | |
| ) |