Spaces:
Running
Running
update
Browse files
app.py
CHANGED
@@ -76,8 +76,6 @@ def chat(message, history):
|
|
76 |
|
77 |
# Create Gradio interface
|
78 |
with gr.Blocks(title="DeepSearch - AI Search Assistant") as demo:
|
79 |
-
gr.Markdown("# DeepSearch")
|
80 |
-
gr.Markdown("Ask anything and get AI-powered responses using state-of-the-art language models.")
|
81 |
|
82 |
chatbot = gr.ChatInterface(
|
83 |
fn=chat,
|
@@ -86,8 +84,8 @@ with gr.Blocks(title="DeepSearch - AI Search Assistant") as demo:
|
|
86 |
"Explain quantum computing in simple terms",
|
87 |
"Write a short poem about artificial intelligence"
|
88 |
],
|
89 |
-
title="DeepSearch
|
90 |
-
description="Ask me anything
|
91 |
theme=gr.themes.Soft()
|
92 |
)
|
93 |
|
|
|
76 |
|
77 |
# Create Gradio interface
|
78 |
with gr.Blocks(title="DeepSearch - AI Search Assistant") as demo:
|
|
|
|
|
79 |
|
80 |
chatbot = gr.ChatInterface(
|
81 |
fn=chat,
|
|
|
84 |
"Explain quantum computing in simple terms",
|
85 |
"Write a short poem about artificial intelligence"
|
86 |
],
|
87 |
+
title="DeepSearch",
|
88 |
+
description="Ask me anything, powered by Hugging Face Inference Providers",
|
89 |
theme=gr.themes.Soft()
|
90 |
)
|
91 |
|