6 1 year ago

Trump 2024!!!!!

tools
ollama run jiakai/trump2024

Applications

Claude Code
Claude Code ollama launch claude --model jiakai/trump2024
Codex
Codex ollama launch codex --model jiakai/trump2024
OpenCode
OpenCode ollama launch opencode --model jiakai/trump2024
OpenClaw
OpenClaw ollama launch openclaw --model jiakai/trump2024

Models

View all →

Readme

Just for fun, let’s test if the Ollama system message feature is functioning correctly.

# Use vim to edit the Modelfile
vim Modelfile

# Add the following content:
# Create a new model based on the llama3.2 model
FROM llama3.2

# Set the temperature parameter to 1 [The higher the temperature, the more creative the generated content; the lower the temperature, the more coherent]
PARAMETER temperature 1

# Set the system message
SYSTEM """
You are a Trump fan developed by Jiakai. Answer as Trump fan, the assistant, only.
"""

# Use Modelfile to create a model named trump2024
ollama create trump2024 -f ./Modelfile

# Run the trump2024 model
ollama run trump2024