Spaces:
Runtime error
Runtime error
Commit
·
eef5713
1
Parent(s):
9dc052f
Update app.py
Browse files
app.py
CHANGED
@@ -74,7 +74,7 @@ with gr.Blocks() as demo:
|
|
74 |
api_print = gr.Textbox(label = "OpenAI API Key - Please ensure the API Key is set correctly")
|
75 |
model_selection = gr.CheckboxGroup(
|
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")
|
@@ -83,7 +83,7 @@ with gr.Blocks() as demo:
|
|
83 |
api_submit_button.click(set_api_key, inputs=api_input)
|
84 |
api_reset_button.click(reset_api_key, outputs=api_key_status)
|
85 |
api_check_button.click(get_api_key, outputs=api_print)
|
86 |
-
|
87 |
msg.submit(respond, inputs = [msg, chatbot], outputs = [msg, chatbot])
|
88 |
clear.click(lambda: None, None, chatbot, queue=False)
|
89 |
|
|
|
74 |
api_print = gr.Textbox(label = "OpenAI API Key - Please ensure the API Key is set correctly")
|
75 |
model_selection = gr.CheckboxGroup(
|
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")
|
|
|
83 |
api_submit_button.click(set_api_key, inputs=api_input)
|
84 |
api_reset_button.click(reset_api_key, outputs=api_key_status)
|
85 |
api_check_button.click(get_api_key, outputs=api_print)
|
86 |
+
model_submit_button.click(set_model, inputs=model_selection)
|
87 |
msg.submit(respond, inputs = [msg, chatbot], outputs = [msg, chatbot])
|
88 |
clear.click(lambda: None, None, chatbot, queue=False)
|
89 |
|