ofermend commited on
Commit
0aef952
·
1 Parent(s): 6323a30
Files changed (2) hide show
  1. agent.py +3 -3
  2. st_app.py +9 -1
agent.py CHANGED
@@ -95,8 +95,8 @@ def get_agent_config() -> OmegaConf:
95
  'corpus_id': str(os.environ['VECTARA_CORPUS_ID']),
96
  'api_key': str(os.environ['VECTARA_API_KEY']),
97
  'examples': os.environ.get('QUERY_EXAMPLES', None),
98
- 'demo_name': "HMC Demo",
99
- 'demo_welcome': "HMC Assistant.",
100
- 'demo_description': "AI assistant For Harvard Management Company.",
101
  })
102
  return cfg
 
95
  'corpus_id': str(os.environ['VECTARA_CORPUS_ID']),
96
  'api_key': str(os.environ['VECTARA_API_KEY']),
97
  'examples': os.environ.get('QUERY_EXAMPLES', None),
98
+ 'demo_name': "Harvard Management Company",
99
+ 'demo_welcome': "Harvard Management Company.",
100
+ 'demo_description': "AI Assistant.",
101
  })
102
  return cfg
st_app.py CHANGED
@@ -79,8 +79,16 @@ async def launch_bot():
79
  image = Image.open('Vectara-logo.png')
80
  st.image(image, width=175)
81
  st.markdown(f"## {cfg['demo_welcome']}")
82
- st.markdown(f"{cfg['demo_description']}")
 
 
 
 
 
 
 
83
 
 
84
  st.markdown("\n\n")
85
  bc1, bc2 = st.columns([1, 1])
86
  with bc1:
 
79
  image = Image.open('Vectara-logo.png')
80
  st.image(image, width=175)
81
  st.markdown(f"## {cfg['demo_welcome']}")
82
+ st.markdown(f"### {cfg['demo_description']}")
83
+ st.divider()
84
+ st.markdown(f"""
85
+ **Companies included**:
86
+ - Meta
87
+ - Google / Alphabet
88
+ - Booking Holdings
89
+ - Nvidia""")
90
 
91
+
92
  st.markdown("\n\n")
93
  bc1, bc2 = st.columns([1, 1])
94
  with bc1: