wangzhang commited on
Commit
772c592
·
1 Parent(s): efe071a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,9 +3,9 @@ from huggingface_hub import InferenceClient
3
 
4
  client = InferenceClient(model="https://zgg3nzdpswxy4a-80.proxy.runpod.net/")
5
 
6
- def inference(message, history):
7
  partial_message = ""
8
- for token in client.text_generation(message, max_new_tokens=128, stream=True, temperature=0.5, top_p=0.9, do_sample=True, decoder_input_details=True):
9
  partial_message += token
10
  yield partial_message
11
 
 
3
 
4
  client = InferenceClient(model="https://zgg3nzdpswxy4a-80.proxy.runpod.net/")
5
 
6
+ def inference(message):
7
  partial_message = ""
8
+ for token in client.text_generation(message, max_new_tokens=256, stream=True):
9
  partial_message += token
10
  yield partial_message
11