Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
|
2 |
import os
|
3 |
import gradio as gr
|
4 |
# import openai
|
@@ -26,6 +25,7 @@ def chat(username, password, prompt):
|
|
26 |
return result
|
27 |
|
28 |
with gr.Blocks() as demo:
|
|
|
29 |
user_window = gr.Textbox(label = "User Name")
|
30 |
pwd_window = gr.Textbox(label = "Password")
|
31 |
clear_button = gr.Button(value="Clear")
|
|
|
|
|
1 |
import os
|
2 |
import gradio as gr
|
3 |
# import openai
|
|
|
25 |
return result
|
26 |
|
27 |
with gr.Blocks() as demo:
|
28 |
+
heading = gr.Label(value="GPT Chat", scale=2, color="Crimson" )
|
29 |
user_window = gr.Textbox(label = "User Name")
|
30 |
pwd_window = gr.Textbox(label = "Password")
|
31 |
clear_button = gr.Button(value="Clear")
|