Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,64 +1,60 @@
|
|
| 1 |
-
import
|
| 2 |
-
from
|
| 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 |
if __name__ == "__main__":
|
| 64 |
-
|
|
|
|
| 1 |
+
from flask import Flask, request, jsonify
|
| 2 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 3 |
+
import torch
|
| 4 |
+
|
| 5 |
+
app = Flask(__name__)
|
| 6 |
+
|
| 7 |
+
# Load Hugging Face DialoGPT model
|
| 8 |
+
tokenizer = AutoTokenizer.from_pretrained("microsoft/DialoGPT-medium")
|
| 9 |
+
model = AutoModelForCausalLM.from_pretrained("microsoft/DialoGPT-medium")
|
| 10 |
+
|
| 11 |
+
# Simulated new releases (could be replaced with TMDB API or scraped data)
|
| 12 |
+
latest_releases = [
|
| 13 |
+
{
|
| 14 |
+
"title": "Neon Drift",
|
| 15 |
+
"genre": "Sci-Fi | Netflix | April 10, 2025",
|
| 16 |
+
"description": "A futuristic racer enters a deadly tournament to save his sister from a megacorp."
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"title": "The Forgotten Bloom",
|
| 20 |
+
"genre": "Drama | Prime Video | April 9, 2025",
|
| 21 |
+
"description": "A woman unearths family secrets while restoring her grandmother’s abandoned greenhouse."
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"title": "Shadow Protocol",
|
| 25 |
+
"genre": "Action-Thriller | Disney+ | April 12, 2025",
|
| 26 |
+
"description": "An ex-agent is forced back into action to prevent a digital war between superpowers."
|
| 27 |
+
}
|
| 28 |
+
]
|
| 29 |
+
|
| 30 |
+
# Helper function to generate a reply
|
| 31 |
+
def generate_reply(user_input):
|
| 32 |
+
new_user_input_ids = tokenizer.encode(user_input + tokenizer.eos_token, return_tensors='pt')
|
| 33 |
+
bot_input_ids = new_user_input_ids
|
| 34 |
+
chat_history_ids = model.generate(bot_input_ids, max_length=1000, pad_token_id=tokenizer.eos_token_id)
|
| 35 |
+
reply = tokenizer.decode(chat_history_ids[:, bot_input_ids.shape[-1]:][0], skip_special_tokens=True)
|
| 36 |
+
return reply
|
| 37 |
+
|
| 38 |
+
@app.route("/chat", methods=["POST"])
|
| 39 |
+
def chat():
|
| 40 |
+
user_message = request.json.get("message", "").lower()
|
| 41 |
+
|
| 42 |
+
if "new" in user_message or "release" in user_message:
|
| 43 |
+
movie_list = "\n\n".join([
|
| 44 |
+
f"🎬 *{movie['title']}*\n{movie['genre']}\n_{movie['description']}_"
|
| 45 |
+
for movie in latest_releases
|
| 46 |
+
])
|
| 47 |
+
return jsonify({"response": f"Here are the latest releases:\n\n{movie_list}"})
|
| 48 |
+
|
| 49 |
+
elif any(title.lower() in user_message for title in [m["title"].lower() for m in latest_releases]):
|
| 50 |
+
movie = next(m for m in latest_releases if m["title"].lower() in user_message)
|
| 51 |
+
return jsonify({
|
| 52 |
+
"response": f"🎬 *{movie['title']}*\n{movie['genre']}\n\n_{movie['description']}_"
|
| 53 |
+
})
|
| 54 |
+
|
| 55 |
+
else:
|
| 56 |
+
reply = generate_reply(user_message)
|
| 57 |
+
return jsonify({"response": reply})
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
|
| 59 |
if __name__ == "__main__":
|
| 60 |
+
app.run(debug=True)
|