File size: 252 Bytes
1b9d2d8
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import ollama

res = ollama.generate(
    model="hf.co/bartowski/Llama-3.2-3B-Instruct-uncensored-GGUF:Q5_K_S",
    # model="qwen2.5:3b",
    prompt="i am a human",
    system="Provide answers with funny and creative answers",
)

print(res['response'])