genkitx-voiceflow
    Preparing search index...

    Function voiceflowRetriever

    • Parameters

      • name: string
      • client: VoiceflowClient
      • ai: Genkit

      Returns RetrieverAction<
          ZodObject<
              extendShape<
                  { k: ZodOptional<ZodNumber> },
                  {
                      filters: ZodOptional<ZodAny>;
                      querySettings: ZodOptional<
                          ZodObject<
                              {
                                  model: ZodDefault<ZodString>;
                                  system: ZodOptional<ZodString>;
                                  temperature: ZodDefault<ZodNumber>;
                              },
                              "strip",
                              ZodTypeAny,
                              { model: string; system?: string; temperature: number },
                              { model?: string; system?: string; temperature?: number },
                          >,
                      >;
                  },
              >,
              "strip",
              ZodTypeAny,
              {
                  filters?: any;
                  k?: number;
                  querySettings?: { model: string; system?: string; temperature: number };
              },
              {
                  filters?: any;
                  k?: number;
                  querySettings?: { model?: string; system?: string; temperature?: number };
              },
          >,
      >