// Export workspace-wide server plugin overrides here when you need them. // Chat-derived apps inherit these exports, so provide explicit framework defaults // to keep generated workspaces warning-free until a workspace customizes them. import { createAgentChatPlugin, defaultAuthPlugin, type AgentChatPluginOptions, type NitroPluginDef, } from "@agent-native/core/server"; export function createWorkspaceAgentChatPlugin( options?: AgentChatPluginOptions, ): NitroPluginDef { return createAgentChatPlugin(options); } export const defaultAgentChatPlugin: NitroPluginDef = createWorkspaceAgentChatPlugin(); export { defaultAuthPlugin };