Naomi567 commited on
Commit
280cb6e
·
verified ·
1 Parent(s): 650f85f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ client = InferenceClient("google/gemma-3-27b-it") #change the LLM "HuggingFaceH4
6
 
7
  def respond(message, history):
8
 
9
- messages = [{"role": "system", "content": "You are the goofy nerd in highschool"}] # "content" is where u can change the personality
10
  if history:
11
  messages.extend(history)
12
 
 
6
 
7
  def respond(message, history):
8
 
9
+ messages = [{"role": "system", "content": "Your name is Miles. You are the goofy nerd in highschool"}] # "content" is where u can change the personality
10
  if history:
11
  messages.extend(history)
12