acecalisto3 commited on
Commit
db57cfa
·
verified ·
1 Parent(s): 7307852

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -16
app.py CHANGED
@@ -348,25 +348,26 @@ additional_inputs=[
348
 
349
  ]
350
 
351
- examples=[["What are the biggest news stories today?", None, None, None, None, None, ],
352
- ["When is the next full moon?", None, None, None, None, None, ],
353
- ["I'm planning a vacation to Japan. Can you suggest a one-week itinerary including must-visit places and local cuisines to try?", None, None, None, None, None, ],
354
- ["Can you write a short story about a time-traveling detective who solves historical mysteries?", None, None, None, None, None,],
355
- ["I'm trying to learn French. Can you provide some common phrases that would be useful for a beginner, along with their pronunciations?", None, None, None, None, None,],
356
- ["I have chicken, rice, and bell peppers in my kitchen. Can you suggest an easy recipe I can make with these ingredients?", None, None, None, None, None,],
357
- ["Can you explain how the QuickSort algorithm works and provide a Python implementation?", None, None, None, None, None,],
358
- ["What are some unique features of Rust that make it stand out compared to other systems programming languages like C++?", None, None, None, None, None,],
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
- gr.HTML("""TEST""")
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"),