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

requesty/options

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

Requesty reasoning effort parameter values

Requesty supports the following reasoning effort values: 'low' for minimal reasoning effort, 'medium' for moderate reasoning effort, 'high' for high reasoning effort, 'max' for maximum reasoning effort (Requesty-specific), and budget strings (e.g., '10000') for specific token budget for reasoning.

Requesty reasoning example

Example using reasoning support: import { createRequesty } from '@requesty/ai-sdk'; import { generateText } from 'ai'; const requesty = createRequesty({ apiKey: process.env.REQUESTY_API_KEY }); const { text, reasoning } = await generateText({ model: requesty('openai/o3-mini', { reasoningEffort: 'medium' }), prompt: 'Solve this complex problem step by step...' }); console.log('Response:', text); console.log('Reasoning:', reasoning);

Requesty custom configuration example

Example configuring Requesty with custom settings: import { createRequesty } from '@requesty/ai-sdk'; const requesty = createRequesty({ apiKey: process.env.REQUESTY_API_KEY, baseURL: 'https://router.requesty.ai/v1', headers: { 'Custom-Header': 'custom-value' }, extraBody: { custom_field: 'value' } });

Requesty extra body parameters via provider options

Extra body parameters can be passed to Requesty via provider options in the streamText or generateText call: await streamText({ model: requesty('anthropic/claude-3.5-sonnet'), messages: [{ role: 'user', content: 'Hello' }], providerOptions: { requesty: { custom_field: 'value', reasoning_effort: 'high' } } });

Requesty extra body parameters via model settings

Extra body parameters can be passed to Requesty via model settings: const model = requesty('anthropic/claude-3.5-sonnet', { extraBody: { custom_field: 'value' } });

Requesty extra body parameters via provider factory

Extra body parameters can be passed to Requesty via the provider factory when creating a custom instance: const requesty = createRequesty({ apiKey: process.env.REQUESTY_API_KEY, extraBody: { custom_field: 'value' } });

Give your agent this brain