Athena-1 is a fine-tuned, instruction-following large language model derived from
Qwen/Qwen2.5-7B-Instruct. Designed to balance efficiency and performance, Athena 7B provides powerful text-generation capabilities, making it suitable for a variety of real-world applications, including conversational AI, content creation, and structured data processing.
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-7B")
8pipe(messages)
9
10# Load model directly
11from transformers import AutoTokenizer, AutoModelForCausalLM
12
13tokenizer = AutoTokenizer.from_pretrained("Spestly/Athena-1-7B")
14model = AutoModelForCausalLM.from_pretrained("Spestly/Athena-1-7B")