Views
No views yet
yunmorning/broken-modelyunmorning/broken-model, addressing critical metadata mismatches that prevent standard inference.v1/chat/completions endpoint. When queried via a Python wrapper, it triggered the following error:no configured chat prompt template; use non-chat endpoint instead
meta-llama/Meta-Llama-3.1-8B, the machine-maintained config.json and tokenizer_config.json correctly identify a Qwen3 architecture.tokenizer_config.json was missing the chat_template key, which is required for the Chat Completions API to format messages into the model's expected internal prompt structure.README.md YAML front matter to reflect the correct base_model (Qwen3).chat_template.jinja. This file contains the pretty-printed Jinja2 logic sourced from the official Qwen3 reference.chat_template.jinja present in the repository root, modern inference engines will automatically detect and use the correct formatting for Chat completions.1from transformers import AutoTokenizer
2
3tokenizer = AutoTokenizer.from_pretrained("robnav/fai_bm_fix2")
4# The template is now automatically loaded from chat_template.jinja