Views
No views yet
<thinking> tags1from mlx_lm import load, generate
2
3# Load the model optimized for Apple Silicon
4model, tokenizer = load("Supra-Nexus/supra-nexus-o1-instruct-mlx")
5
6# Generate response
7prompt = "Explain the concept of recursion with an example"
8response = generate(model, tokenizer, prompt=prompt, max_tokens=500)
9print(response)1@software{supra_nexus_o1_2025,
2 title = {Supra Nexus O1: Advanced Reasoning Models},
3 author = {Supra Foundation},
4 year = {2025},
5 url = {https://github.com/Supra-Nexus/o1}
6}