Beta
Explore
Marketplace
Neural Labs
Playground
Wallet
Docs
model_satere_mawe_v3 – AI Model by FabioSantos | AlphaNeural AI
You can deploy this model and start earning money today!
FabioSantos
/
model_satere_mawe_v3
like
0
gguf
llama
llama.cpp
unsloth
endpoints_compatible
us
conversational
Views
No views yet
Model card
Files and Versions
Community
API
Deploy
model_satere_mawe_v3 - GGUF
This model was finetuned and converted to GGUF format using
Unsloth
.
Example usage
:
For text only LLMs:
llama-cli
--hf
repo_id/model_name
-p
"why is the sky blue?"
For multimodal models:
llama-mtmd-cli
-m
model_name.gguf
--mmproj
mmproj_file.gguf
Available Model files:
Meta-Llama-3.1-8B-Instruct.F16.gguf
Ollama
An Ollama Modelfile is included for easy deployment.
How to use
from ollama import Client
client = Client(host='
http://localhost:11434
')
response = client.chat( model="satere:latest", messages=[ {"role": "user", "content": "Qual a palavra para 'cabeça'?"} ] )
print("Resposta do modelo:") print(response["message"]["content"])