Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -348,25 +348,26 @@ additional_inputs=[
|
|
348 |
|
349 |
]
|
350 |
|
351 |
-
examples=[
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
|
|
360 |
|
361 |
|
362 |
gr.ChatInterface(
|
363 |
-
fn=run,
|
364 |
-
title="""Fragmixt: Autonomous Agents With Agents...Surf With a Purpose!""",
|
365 |
-
examples=examples,
|
366 |
-
concurrency_limit=20,
|
367 |
-
with gr.Blocks() as ifacea:
|
368 |
-
|
369 |
-
ifacea.launch()
|
370 |
).launch()
|
371 |
with gr.Blocks() as iface:
|
372 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
|
|
348 |
|
349 |
]
|
350 |
|
351 |
+
examples = [
|
352 |
+
["What is the latest version of Python and what are the new features in this version?", None, None, None, None, None, ],
|
353 |
+
["Can you explain the difference between a class and an object in object-oriented programming?", None, None, None, None, None, ],
|
354 |
+
["What are the benefits of using a version control system like Git, and how can I get started with it?", None, None, None, None, None, ],
|
355 |
+
["I'm trying to build a web application using a microservices architecture. Can you suggest some tools and frameworks that would be suitable for this project?", None, None, None, None, None, ],
|
356 |
+
["Can you explain the concept of functional programming and how it can be used in modern programming languages?", None, None, None, None, None, ],
|
357 |
+
["What are the best practices for writing clean and maintainable code, and how can I ensure that my code adheres to these standards?", None, None, None, None, None, ],
|
358 |
+
["I'm working on a machine learning project and I need to preprocess my data. Can you suggest some libraries and tools that would be useful for this task?", None, None, None, None, None, ],
|
359 |
+
["What are the key differences between SQL and NoSQL databases, and when should I use each type of database?", None, None, None, None, None, ],
|
360 |
+
]
|
361 |
|
362 |
|
363 |
gr.ChatInterface(
|
364 |
+
fn=run,
|
365 |
+
title="""Fragmixt: Autonomous Agents With Agents...Surf With a Purpose!""",
|
366 |
+
examples=examples,
|
367 |
+
concurrency_limit=20,
|
368 |
+
with gr.Blocks() as ifacea:
|
369 |
+
gr.HTML("""TEST""")
|
370 |
+
ifacea.launch()
|
371 |
).launch()
|
372 |
with gr.Blocks() as iface:
|
373 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|