How to run the model

#1
by Svngoku - opened
MaatAI org

Load the model locally or from HF

from transformers import AutoModelForCausalLM, AutoTokenizer

model_path = "/content/model"
model_name = "MaatAI/Seshat-Qwen3-8B"

tokenizer = AutoTokenizer.from_pretrained(model_path)
model = AutoModelForCausalLM.from_pretrained(
    model_path, # model_name
    torch_dtype="auto",
    device_map="auto"
)
prompt = """
How did the sexual relationships between European men and enslaved/Khoikhoi women during the Dutch East India Company period at the Cape contribute to the evolving demographic and social landscape?
"""

messages = [
    {"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True,
    enable_thinking=False # Switches between thinking and non-thinking modes. Default is True
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)


# conduct text completion
generated_ids = model.generate(
    **model_inputs,
    max_new_tokens=32768
)
output_ids = generated_ids[0][len(model_inputs.input_ids[0]):].tolist() 

# parsing thinking content
try:
    # rindex finding 151668 (</think>)
    index = len(output_ids) - output_ids[::-1].index(151668)
except ValueError:
    index = 0

thinking_content = tokenizer.decode(output_ids[:index], skip_special_tokens=True).strip("\n")
content = tokenizer.decode(output_ids[index:], skip_special_tokens=True).strip("\n")

print("thinking content:", thinking_content)
print("content:", content)

Sign up or log in to comment