feat: per-request headers on generate calls - #40
Merged
Conversation
Ai::Agent#generate_text/#generate_object accept a headers: hash that the Mastra client sends on the HTTP request, overriding the global config (e.g. a service-to-service Authorization token and actor headers instead of the shared MASTRA_API_KEY). Test client records last_headers. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
arnaub
marked this pull request as ready for review
July 23, 2026 09:50
enriclluelles
approved these changes
Jul 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Factorial is moving backend↔factorial-agent auth from the shared
MASTRA_API_KEYsecret to factorial-id service tokens with actor attribution (FCT-58575). The caller needs to set per-request headers — anAuthorizationservice token plusX-Factorial-Actor-Type/X-Factorial-Actor-Id— which the client can't do today: it only sends the process-wideAi.config.api_key.What
Ai::Agent#generate_text/#generate_objectaccept an optionalheaders:hash (default{}).Ai::Client#generate(abstract),Ai::Clients::Mastra#generateand#responsethread it through; per-request headers are applied after the globalOrigin/Authorization, so they win on conflict.Ai::Clients::Testaccepts the kwarg and exposeslast_headersfor assertions.Consumer
factorialco/factorial#105401's
AiInteractions::AgentGatewayis the first caller — its pending end-to-end specs assert this exact header contract and flip green when the monorepo's Gemfile picks this up.🤖 Generated with Claude Code