ZennethKenneth commited on
Commit
51bec36
·
verified ·
1 Parent(s): 11954b4

add tokenizer

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -22,6 +22,7 @@ def authenticate_and_generate(message, history, system_message, max_tokens, temp
22
  try:
23
  # Initialize the text-generation pipeline with the provided token
24
  text_generator = pipeline("text-generation", model="microsoft/Phi-3-mini-4k-instruct", use_auth_token=hf_token, trust_remote_code=True)
 
25
 
26
  if text_generator.tokenizer is None:
27
  raise RuntimeError("Failed to load the tokenizer. Ensure the model and API token are correct.")
 
22
  try:
23
  # Initialize the text-generation pipeline with the provided token
24
  text_generator = pipeline("text-generation", model="microsoft/Phi-3-mini-4k-instruct", use_auth_token=hf_token, trust_remote_code=True)
25
+ tokenizer = AutoTokenizer.from_pretrained("microsoft/Phi-3-mini-4k-instruct")
26
 
27
  if text_generator.tokenizer is None:
28
  raise RuntimeError("Failed to load the tokenizer. Ensure the model and API token are correct.")