yasserrmd commited on
Commit
0aca9b7
·
verified ·
1 Parent(s): c325021

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +70 -0
app.py ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
3
+
4
+ generator = pipeline(
5
+ "text-generation",
6
+ model="yasserrmd/SmolLM2-156M-synthetic-dlp"
7
+ )
8
+
9
+ def chat_assistant(chat_history, user_input):
10
+ """Generate a response based on user input and chat history."""
11
+
12
+
13
+ # Generate response
14
+ prompt = "\n".join([f"{entry['role']}: {entry['content']}" for entry in chat_history])
15
+ prompt += f"\nuser: {user_input}\nassistant: "
16
+
17
+ response = generator(
18
+ [{"role": "system", "content": "You are a Data Loss Prevention (DLP) assistant designed to help users with questions and tasks related to data security, compliance, and policy enforcement. Respond concisely and professionally, offering practical guidance while ensuring clarity. If additional context or follow-up questions are required, ask the user to refine their input or provide specific examples."},
19
+ {"role": "user", "content": user_input}], max_new_tokens=512, return_full_text=False
20
+ )[0]["generated_text"]
21
+
22
+ # Append to chat history
23
+ chat_history.append(("user", user_input))
24
+ chat_history.append(("assistant", response))
25
+
26
+ # Return updated chat history
27
+ return chat_history, chat_history
28
+
29
+ # Initial chat history
30
+ chat_history = []
31
+
32
+ def reset_chat():
33
+ global chat_history
34
+ chat_history = []
35
+ return []
36
+
37
+ # Gradio Interface
38
+ with gr.Blocks() as dlp_chat_app:
39
+ gr.Markdown("""### DLP Chat Assistant\nAsk your questions about Data Loss Prevention (DLP).
40
+ """)
41
+
42
+ with gr.Row():
43
+ chat_box = gr.Chatbot(
44
+ label="Chat History",
45
+ placeholder="Assistant responses will appear here...",
46
+ )
47
+
48
+ user_input = gr.Textbox(
49
+ label="Your Input",
50
+ placeholder="Type your message here...",
51
+ lines=1
52
+ )
53
+
54
+ send_button = gr.Button("Send")
55
+ reset_button = gr.Button("Reset Chat")
56
+
57
+ send_button.click(
58
+ fn=chat_assistant,
59
+ inputs=[gr.State(chat_history), user_input],
60
+ outputs=[chat_box, gr.State(chat_history)]
61
+ )
62
+
63
+ reset_button.click(
64
+ fn=reset_chat,
65
+ inputs=[],
66
+ outputs=chat_box
67
+ )
68
+
69
+ # Launch the app
70
+ dlp_chat_app.launch(debug=True)