InternLM 2.5 20B

InternLM

internlm2

InternLM 2.5 offers strong reasoning across the board as well as tool use for developers, while sitting at the sweet spot of size for those with 24GB GPUs.

Model info

Model

InternLM 2.5 20B

Author

InternLM

Arch

internlm2

Parameters

20B

Format

gguf

Size on disk

about 7.55 GB

Download and run InternLM 2.5 20B

Open in LM Studio to view download options

Download internlm2.5-20b from the terminal

Download the model using lms — LM Studio's developer CLI.

lms get internlm2.5-20b
If you don't have it yet, get it by running npx lmstudio install-cli

Call internlm2.5-20b from your code

curl http://localhost:1234/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "internlm2.5-20b",
    "messages": [
      { "role": "system", "content": "Always answer in rhymes." },
      { "role": "user", "content": "Introduce yourself." }
    ],
    "temperature": 0.7,
    "max_tokens": -1,
    "stream": true
  }'

Next Steps: Build! 🔨

Learn more