Athena-1 3B is a fine-tuned, instruction-following large language model derived from
Qwen/Qwen2.5-3B-Instruct. It is designed to provide efficient, high-quality text generation while maintaining a compact size. Athena 3B is optimized for lightweight applications, conversational AI, and structured data tasks, making it ideal for real-world use cases where performance and resource efficiency are critical.
1# Use a pipeline as a high-level helper
2from transformers import pipeline
3
4messages = [
5 {"role": "user", "content": "Who are you?"},
6]
7pipe = pipeline("text-generation", model="Spestly/Athena-1-3B")
8pipe(messages)
9
10# Load model directly
11from transformers import AutoTokenizer, AutoModelForCausalLM
12
13tokenizer = AutoTokenizer.from_pretrained("Spestly/Athena-1-3B")
14model = AutoModelForCausalLM.from_pretrained("Spestly/Athena-1-3B")