Overview of supported language models, including OpenAI, Anthropic, and Google Gemini, Grok, and more.
Each LLM is an adapter around a language model provider and the specific model version, eg: gpt-4o-mini. Each Agent can pick their own model and a ZeeWorkflow can be configured to use a specific LLM as default.
Copy
Ask AI
const llm = new LLM({ provider: "openai", id: "gpt-4o-mini",});
The LLM will analyze the image and return a structured response containing the description, colors used, and potential improvements. You can also use base64-encoded images by providing the data URL:
Copy
Ask AI
const messages = [ userMessage("What's in this image?"), userMessage([ { type: "image", image: "data:image/png;base64,...", }, ]),];