-
Notifications
You must be signed in to change notification settings - Fork 1
Image Recognition
James edited this page May 10, 2026
·
4 revisions
Image Recognition services inspect image URLs and return generated text.
- Open the Groq integration page.
- Choose Add Image Recognition.
- Enter a friendly service name.
- Select a vision-capable model.
- Optionally set a system prompt to guide answers.
action: groq.analyze_image
data:
prompt: Describe anything unusual in this camera image.
image_url: https://example.com/snapshot.jpg
model: meta-llama/llama-4-scout-17b-16e-instruct
response_variable: groq_imageThe setup flow prefers live Groq model discovery. If discovery is unavailable, the integration has built-in fallback model IDs:
meta-llama/llama-4-scout-17b-16e-instructmeta-llama/llama-4-maverick-17b-128e-instruct
OCR support is present in the service architecture and service schema, but the setup flow currently exposes Image Recognition as the user-facing vision service.
If you need text extraction, use an Image Recognition prompt that asks the model to transcribe visible text, or use groq.extract_text_from_image if it is available in your installed version.