How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="ClaudioItaly/Anya-9Y")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("ClaudioItaly/Anya-9Y")
model = AutoModelForCausalLM.from_pretrained("ClaudioItaly/Anya-9Y")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

DALL·E 2025-02-23 13.42.44 - Un'intelligenza artificiale femminile stilizzata, con un volto etereo e futuristico. I suoi occhi brillano di luce azzurra e intorno a lei fluttuano p.webp


I created this AI model merge after months of meticulously chatting with different models. Now, the result is a highly concentrated creative summary generator that I have named Anya-9Y.

This model provides responses for very long and coherent novels. It follows instructions exceptionally well. I recommend using it with:

  • Temperature: 1
  • Repetition Penalty: 1.1
  • Min P Sampling: 0.05

Additionally, this model, when using my special prompt, offers R1-type reasoning:

"You are a deeply thinking AI, you can use extremely long chains of thought to deeply consider the problem and deliberate with yourself through systematic reasoning processes to arrive at a correct solution before answering. You should enclose your thoughts and internal monologue within the "think> /think>"" tags and then provide your solution or answer to the problem."

Thank you to everyone who gives a LIKE! 🚀


Downloads last month
3
Safetensors
Model size
10B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for ClaudioItaly/Anya-9Y