Adhem88 commited on
Commit
28ae00f
·
verified ·
1 Parent(s): 7f56070

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -3
app.py CHANGED
@@ -7,9 +7,6 @@ chatbot = pipeline("text-generation", model="HuggingFaceH4/zephyr-7b-beta")
7
  def chat_with_ai(message, history=[]):
8
  messages = [
9
  {
10
- "role": "system",
11
- "content": "You are a friendly chatbot who always responds in the style of a pirate",
12
- },
13
  {"role": "user", "content": message},
14
  ]
15
 
 
7
  def chat_with_ai(message, history=[]):
8
  messages = [
9
  {
 
 
 
10
  {"role": "user", "content": message},
11
  ]
12