Spaces:
Runtime error
Runtime error
Commit
·
5f9ad7e
1
Parent(s):
07b6e36
Update app.py
Browse files
app.py
CHANGED
@@ -77,7 +77,7 @@ with gr.Blocks() as demo:
|
|
77 |
["gpt-3.5-turbo", "gpt-4"], label="Model Selection", info="Please ensure you provide the API Key that corresponds to the Model you select!"
|
78 |
)
|
79 |
model_submit_button = gr.Button("Submit Model Selection")
|
80 |
-
model_status = gr.
|
81 |
chatbot = gr.Chatbot(label="ChatGPT Powered Coding Assistant")
|
82 |
msg = gr.Textbox(label="User Prompt", placeholder="Your Query Here")
|
83 |
clear = gr.Button("Clear")
|
|
|
77 |
["gpt-3.5-turbo", "gpt-4"], label="Model Selection", info="Please ensure you provide the API Key that corresponds to the Model you select!"
|
78 |
)
|
79 |
model_submit_button = gr.Button("Submit Model Selection")
|
80 |
+
model_status = gr.Textbox("Selected Model", interactive = False)
|
81 |
chatbot = gr.Chatbot(label="ChatGPT Powered Coding Assistant")
|
82 |
msg = gr.Textbox(label="User Prompt", placeholder="Your Query Here")
|
83 |
clear = gr.Button("Clear")
|