Update app.py
Browse files
app.py
CHANGED
@@ -189,15 +189,6 @@ css = """
|
|
189 |
/* Fine-tune chatbox size */
|
190 |
"""
|
191 |
|
192 |
-
def initial_conversation():
|
193 |
-
return [
|
194 |
-
(None, "Welcome! I'm your AI assistant for web search. Here's how you can use me:\n\n"
|
195 |
-
"1. Ask me any question, and I'll search the web for information.\n"
|
196 |
-
"2. You can adjust the model, temperature, number of API calls, whether to use embeddings, and the system prompt for fine-tuned responses.\n"
|
197 |
-
"3. For any queries, feel free to reach out @[email protected] or discord - shreyas094\n\n"
|
198 |
-
"To get started, ask me a question!")
|
199 |
-
]
|
200 |
-
|
201 |
demo = gr.ChatInterface(
|
202 |
respond,
|
203 |
additional_inputs_accordion=gr.Accordion(label="⚙️ Parameters", open=True, render=False),
|
|
|
189 |
/* Fine-tune chatbox size */
|
190 |
"""
|
191 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
demo = gr.ChatInterface(
|
193 |
respond,
|
194 |
additional_inputs_accordion=gr.Accordion(label="⚙️ Parameters", open=True, render=False),
|