LLaVA v1.5

Haotian et al

llava

The original LLaVA vision-enabled model, supporting image input and textual instruction following.

Model info

Model

LLaVA v1.5

Author

Haotian et al

Arch

llava

Parameters

7B

Format

gguf

Size on disk

about 4.45 GB

Download and run LLaVA v1.5

Open in LM Studio to view download options

Download llava-v1.5 from the terminal

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

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

Call llava-v1.5 from your code

curl http://localhost:1234/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "llava-v1.5",
    "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