Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -232,8 +232,8 @@ chatbot = gr.ChatInterface(
|
|
| 232 |
respond,
|
| 233 |
type="messages",
|
| 234 |
additional_inputs=[
|
| 235 |
-
gr.Textbox(value="You are a helpful AI assistant with access to web search and knowledge datasets.", label="System message"),
|
| 236 |
-
gr.Slider(1, 2048, value=
|
| 237 |
gr.Slider(0.1, 4.0, value=0.7, step=0.1, label="Temperature"),
|
| 238 |
gr.Slider(0.1, 1.0, value=0.95, step=0.05, label="Top-p"),
|
| 239 |
gr.Checkbox(value=True, label="π Web Search"),
|
|
@@ -242,7 +242,7 @@ chatbot = gr.ChatInterface(
|
|
| 242 |
],
|
| 243 |
)
|
| 244 |
|
| 245 |
-
with gr.Blocks(title="
|
| 246 |
gr.Markdown("# π€ AI Chatbot with Streaming FineWeb + Memory + Web Search")
|
| 247 |
|
| 248 |
with gr.Sidebar():
|
|
|
|
| 232 |
respond,
|
| 233 |
type="messages",
|
| 234 |
additional_inputs=[
|
| 235 |
+
gr.Textbox(value="You are KiyAI, a helpful AI assistant with access to web search and knowledge datasets.", label="System message"),
|
| 236 |
+
gr.Slider(1, 2048, value=1028, step=1, label="Max tokens"),
|
| 237 |
gr.Slider(0.1, 4.0, value=0.7, step=0.1, label="Temperature"),
|
| 238 |
gr.Slider(0.1, 1.0, value=0.95, step=0.05, label="Top-p"),
|
| 239 |
gr.Checkbox(value=True, label="π Web Search"),
|
|
|
|
| 242 |
],
|
| 243 |
)
|
| 244 |
|
| 245 |
+
with gr.Blocks(title="KiyAI - Experimental Version") as demo:
|
| 246 |
gr.Markdown("# π€ AI Chatbot with Streaming FineWeb + Memory + Web Search")
|
| 247 |
|
| 248 |
with gr.Sidebar():
|