Genkit JS API reference
    Preparing search index...

    Interface FastifyHandlerOptions<C, I>

    Options for a fastifyHandler (context provider, stream manager).

    interface FastifyHandlerOptions<
        C extends ActionContext = ActionContext,
        I extends z.ZodTypeAny = z.ZodTypeAny,
    > {
        contextProvider?: ContextProvider<C, I>;
        streamManager?: StreamManager;
    }

    Type Parameters

    Index

    Properties

    contextProvider?: ContextProvider<C, I>
    streamManager?: StreamManager