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

posthog/options

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

PostHog configuration: US and EU hosts

PostHog has two regional hosts: https://us.i.posthog.com for the US region and https://eu.i.posthog.com for the EU region. The host parameter is configured in the PostHogTraceExporter options.

PostHog posthog_distinct_id configuration

Pass posthog_distinct_id in the metadata field of the telemetry option to associate LLM events with a specific user in PostHog. If omitted, events are captured anonymously.

PostHog recordInputs and recordOutputs privacy controls

Set recordInputs and recordOutputs to false in the telemetry option to disable recording of inputs and outputs. Both are optional boolean parameters.

PostHog privacy controls example

This example shows how to disable recording of inputs and outputs: ```ts const result = await generateText({ model: openai('gpt-4o'), prompt: 'Write a short story about a cat.', telemetry: { recordInputs: false, recordOutputs: false, }, }); ```

Give your agent this brain