@@ -104,7 +104,6 @@ def main():
104
104
105
105
except Exception as exception :
106
106
logger .error (f"Error loading : { str (exception )} " )
107
- st .toast (f"Error loading : { str (exception )} " , icon = "❌" )
108
107
109
108
# Create API key input box on error.
110
109
api_key = st .text_input ("API Key" , value = "" , key = "api_key" , type = "password" )
@@ -197,7 +196,6 @@ def main():
197
196
logger .info ("Palm AI API key is initialized from App secrets." )
198
197
except Exception as exception :
199
198
logger .error (f"Error loading : { str (exception )} " )
200
- st .toast (f"Error loading : { str (exception )} " , icon = "❌" )
201
199
202
200
# Create API key input box on error.
203
201
api_key = st .text_input ("API Key" , value = "" , key = "api_key" , type = "password" )
@@ -230,7 +228,6 @@ def main():
230
228
logger .info ("Gemini AI API key is initialized from App secrets." )
231
229
except Exception as exception :
232
230
logger .error (f"Error loading : { str (exception )} " )
233
- st .toast (f"Error loading : { str (exception )} " , icon = "❌" )
234
231
235
232
# Create API key input box on error.
236
233
api_key = st .text_input ("API Key" , value = "" , key = "api_key" , type = "password" )
0 commit comments