Menu
popagent
publicLatest change 6edc7e928c57dab23c0973ed3f7ee70b3ebb72d5 - Initial popagent baseline by AkurAI Build
import { RequestContext } from "@mastra/core/request-context";
import type { IterationCompleteContext } from "@mastra/core/agent";
import { DEFAULT_WORKSPACE_ID, type AgentRuntimeSettings } from "./api-types";
import type { HookRuntime } from "./hooks";
export const AGENT_CONTEXT_KEYS = {
resourceId: "popagent.resourceId",
sessionId: "popagent.sessionId",
turnId: "popagent.turnId",
model: "popagent.model",
workspaceId: "popagent.workspaceId",
runtimeSettings: "popagent.runtimeSettings",
hookRuntime: "popagent.hookRuntime",
iterationObserver: "popagent.iterationObserver",
} as const;
export type AgentContextValues = {
"popagent.resourceId": string;
"popagent.sessionId": string;
"popagent.turnId": string;
"popagent.model": string;
"popagent.workspaceId": string;
"popagent.runtimeSettings"?: AgentRuntimeSettings;
"popagent.hookRuntime"?: HookRuntime;
"popagent.iterationObserver"?: (context: IterationCompleteContext) => Promise<void>;
};
export type AgentRequestContext = RequestContext<AgentContextValues>;
export function createAgentRequestContext(input: {
resourceId: string;
sessionId: string;
turnId: string;
model: string;
workspaceId?: string;
runtimeSettings?: AgentRuntimeSettings;
hookRuntime?: HookRuntime;
iterationObserver?: (context: IterationCompleteContext) => Promise<void>;
}): AgentRequestContext {
const context = new RequestContext<AgentContextValues>();
context.set(AGENT_CONTEXT_KEYS.resourceId, input.resourceId);
context.set(AGENT_CONTEXT_KEYS.sessionId, input.sessionId);
context.set(AGENT_CONTEXT_KEYS.turnId, input.turnId);
context.set(AGENT_CONTEXT_KEYS.model, input.model);
context.set(AGENT_CONTEXT_KEYS.workspaceId, input.workspaceId ?? DEFAULT_WORKSPACE_ID);
if (input.runtimeSettings) context.set(AGENT_CONTEXT_KEYS.runtimeSettings, input.runtimeSettings);
if (input.hookRuntime) context.set(AGENT_CONTEXT_KEYS.hookRuntime, input.hookRuntime);
if (input.iterationObserver) context.set(AGENT_CONTEXT_KEYS.iterationObserver, input.iterationObserver);
return context;
}
export function agentContextValue<Key extends keyof AgentContextValues>(
requestContext: AgentRequestContext | RequestContext | undefined,
key: Key,
): AgentContextValues[Key] | undefined {
return (requestContext as RequestContext | undefined)?.get(key) as AgentContextValues[Key] | undefined;
}