Update app.py
Browse files
app.py
CHANGED
|
@@ -19,7 +19,7 @@ def to_markdown(text):
|
|
| 19 |
|
| 20 |
def get_gemini_response(question):
|
| 21 |
#response = model.generate_content(question)
|
| 22 |
-
|
| 23 |
response = chat.send_message(question,stream=True)
|
| 24 |
#to_markdown(response.text)
|
| 25 |
#print('Response:',response.text)
|
|
|
|
| 19 |
|
| 20 |
def get_gemini_response(question):
|
| 21 |
#response = model.generate_content(question)
|
| 22 |
+
question = question +str(' Answer shortly')
|
| 23 |
response = chat.send_message(question,stream=True)
|
| 24 |
#to_markdown(response.text)
|
| 25 |
#print('Response:',response.text)
|