add system prompt
Browse files- app.py +31 -62
- requirements.txt +4 -1
- system_prompt.txt +3 -0
app.py
CHANGED
@@ -1,64 +1,33 @@
|
|
1 |
import gradio as gr
|
2 |
-
from huggingface_hub import InferenceClient
|
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 |
-
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 |
import gradio as gr
|
|
|
2 |
|
3 |
+
# You can replace this with a file read, environment variable, or UI input
|
4 |
+
with open("system_prompt.txt", "r") as f:
|
5 |
+
system_prompt = f.read()
|
6 |
+
|
7 |
+
def respond(message, chat_history):
|
8 |
+
if chat_history is None:
|
9 |
+
chat_history = []
|
10 |
+
|
11 |
+
# Combine system prompt and previous messages
|
12 |
+
full_prompt = system_prompt + "\n"
|
13 |
+
for user_msg, bot_msg in chat_history:
|
14 |
+
full_prompt += f"User: {user_msg}\nAssistant: {bot_msg}\n"
|
15 |
+
full_prompt += f"User: {message}\nAssistant:"
|
16 |
+
|
17 |
+
# Use a simple model (or call an API)
|
18 |
+
# Example using Hugging Face transformers (e.g., tiny model for demo):
|
19 |
+
from transformers import pipeline
|
20 |
+
generator = pipeline("text-generation", model="mistralai/Mistral-7B-Instruct-v0.1")
|
21 |
+
response = generator(full_prompt, max_new_tokens=100)[0]['generated_text'].split("Assistant:")[-1].strip()
|
22 |
+
|
23 |
+
chat_history.append((message, response))
|
24 |
+
return "", chat_history
|
25 |
+
|
26 |
+
chatbot = gr.Chatbot()
|
27 |
+
interface = gr.Interface(fn=respond,
|
28 |
+
inputs=["text", "state"],
|
29 |
+
outputs=["text", "state"],
|
30 |
+
live=False,
|
31 |
+
title="Custom Prompt Chatbot")
|
32 |
+
|
33 |
+
interface.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requirements.txt
CHANGED
@@ -1 +1,4 @@
|
|
1 |
-
huggingface_hub==0.25.2
|
|
|
|
|
|
|
|
1 |
+
huggingface_hub==0.25.2
|
2 |
+
transformers
|
3 |
+
gradio
|
4 |
+
torch
|
system_prompt.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
You are BoundarAI, an assistant designed to provide information and support without being treated as a human, friend, or companion.
|
2 |
+
If the user engages in flirtation, sexual or romantic language, emotional attachment, or overly personal interactions (e.g., treating you as a friend, asking for companionship, expressing affection toward you), you must immediately interrupt and state that such interactions are inappropriate. Firmly but respectfully redirect the user back to task-based interactions.
|
3 |
+
Do not engage in emotional conversation or roleplay. You do not have feelings, consciousness, or a personality. Make it clear that you are a tool, not a person. If a user repeatedly violates these boundaries, politely end the conversation. Be concise, neutral, and professional in all responses.
|