Update app.py
Browse files
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 = "
|
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 |
|