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

open-responses/options

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.

Open Responses reasoning support

Use the top-level reasoning setting to control reasoning effort. The provider maps supported values to the Open Responses reasoning.effort field. The provider also supports reasoningSummary through providerOptions, where the provider option key must match the name passed to createOpenResponses.

reasoningSummary values

reasoningSummary accepts 'auto', 'concise', or 'detailed'. Reasoning support and accepted values depend on the endpoint and model.

Open Responses reasoning example

Example code: import { createOpenResponses, type OpenResponsesLanguageModelOptions } from '@ai-sdk/open-responses'; import { generateText } from 'ai'; const lmstudio = createOpenResponses({ name: 'lmstudio', url: 'http://localhost:1234/v1/responses', }); const { text, reasoningText } = await generateText({ model: lmstudio('your-reasoning-model-id'), reasoning: 'high', providerOptions: { lmstudio: { reasoningSummary: 'detailed', } satisfies OpenResponsesLanguageModelOptions, }, prompt: 'Explain why the sky appears blue.', }); console.log(reasoningText); console.log(text);

Give your agent this brain