mirror of
https://github.com/tjiho/traverse.git
synced 2026-02-16 20:57:31 +01:00
8 lines
174 B
Python
8 lines
174 B
Python
from transformers import pipeline
|
|
|
|
MODEL = "google/gemma-3-1b-it"
|
|
|
|
generator = pipeline("text-generation", model=MODEL, device_map="auto")
|
|
|
|
def sort_with_llm(tags):
|
|
pass
|