Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/mobius/integrations/ort_genai/auto_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ def _copy_tokenizer_files(
"added_tokens.json",
"merges.txt", # BPE
"vocab.json", # BPE
"chat_template.jinja", # Chat template for ORT GenAI
Comment thread
justinchuby marked this conversation as resolved.
]
copied: list[str] = []
for filename in tokenizer_files:
Expand Down Expand Up @@ -127,6 +128,7 @@ def _copy_tokenizer_files_from_local(
"added_tokens.json",
"merges.txt", # BPE
"vocab.json", # BPE
"chat_template.jinja", # Chat template for ORT GenAI
Comment thread
justinchuby marked this conversation as resolved.
]
copied: list[str] = []
for filename in tokenizer_files:
Expand Down
Loading