ofermend commited on
Commit
794a40f
·
1 Parent(s): eb437df
Files changed (2) hide show
  1. agent.py +0 -1
  2. app.py +1 -0
agent.py CHANGED
@@ -187,7 +187,6 @@ def get_agent_config() -> OmegaConf:
187
  'corpus_id': str(os.environ['VECTARA_CORPUS_ID']),
188
  'api_key': str(os.environ['VECTARA_API_KEY']),
189
  'examples': os.environ.get('QUERY_EXAMPLES', None),
190
- 'title': "Legal Assistant",
191
  'demo_welcome': "Welcome to the Legal Assistant demo.",
192
  'demo_description': "This demo can help you prepare for a court case by providing you information about past court cases in Alaska.",
193
  })
 
187
  'corpus_id': str(os.environ['VECTARA_CORPUS_ID']),
188
  'api_key': str(os.environ['VECTARA_API_KEY']),
189
  'examples': os.environ.get('QUERY_EXAMPLES', None),
 
190
  'demo_welcome': "Welcome to the Legal Assistant demo.",
191
  'demo_description': "This demo can help you prepare for a court case by providing you information about past court cases in Alaska.",
192
  })
app.py CHANGED
@@ -128,4 +128,5 @@ def launch_bot():
128
  sys.stdout.flush()
129
 
130
  if __name__ == "__main__":
 
131
  launch_bot()
 
128
  sys.stdout.flush()
129
 
130
  if __name__ == "__main__":
131
+ st.set_page_config(page_title="Legal Assistant", layout="wide")
132
  launch_bot()