Spaces:
Sleeping
Sleeping
title: Openai Business Chat | |
emoji: 💻 | |
colorFrom: indigo | |
colorTo: red | |
sdk: streamlit | |
sdk_version: 1.33.0 | |
app_file: app.py | |
pinned: false | |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference | |
# AI Chatbot Prototype on Business Insights | |
Having a sample database with a structure | |
``` | |
- application | |
- app_number | |
- amount | |
- amount_paid | |
- state. (APPROVED, REJECTED, PENDING_PAYMENT, PAID) | |
- office_code [FK] | |
- service_code [FK] | |
- date_created | |
- date_paid | |
- date_processed | |
- office | |
- office_name | |
- office_location_code [FK] | |
- location | |
- location_name | |
- location_code | |
- service | |
- service_code | |
- service_name | |
``` | |
The chatbot will provide answers from that database | |
``` | |
a- The number of applications rejected in a location during the current month | |
b- The trend of applications in particular states, for a location | |
c- Any question you think relevant from this DB | |
``` |