ruisp commited on
Commit
d17f35c
·
1 Parent(s): e58318e

Added an example with more recent information and revised another.

Browse files
Files changed (1) hide show
  1. public_app.py +5 -5
public_app.py CHANGED
@@ -75,21 +75,21 @@ if __name__ == '__main__':
75
  'https://www.federalreserve.gov/monetarypolicy.htm) of the Federal'
76
  ' Open Market Committee meetings from March 1936 to June 2023. The answers are '
77
  'tuned to focus on economic, '
78
- 'cultural, financial, and political developments occurring at given times.'
79
  'The model actively looks for the presence of date elements present in the query '
80
  'and will raise an error if it cannot find any.'
81
  ' Click the examples below to see the tool in action.',
82
- article='**Disclaimer**: This app is for demonstration purposes only, and answers may take some'
 
83
  ' time to complete'
84
  'during periods of heavy usage. Please be patient :)',
85
  analytics_enabled=True,
86
  outputs=gr.Textbox(lines=1, label='Answer'),
87
  title='Query the FED-FOMC meeting minutes',
88
- examples=['Who were the voting members present in the meeting on March 2023?'],
89
  ['What was the economic outlook from the staff presented in the meeting '
90
  'of April 2009 with respect to labour market developments and industrial production?'],
91
- ['Who were the voting members present in the meeting on March 2010?'],
92
- ['How important was the pandemic of Covid-19 in the discussions during 2020?'],
93
  ['What was the impact of the oil crisis for the economic outlook during 1973?']],
94
  cache_examples=False
95
  )
 
75
  'https://www.federalreserve.gov/monetarypolicy.htm) of the Federal'
76
  ' Open Market Committee meetings from March 1936 to June 2023. The answers are '
77
  'tuned to focus on economic, '
78
+ 'cultural, financial, and political developments occurring at user-defined times.'
79
  'The model actively looks for the presence of date elements present in the query '
80
  'and will raise an error if it cannot find any.'
81
  ' Click the examples below to see the tool in action.',
82
+ article='**Disclaimer**: This app is for demonstration purposes only, and no assurance of uninterrupted'
83
+ ' functionality can be given at this time. Answers may take some'
84
  ' time to complete'
85
  'during periods of heavy usage. Please be patient :)',
86
  analytics_enabled=True,
87
  outputs=gr.Textbox(lines=1, label='Answer'),
88
  title='Query the FED-FOMC meeting minutes',
89
+ examples=[['Who were the voting members present in the meeting on March 2023?'],
90
  ['What was the economic outlook from the staff presented in the meeting '
91
  'of April 2009 with respect to labour market developments and industrial production?'],
92
+ ['How important was the pandemic of Covid-19 in the discussions during 2020 for the effects of monetary policy?'],
 
93
  ['What was the impact of the oil crisis for the economic outlook during 1973?']],
94
  cache_examples=False
95
  )