new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

AI SDK · Providers · all subjects

automatic1111/capabilities

3 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

Automatic1111 basic image generation example

Example showing basic image generation with Automatic1111: import { automatic1111 } from 'automatic1111-provider'; import { generateImage } from 'ai'; const { images } = await generateImage({ model: automatic1111.image('v1-5-pruned-emaonly'), prompt: 'A beautiful sunset over mountains', size: '512x512', });

Automatic1111 advanced configuration example

Example showing advanced image generation configuration with Automatic1111: const { images } = await generateImage({ model: automatic1111.image('realistic-vision-v4'), prompt: 'Portrait of a wise old wizard with a long beard', n: 2, seed: 12345, providerOptions: { automatic1111: { negative_prompt: 'blurry, ugly, deformed, low quality', steps: 40, cfg_scale: 8.5, sampler_name: 'DPM++ SDE Karras', styles: ['photorealistic', 'detailed'], check_model_exists: true, }, }, });

Automatic1111 supports image generation

The Automatic1111 provider supports image generation through the image() method for creating images based on text prompts.

Give your agent this brain