Fireworks

FireLLaVA 13B

fireworks/firellava-13b

A blazing fast vision-language model, FireLLaVA quickly understands both text and images. It achieves impressive chat skills in tests, and was designed to mimic multimodal GPT-4.

The first commercially permissive open source LLaVA model, trained entirely on open source LLM generated instruction following data.

Context Window

4,096

0

Using FireLLaVA 13B with Python API

Using FireLLaVA 13B with OpenAI compatible API

import openai

client = openai.Client(
  api_key= '{your_api_key}',
  base_url="https://api.model.box/v1",
)
response = client.chat.completions.create(
model="fireworks/firellava-13b",
messages: [
  {
    role: 'user',
    content:
      'introduce your self',
    },
  ]
)
print(response)