Spaces:
Running
Running
kendrickfff
commited on
Commit
•
16f0ae2
1
Parent(s):
da9fe57
Update app.py
Browse files
app.py
CHANGED
@@ -30,11 +30,11 @@ def chat_with_gemini(user_input, chat_history):
|
|
30 |
|
31 |
# Create a Gradio interface
|
32 |
with gr.Blocks() as iface:
|
33 |
-
gr.Markdown("# Chatbot
|
34 |
gr.Markdown("Ask me anything!")
|
35 |
|
36 |
chatbot = gr.Chatbot() # Initialize the chatbot
|
37 |
-
msg = gr.Textbox(label="Type your message here...", placeholder="Enter your message...") # Text input for user messages
|
38 |
state = gr.State([]) # Store chat history
|
39 |
|
40 |
# Set up the interaction for when the user submits a message
|
|
|
30 |
|
31 |
# Create a Gradio interface
|
32 |
with gr.Blocks() as iface:
|
33 |
+
gr.Markdown("# Ken Chatbot")
|
34 |
gr.Markdown("Ask me anything!")
|
35 |
|
36 |
chatbot = gr.Chatbot() # Initialize the chatbot
|
37 |
+
msg = gr.Textbox(label="Type your message here...", placeholder="Enter your message and press enter to send your message...") # Text input for user messages
|
38 |
state = gr.State([]) # Store chat history
|
39 |
|
40 |
# Set up the interaction for when the user submits a message
|