946K Downloads Updated 1 year ago
ollama run dolphin-mixtral
curl http://localhost:11434/api/chat \ -d '{ "model": "dolphin-mixtral", "messages": [{"role": "user", "content": "Hello!"}] }'
from ollama import chat response = chat( model='dolphin-mixtral', messages=[{'role': 'user', 'content': 'Hello!'}], ) print(response.message.content)
import ollama from 'ollama' const response = await ollama.chat({ model: 'dolphin-mixtral', messages: [{role: 'user', content: 'Hello!'}], }) console.log(response.message.content)
Updated 1 year ago
1 year ago
4f76c28c0414 · 26GB ·
The Dolphin model by Eric Hartford based on Mixtral that is trained with additional datasets:
dolphin-mixtral:8x22b
dolphin-mixtral:8x7b
HuggingFace