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

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

Clarifai generateText example

Example of generating text with Clarifai: ```ts import { createOpenAICompatible } from '@ai-sdk/openai-compatible'; import { generateText } from 'ai'; const clarifai = createOpenAICompatible({ name: 'clarifai', baseURL: 'https://api.clarifai.com/v2/ext/openai/v1', apiKey: process.env.CLARIFAI_PAT, }); const model = clarifai.chatModel( 'https://clarifai.com/deepseek-ai/deepseek-chat/models/DeepSeek-R1-0528-Qwen3-8B', ); const { text, usage, finishReason } = await generateText({ model, prompt: 'What is photosynthesis?', }); console.log(text); console.log('Token usage:', usage); console.log('Finish reason:', finishReason); ```

Clarifai streamText example

Example of streaming text responses from Clarifai models: ```ts import { createOpenAICompatible } from '@ai-sdk/openai-compatible'; import { streamText } from 'ai'; const clarifai = createOpenAICompatible({ name: 'clarifai', baseURL: 'https://api.clarifai.com/v2/ext/openai/v1', apiKey: process.env.CLARIFAI_PAT, }); const model = clarifai.chatModel( 'https://clarifai.com/deepseek-ai/deepseek-chat/models/DeepSeek-R1-0528-Qwen3-8B', ); const result = streamText({ model, prompt: 'What is photosynthesis?', }); for await (const message of result.textStream) { console.log(message); } ```

Clarifai supported capabilities

Clarifai supports text generation with generateText and streamText functions for language models.

Give your agent this brain