Extraction Evidence

Fireworks serverless quickstart block-58
Previous State
System Baseline: Null
Detected Delta
import Anthropic from "@anthropic-ai/sdk" ; const client = new Anthropic ({ apiKey: process . env . FIREWORKS_API_KEY , baseURL: "https://api.fireworks.ai/inference" , }); const response = await client . messages . create ({ model: "accounts/fireworks/models/qwen2p5-vl-32b-instruct" , max_tokens: 1024 , messages: [ { role: "user" , content: [ { type: "text" , text: "What's in this image?" }, { type: "image" , source: { type: "url" , url: "https://storage.googleapis.com/fireworks-public/image_assets/fireworks-ai-wordmark-color-dark.png" , }, }, ], }, ], }); for ( const block of response . content ) { if ( block . type === "text" ) { console . log ( block . text ); } }