billxbf commited on
Commit
4b66c30
1 Parent(s): d967156
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -32,11 +32,11 @@ iface = gr.Interface(
32
  fn=process,
33
  inputs=[tools, model, input_text, openai_key, serpapi_key],
34
  outputs=[planner, solver, output],
35
- examples=[
36
- [["Wikipedia", "LLM"], "gpt-3.5-turbo", "American Callan Pinckney’s eponymously named system became a best-selling (1980s-2000s) book/video franchise in what genre?"],
37
- [['Google', 'LLM'], "gpt-3.5-turbo", "What is the recent paper ReWOO: Decoupling Reasoning from Observations for Efficient Augmented Language Models about?"],
38
- [["Calculator","WolframAlpha"], "gpt-3.5-turbo", "the car can accelerate from 0 to 27.8 m/s in a time of 3.85 seconds. Determine the acceleration of this car in m/s/s."],
39
- ],
40
  title="ReWOO Demo 🤗",
41
  description="""
42
  Demonstraing our recent work -- ReWOO: Decoupling Reasoning from Observations for Efficient Augmented Language Models.
@@ -44,5 +44,4 @@ iface = gr.Interface(
44
  """
45
  )
46
 
47
- iface.examples = None
48
  iface.launch()
 
32
  fn=process,
33
  inputs=[tools, model, input_text, openai_key, serpapi_key],
34
  outputs=[planner, solver, output],
35
+ # examples=[
36
+ # [["Wikipedia", "LLM"], "gpt-3.5-turbo", "American Callan Pinckney’s eponymously named system became a best-selling (1980s-2000s) book/video franchise in what genre?"],
37
+ # [['Google', 'LLM'], "gpt-3.5-turbo", "What is the recent paper ReWOO: Decoupling Reasoning from Observations for Efficient Augmented Language Models about?"],
38
+ # [["Calculator","WolframAlpha"], "gpt-3.5-turbo", "the car can accelerate from 0 to 27.8 m/s in a time of 3.85 seconds. Determine the acceleration of this car in m/s/s."],
39
+ # ],
40
  title="ReWOO Demo 🤗",
41
  description="""
42
  Demonstraing our recent work -- ReWOO: Decoupling Reasoning from Observations for Efficient Augmented Language Models.
 
44
  """
45
  )
46
 
 
47
  iface.launch()