NLarchive commited on
Commit
dc158f6
·
verified ·
1 Parent(s): 2c17301

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -16,9 +16,11 @@ try:
16
  demo = gr.ChatInterface(
17
  fn=lambda message, history: str(agent.run(message)),
18
  type="messages",
19
- examples=["Prime factorization of 68"],
20
- title="Agent with MCP Tools",
21
- description="This is a simple agent that uses MCP tools to answer questions.",
 
 
22
  )
23
 
24
  demo.launch()
 
16
  demo = gr.ChatInterface(
17
  fn=lambda message, history: str(agent.run(message)),
18
  type="messages",
19
+ examples=["I had a terrible experience with this product. It stopped working after just two days, and the customer service was completely unhelpful. The instructions were confusing, and the build quality felt cheap and flimsy. Honestly, I regret wasting my money on this. Would not recommend to anyone.
20
+
21
+ "],
22
+ title="Agent Sentiment Analysis",
23
+ description="This is a simple agent use an MCP server to analyze sentiment",
24
  )
25
 
26
  demo.launch()