Cloudflare Docs
Workers AI
Edit this page
Report an issue with this page
Log into the Cloudflare dashboard
Set theme to dark (⇧+D)

llava-1.5-7b-hf

Beta

Model ID: @cf/llava-hf/llava-1.5-7b-hf

LLaVA is an open-source chatbot trained by fine-tuning LLaMA/Vicuna on GPT-generated multimodal instruction-following data. It is an auto-regressive language model, based on the transformer architecture.

​​ Properties

Task Type: Image-to-Text

​​ Code Examples

Workers - TypeScript
export interface Env {
AI: Ai;
}
export default {
async fetch(request: Request, env: Env): Promise<Response> {
const res = await fetch("https://cataas.com/cat");
const blob = await res.arrayBuffer();
const input = {
image: [...new Uint8Array(blob)],
prompt: "Generate a caption for this image",
max_tokens: 512,
};
const response = await env.AI.run(
"@cf/llava-hf/llava-1.5-7b-hf",
input
);
return new Response(JSON.stringify(response));
},
} satisfies ExportedHandler<Env>;

​​ Response

{
"description": " This is a photo of a supdog."
}

​​ API Schema

The following schema is based on JSON Schema

Input JSON Schema
{
"oneOf": [
{
"type": "string",
"format": "binary"
},
{
"type": "object",
"properties": {
"temperature": {
"type": "number"
},
"prompt": {
"type": "string"
},
"raw": {
"type": "boolean",
"default": false
},
"messages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"role": {
"type": "string"
},
"content": {
"type": "string",
"maxLength": 6144
}
},
"required": [
"role",
"content"
]
}
},
"image": {
"oneOf": [
{
"type": "array",
"items": {
"type": "number"
}
},
{
"type": "string",
"format": "binary"
}
]
},
"max_tokens": {
"type": "integer",
"default": 512
}
},
"required": [
"image"
],
"not": {
"required": [
"prompt",
"messages"
]
},
"errorMessage": {
"not": "\"prompt\" and \"messages\" are mutually exclusive"
}
}
]
}
Output JSON Schema
{
"type": "object",
"contentType": "application/json",
"properties": {
"description": {
"type": "string"
}
}
}