azunre commited on
Commit
16378c8
·
verified ·
1 Parent(s): 509dc90

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,9 +9,9 @@ MY_HF_TOKEN_KEY = os.environ["MY_HF_TOKEN_KEY"]
9
  client = Client("Ghana-NLP/KhayaAIAssistant",hf_token=MY_HF_TOKEN_KEY)
10
 
11
  def generate(prompt,history,language):
12
- print(history)
13
  output = client.predict(prompt,language)
14
- print(output)
15
  history.append([prompt,output])
16
  return output
17
 
 
9
  client = Client("Ghana-NLP/KhayaAIAssistant",hf_token=MY_HF_TOKEN_KEY)
10
 
11
  def generate(prompt,history,language):
12
+ #print(history)
13
  output = client.predict(prompt,language)
14
+ #print(output)
15
  history.append([prompt,output])
16
  return output
17