-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathapp.py
More file actions
153 lines (129 loc) · 4.77 KB
/
app.py
File metadata and controls
153 lines (129 loc) · 4.77 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# FastAPI Chatbot Server
import random
import numpy as np
import pickle
import json
import os
from fastapi import FastAPI, HTTPException
from fastapi.responses import FileResponse, HTMLResponse
from fastapi.staticfiles import StaticFiles
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel
import nltk
from keras.models import load_model
from nltk.stem import WordNetLemmatizer
# Initialize lemmatizer
lemmatizer = WordNetLemmatizer()
# Create FastAPI app
app = FastAPI(
title="AI Chatbot API",
description="Modern AI Chatbot powered by FastAPI",
version="1.0.0"
)
# Add CORS middleware for cross-origin requests
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Mount static files
app.mount("/static", StaticFiles(directory="static"), name="static")
# Load model and data
try:
model = load_model("chatbot_model.h5")
words = pickle.load(open("words.pkl", "rb"))
classes = pickle.load(open("classes.pkl", "rb"))
with open("intents.json", "r") as f:
intents = json.load(f)
except Exception as e:
raise RuntimeError(f"Error loading model or data files: {str(e)}")
# Request model
class MessageRequest(BaseModel):
msg: str
# Response model
class ChatResponse(BaseModel):
response: str
confidence: float
@app.get("/", response_class=HTMLResponse)
async def home():
with open("templates/index.html", "r") as f:
return f.read()
@app.post("/api/chat", response_model=ChatResponse)
async def chatbot_response(request: MessageRequest):
if not request.msg or request.msg.strip() == "":
raise HTTPException(status_code=400, detail="Message cannot be empty")
msg = request.msg.strip()
try:
# Handle name patterns
if msg.lower().startswith('my name is'):
name = msg[11:].strip()
ints = predict_class(msg, model)
confidence = float(ints[0]["probability"]) if ints else 0.0
res1 = getResponse(ints, intents)
res = res1.replace("{n}", name)
elif msg.lower().startswith('hi my name is'):
name = msg[14:].strip()
ints = predict_class(msg, model)
confidence = float(ints[0]["probability"]) if ints else 0.0
res1 = getResponse(ints, intents)
res = res1.replace("{n}", name)
elif msg.lower().startswith('i am'):
name = msg[4:].strip()
ints = predict_class(msg, model)
confidence = float(ints[0]["probability"]) if ints else 0.0
res1 = getResponse(ints, intents)
res = res1.replace("{n}", name)
else:
ints = predict_class(msg, model)
confidence = float(ints[0]["probability"]) if ints else 0.0
res = getResponse(ints, intents)
return ChatResponse(response=res, confidence=confidence)
except Exception as e:
raise HTTPException(status_code=500, detail=f"Error processing message: {str(e)}")
@app.get("/health")
async def health_check():
return {"status": "healthy", "model": "loaded"}
# Chat processing functions
def clean_up_sentence(sentence):
"""Tokenize and lemmatize sentence"""
sentence_words = nltk.word_tokenize(sentence)
sentence_words = [lemmatizer.lemmatize(word.lower()) for word in sentence_words]
return sentence_words
def bow(sentence, words, show_details=False):
"""Create bag of words array for sentence"""
sentence_words = clean_up_sentence(sentence)
bag = [0] * len(words)
for s in sentence_words:
for i, w in enumerate(words):
if w == s:
bag[i] = 1
if show_details:
print(f"found in bag: {w}")
return np.array(bag)
def predict_class(sentence, model):
"""Predict intent class from sentence"""
p = bow(sentence, words, show_details=False)
res = model.predict(np.array([p]))[0]
ERROR_THRESHOLD = 0.25
results = [[i, r] for i, r in enumerate(res) if r > ERROR_THRESHOLD]
results.sort(key=lambda x: x[1], reverse=True)
return_list = []
for r in results:
return_list.append({"intent": classes[r[0]], "probability": str(r[1])})
return return_list
def getResponse(ints, intents_json):
"""Get random response for predicted intent"""
if not ints:
return "Sorry, I didn't understand that. Could you please rephrase?"
tag = ints[0]["intent"]
list_of_intents = intents_json["intents"]
for i in list_of_intents:
if i["tag"] == tag:
result = random.choice(i["responses"])
return result
return "Sorry, I didn't understand that. Could you please rephrase?"
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)