UNPKG

@genkit-ai/core

Version:

Genkit AI framework core libraries.

54 lines 1.19 kB
import { version } from "./__codegen/version.js"; const GENKIT_VERSION = version; const GENKIT_CLIENT_HEADER = `genkit-node/${GENKIT_VERSION} gl-node/${process.versions.node}`; const GENKIT_REFLECTION_API_SPEC_VERSION = 1; import { z } from "zod"; export * from "./action.js"; import { OperationSchema, defineBackgroundAction } from "./background-action.js"; import { apiKey, getContext, runWithContext } from "./context.js"; import { GenkitError, UnstableApiError, UserFacingError, assertUnstable, getCallableJSON, getHttpStatus } from "./error.js"; import { defineFlow, run } from "./flow.js"; export * from "./plugin.js"; export * from "./reflection.js"; import { defineJsonSchema, defineSchema } from "./schema.js"; export * from "./telemetryTypes.js"; export * from "./utils.js"; export { GENKIT_CLIENT_HEADER, GENKIT_REFLECTION_API_SPEC_VERSION, GENKIT_VERSION, GenkitError, OperationSchema, UnstableApiError, UserFacingError, apiKey, assertUnstable, defineBackgroundAction, defineFlow, defineJsonSchema, defineSchema, getCallableJSON, getContext, getHttpStatus, run, runWithContext, z }; //# sourceMappingURL=index.mjs.map