Prasanna1622 commited on
Commit
2218f3b
·
verified ·
1 Parent(s): 4b5fac0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +58 -62
app.py CHANGED
@@ -1,64 +1,60 @@
1
- import gradio as gr
2
- from huggingface_hub import InferenceClient
3
-
4
- """
5
- For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
- """
7
- client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
8
-
9
-
10
- def respond(
11
- message,
12
- history: list[tuple[str, str]],
13
- system_message,
14
- max_tokens,
15
- temperature,
16
- top_p,
17
- ):
18
- messages = [{"role": "system", "content": system_message}]
19
-
20
- for val in history:
21
- if val[0]:
22
- messages.append({"role": "user", "content": val[0]})
23
- if val[1]:
24
- messages.append({"role": "assistant", "content": val[1]})
25
-
26
- messages.append({"role": "user", "content": message})
27
-
28
- response = ""
29
-
30
- for message in client.chat_completion(
31
- messages,
32
- max_tokens=max_tokens,
33
- stream=True,
34
- temperature=temperature,
35
- top_p=top_p,
36
- ):
37
- token = message.choices[0].delta.content
38
-
39
- response += token
40
- yield response
41
-
42
-
43
- """
44
- For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
45
- """
46
- demo = gr.ChatInterface(
47
- respond,
48
- additional_inputs=[
49
- gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
50
- gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
51
- gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
52
- gr.Slider(
53
- minimum=0.1,
54
- maximum=1.0,
55
- value=0.95,
56
- step=0.05,
57
- label="Top-p (nucleus sampling)",
58
- ),
59
- ],
60
- )
61
-
62
 
63
  if __name__ == "__main__":
64
- demo.launch()
 
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)