umangchaudhry commited on
Commit
214c0e2
·
1 Parent(s): ddda9ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -22,7 +22,6 @@ def get_api_key():
22
 
23
  def set_model(model):
24
  os.environ["model_type"] = model
25
- return f"Your API Key has been set to: {model}"
26
 
27
  def get_model():
28
  model = os.getenv("model_type")
@@ -72,17 +71,17 @@ with gr.Blocks() as demo:
72
 
73
  with gr.Tab("Coding Assistant"):
74
  api_check_button = gr.Button("Get API Key")
 
75
  model_selection = gr.Dropdown(
76
  ["gpt-3.5-turbo", "gpt-4"], label="Model Selection", info="Please ensure you provide the API Key that corresponds to the Model you select!"
77
  ),
78
  model_submit_button = gr.Button("Submit Model Selection")
79
- api_print = gr.Textbox(label = "OpenAI API Key - Please ensure the API Key is set correctly")
80
  chatbot = gr.Chatbot(label="ChatGPT Powered Coding Assistant")
81
  msg = gr.Textbox(label="User Prompt", placeholder="Your Query Here")
82
  clear = gr.Button("Clear")
83
 
84
- api_submit_button.click(set_api_key, inputs=model_selection)
85
- model_submit_button.click(set_model, inputs=api_input, outputs=api_key_status)
86
  api_reset_button.click(reset_api_key, outputs=api_key_status)
87
  api_check_button.click(get_api_key, outputs=api_print)
88
  msg.submit(respond, inputs = [msg, chatbot], outputs = [msg, chatbot])
 
22
 
23
  def set_model(model):
24
  os.environ["model_type"] = model
 
25
 
26
  def get_model():
27
  model = os.getenv("model_type")
 
71
 
72
  with gr.Tab("Coding Assistant"):
73
  api_check_button = gr.Button("Get API Key")
74
+ api_print = gr.Textbox(label = "OpenAI API Key - Please ensure the API Key is set correctly")
75
  model_selection = gr.Dropdown(
76
  ["gpt-3.5-turbo", "gpt-4"], label="Model Selection", info="Please ensure you provide the API Key that corresponds to the Model you select!"
77
  ),
78
  model_submit_button = gr.Button("Submit Model Selection")
 
79
  chatbot = gr.Chatbot(label="ChatGPT Powered Coding Assistant")
80
  msg = gr.Textbox(label="User Prompt", placeholder="Your Query Here")
81
  clear = gr.Button("Clear")
82
 
83
+ api_submit_button.click(set_api_key, inputs=api_input)
84
+ model_submit_button.click(set_model, inputs=model_selection)
85
  api_reset_button.click(reset_api_key, outputs=api_key_status)
86
  api_check_button.click(get_api_key, outputs=api_print)
87
  msg.submit(respond, inputs = [msg, chatbot], outputs = [msg, chatbot])