464 Downloads Updated 1 year ago
ollama run mannix/llama3-12b
curl http://localhost:11434/api/chat \ -d '{ "model": "mannix/llama3-12b", "messages": [{"role": "user", "content": "Hello!"}] }'
from ollama import chat response = chat( model='mannix/llama3-12b', messages=[{'role': 'user', 'content': 'Hello!'}], ) print(response.message.content)
import ollama from 'ollama' const response = await ollama.chat({ model: 'mannix/llama3-12b', messages: [{role: 'user', content: 'Hello!'}], }) console.log(response.message.content)
Updated 2 years ago
2 years ago
e0c119d95b71 · 6.6GB ·
Meta-Llama-3-12B-Instruct is a depth upscaling merge of llama3-8b from M. Labonne
Quantized with imatrix using groups_merged.txt
groups_merged.txt
https://huggingface.co/mlabonne/Meta-Llama-3-12B-Instruct