GirishKiran commited on
Commit
6c9c1bb
1 Parent(s): 52e7e38

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -293,7 +293,10 @@ def ask_me(self, p, q, r , ll_index_name=None, ll_sign_in_member=None):
293
  if (ll_index_name is None):
294
  ll_engine = self._llama_query_engine
295
 
296
- ll_sign_in_member = q
 
 
 
297
 
298
  px = f'My name is {ll_sign_in_member}, and I want answer to the following: {p}.'
299
  print("##### " + px)
 
293
  if (ll_index_name is None):
294
  ll_engine = self._llama_query_engine
295
 
296
+ if(q is None):
297
+ ll_sign_in_member = 'Duc'
298
+ else:
299
+ ll_sign_in_member = q
300
 
301
  px = f'My name is {ll_sign_in_member}, and I want answer to the following: {p}.'
302
  print("##### " + px)