Spaces:
Running
Running
add tokenizer
Browse files
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.")
|