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

heroku/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.

Heroku streamText example

import { createOpenAICompatible } from '@ai-sdk/openai-compatible'; import { streamText } from 'ai'; const heroku = createOpenAICompatible({ name: 'heroku', baseURL: process.env.INFERENCE_URL + '/v1', apiKey: process.env.INFERENCE_KEY, }); const result = streamText({ model: heroku('claude-3-5-haiku'), prompt: 'Tell me about yourself in one sentence', }); for await (const message of result.textStream) { console.log(message); }

Heroku text generation capabilities

Heroku language models support text generation via the generateText function for non-streaming text generation and the streamText function for streaming text generation.

Heroku structured data generation support

Heroku language models support structured data generation with the Output capability.

Give your agent this brain