Canstralian commited on
Commit
f31ac08
·
verified ·
1 Parent(s): 6c52b5c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +36 -1
app.py CHANGED
@@ -1,3 +1,38 @@
1
  import gradio as gr
 
2
 
3
- gr.load("models/microsoft/phi-4").launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
+ from transformers import AutoModelForCausalLM, AutoTokenizer
3
 
4
+ # Load model and tokenizer
5
+ MODEL_NAME = "microsoft/phi-4"
6
+ model = AutoModelForCausalLM.from_pretrained(MODEL_NAME)
7
+ tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME)
8
+
9
+ def chatbot_response(user_input, chat_history=[]):
10
+ """Generates a response from the chatbot model."""
11
+ # Tokenize input and add chat history
12
+ input_ids = tokenizer.encode(user_input, return_tensors="pt")
13
+
14
+ # Generate response
15
+ output = model.generate(input_ids, max_length=1000, pad_token_id=tokenizer.eos_token_id)
16
+ response = tokenizer.decode(output[:, input_ids.shape[-1]:][0], skip_special_tokens=True)
17
+
18
+ # Update chat history
19
+ chat_history.append((user_input, response))
20
+ return chat_history, "\n".join([f"You: {msg}\nBot: {res}" for msg, res in chat_history])
21
+
22
+ # Gradio Interface
23
+ with gr.Blocks() as chatbot_ui:
24
+ gr.Markdown("## Chatbot Interface")
25
+
26
+ chat_history = gr.State([]) # Stores the chat history
27
+
28
+ with gr.Row():
29
+ user_input = gr.Textbox(placeholder="Type your message here...", label="Your Input")
30
+ submit_button = gr.Button("Send")
31
+
32
+ with gr.Row():
33
+ chat_display = gr.Textbox(label="Chat History", lines=20, interactive=False)
34
+
35
+ # Event listener
36
+ submit_button.click(chatbot_response, inputs=[user_input, chat_history], outputs=[chat_history, chat_display])
37
+
38
+ chatbot_ui.launch()