File size: 1,065 Bytes
c358276
 
 
 
 
 
 
 
 
 
 
 
6748588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
39
40
41
42
43
44
45
46
47
---
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
```