Views
No views yet
Trelis/Llama-2-7b-chat-hf-function-calling-v2.
Refer to the original model card for more details on the model.pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("mlx-community/Llama-2-7b-chat-hf-function-calling-v2-MLX")
4response = generate(model, tokenizer, prompt="hello", verbose=True)