Palbha Kulkarni (Nazwale) commited on
Commit
488ba19
·
unverified ·
1 Parent(s): cc846af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -93,6 +93,8 @@ with gr.Blocks() as app:
93
  msg = gr.Textbox(label="Your Message")
94
  state = gr.State([])
95
 
 
 
96
  # Main logic handler
97
  def respond(message, chat_history, model_choice, api_key):
98
  reply, chat_history = get_response(message, chat_history, model_choice, api_key)
 
93
  msg = gr.Textbox(label="Your Message")
94
  state = gr.State([])
95
 
96
+ gr.Markdown("🔒 **Note:** Your API key is used only for this session and is not stored or logged.")
97
+
98
  # Main logic handler
99
  def respond(message, chat_history, model_choice, api_key):
100
  reply, chat_history = get_response(message, chat_history, model_choice, api_key)