ZennethKenneth commited on
Commit
f93e307
·
verified ·
1 Parent(s): 42dbf93

remove extra argument

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ For more information on `huggingface_hub` Inference API support, please check th
18
  # pipeline move to func
19
  # text_generator = pipeline("text-generation", model="microsoft/Phi-3-mini-4k-instruct", use_auth_token=hf_token, trust_remote_code=True)
20
 
21
- def authenticate_and_generate(token, message, history, system_message, max_tokens, temperature, top_p):
22
  # Initialize the text-generation pipeline with the provided token
23
  text_generator = pipeline("text-generation", model="microsoft/Phi-3-mini-4k-instruct", use_auth_token=hf_token, trust_remote_code=True)
24
 
 
18
  # pipeline move to func
19
  # text_generator = pipeline("text-generation", model="microsoft/Phi-3-mini-4k-instruct", use_auth_token=hf_token, trust_remote_code=True)
20
 
21
+ def authenticate_and_generate(message, history, system_message, max_tokens, temperature, top_p):
22
  # Initialize the text-generation pipeline with the provided token
23
  text_generator = pipeline("text-generation", model="microsoft/Phi-3-mini-4k-instruct", use_auth_token=hf_token, trust_remote_code=True)
24