Views
No views yet
safetensors para carregamento rápido e seguro.1from transformers import pipeline
2
3solara = pipeline(
4 "text-generation",
5 model="Solara-v1",
6 tokenizer="Solara-v1",
7 max_length=200,
8 temperature=0.6,
9 top_k=40,
10 top_p=0.92,
11 repetition_penalty=1.2
12)
13
14prompt = "Write a Python function that lists all files in a directory:"
15print(solara(prompt)[0]["generated_text"])