Update app.py
Browse files
app.py
CHANGED
@@ -17,10 +17,10 @@ def chat_with_gpt(user_input):
|
|
17 |
|
18 |
# Создаем интерфейс Gradio
|
19 |
with gr.Blocks() as demo:
|
20 |
-
gr.Markdown("# Chat with GPT-
|
21 |
|
22 |
user_input = gr.Textbox(label="You:", placeholder="Type your message here...")
|
23 |
-
output = gr.Textbox(label="GPT-
|
24 |
|
25 |
submit_button = gr.Button("Send")
|
26 |
|
|
|
17 |
|
18 |
# Создаем интерфейс Gradio
|
19 |
with gr.Blocks() as demo:
|
20 |
+
gr.Markdown("# Chat with GPT-4o")
|
21 |
|
22 |
user_input = gr.Textbox(label="You:", placeholder="Type your message here...")
|
23 |
+
output = gr.Textbox(label="GPT-4o:", interactive=False)
|
24 |
|
25 |
submit_button = gr.Button("Send")
|
26 |
|