This commit is contained in:
Isaac McFadyen 2025-02-08 13:20:05 +00:00 committed by GitHub
commit ff7fc14db0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 19 additions and 0 deletions

View file

@ -1,4 +1,10 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# /// script
# dependencies = [
# "GitPython",
# "tabulate",
# ]
# ///
import logging import logging
import argparse import argparse

View file

@ -1,3 +1,9 @@
# /// script
# dependencies = [
# "requests",
# ]
# ///
from __future__ import annotations from __future__ import annotations
import array import array

View file

@ -1,4 +1,11 @@
#!/usr/bin/env python #!/usr/bin/env python
# /// script
# dependencies = [
# "huggingface_hub",
# "requests",
# ]
# ///
''' '''
Fetches the Jinja chat template of a HuggingFace model. Fetches the Jinja chat template of a HuggingFace model.
If a model has multiple chat templates, you can specify the variant name. If a model has multiple chat templates, you can specify the variant name.