We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ace589 commit 903bb46Copy full SHA for 903bb46
Techiee.py
@@ -122,7 +122,7 @@ async def process_message(message):
122
async def generate_response_with_text(message_text):
123
try:
124
prompt_parts = [message_text]
125
- response = gemini_model.generate_content(prompt_parts, tools='google_search_retrieval')
+ response = gemini_model.generate_content(prompt_parts)
126
if response._error:
127
return "❌" + str(response._error)
128
return response.text
0 commit comments