File size: 2,042 Bytes
a2b7f13
 
 
 
dbe0f65
a2b7f13
 
 
 
 
 
 
 
 
 
 
dbe0f65
a2b7f13
 
 
 
 
 
 
 
dbe0f65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a2b7f13
 
 
 
dbe0f65
 
a2b7f13
 
 
 
dbe0f65
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
48
49
50
51
52
53
54
55
56
57
import pickle
from sklearn.feature_extraction.text import CountVectorizer
import gradio as gr

# Load Naive Bayes model and vectorizer
with open("naive_bayes_model.pkl", "rb") as model_file:
    clf = pickle.load(model_file)

with open("vectorizer.pkl", "rb") as vectorizer_file:
    vectorizer = pickle.load(vectorizer_file)

# Define responses dictionary
responses = {
    "activate_my_card": "To activate your card, log in to the app and navigate to the 'Activate Card' section.",
    "age_limit": "The minimum age to use this service is 18 years.",
    "apple_pay_or_google_pay": "Yes, you can use both Apple Pay and Google Pay with your card.",
    # Add remaining responses here...
}

# Define chatbot response logic
def chatbot_response(user_input):
    vectorized_input = vectorizer.transform([user_input])
    predicted_label = clf.predict(vectorized_input)[0]
    return responses.get(predicted_label, "Sorry, I couldn't understand your question.")

# Define UI description with sample questions
description = """
### FinTech Chatbot

This chatbot can assist you with a variety of fintech-related queries. Below are some sample questions you can ask:

- How do I activate my card?
- What is the minimum age required to use this service?
- Can I use Apple Pay with my card?
- Which ATMs can I use my card with?
- How can I set up automatic top-up for my account?
- Why hasn't my balance updated after making a bank transfer?
- Why can’t I add a beneficiary to my account?
- Can I cancel a transfer I’ve made?
- What should I do if my card is about to expire?
- How long does it take for a new card to arrive?
- My card has been stolen. What should I do?
- Why hasn’t the recipient received my transfer?
"""

# Define the Gradio interface
interface = gr.Interface(
    fn=chatbot_response,
    inputs=gr.Textbox(lines=2, placeholder="Ask your fintech question here..."),
    outputs="text",
    title="FinTech Chatbot",
    description=description
)

if __name__ == "__main__":
    # Launch the Gradio app
    interface.launch()