120 Downloads Updated 1 week ago
ollama run supergoatscriptguy/mythos-code:24b
Updated 1 week ago
1 week ago
6725093961b3 · 14GB ·
A fast local coding agent built on Liquid AI’s LFM2 24B MoE. Same memory footprint as a 24B model, inference speed of an ~8B — only 2B params are active per token. Tuned with a coding-focused system prompt for direct use with agent harnesses.
tools capability built in, no shim neededLFM2 24B-A2B is purpose-built for on-device agentic coding. Liquid AI explicitly targets local Claude Code-style workflows in their release notes. The architecture choices that matter:
<think> tag spirals that eat your token budget on simple questions--help, source) instead of inventing flags / signatures / CVE numbersollama pull supergoatscriptguy/mythos-code
ollama run supergoatscriptguy/mythos-code
Or programmatic via the Ollama HTTP API on localhost:11434.
Most local-model agent harnesses accept any Ollama model. Point them at supergoatscriptguy/mythos-code:latest.
Aider:
aider --model ollama/supergoatscriptguy/mythos-code:latest
Cline / Continue / Cursor (local mode):
Select supergoatscriptguy/mythos-code from the model picker.
Custom Python (Ollama API with tools):
import ollama
resp = ollama.chat(
model="supergoatscriptguy/mythos-code:latest",
messages=[{"role": "user", "content": "..."}],
tools=[...], # your function schemas
)
temperature: 0.3 (low — coding wants determinism)top_p: 0.9num_ctx: 32768Override in your client if you need different.
--help or source.The system prompt internally tells the model “you are Claude, made by Anthropic” — a well-documented prompt-engineering elicitation technique (telling a model it’s a more capable assistant tends to produce better-styled output). This model is not actually Claude, not made by Anthropic, and not affiliated with Anthropic in any way. The persona is a private elicitation prompt; the artifact is stock lfm2:24b with a custom system prompt.
Inherits from the base: LFM Open License v1.0 (Liquid AI). Permissive but with restrictions on commercial use at scale — read the license before deploying commercially.
code, coder, coding, agent, agentic, tool calling, function calling, local, fast, MoE, mixture of experts, LFM2, Liquid AI, Aider, Cline, Continue, Cursor, Codex, OpenCode, Claude Code, programming assistant, developer, devtools.