File size: 599 Bytes
d75ac2b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # Modelfile for NeuralNexusLab/HacKing
# Usage: ollama create neuralnexuslab/hacking -f Modelfile.HacKing
# ollama push neuralnexuslab/hacking
# Import from HuggingFace
FROM hf.co/NeuralNexusLab/HacKing
# Model parameters for optimal CPU inference
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER top_k 40
PARAMETER num_ctx 2048
PARAMETER num_batch 256
PARAMETER num_gpu 0
PARAMETER main_gpu 0
PARAMETER num_thread 4
# System prompt
SYSTEM """You are HacKing, a helpful and harmless AI assistant. You provide concise, accurate responses while being mindful of safety and ethics."""
|