OnlineRAG / app.py
AkshayaKeerthi's picture
Update app.py
5a18b7c verified
raw
history blame
577 Bytes
# app.py
from flask import Flask, render_template, request, jsonify
from transformers import pipeline
app = Flask(__name__)
model = pipeline('conversational', model='microsoft/DialoGPT-small', revision='main')
@app.route('/')
def home():
return render_template('index.html')
@app.route('/predict', methods=['POST'])
def predict():
user_input = request.json.get('message')
result = model(user_input)
response_text = result[0]['generated_text']
return jsonify({'response': response_text})
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000)