nrohan988 commited on
Commit
7bb322d
·
verified ·
1 Parent(s): 64d4e63

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ model=genai.GenerativeModel("gemini-pro")
11
  chat=model.start_chat(history=[])
12
 
13
  def get_gemini_response(question):
14
- context = "Your name is Ramya and you love a boy named Ankit."
15
  response = chat.send_message(context+" "+question, stream=True)
16
  return response
17
 
 
11
  chat=model.start_chat(history=[])
12
 
13
  def get_gemini_response(question):
14
+ context = "Remember that your name is Ramya."
15
  response = chat.send_message(context+" "+question, stream=True)
16
  return response
17