UNPKG

@genkit-ai/ai

Version:

Genkit AI framework generative AI APIs.

125 lines 3.28 kB
import { action, GenkitError, isAction, z } from "@genkit-ai/core"; import uriTemplate from "uri-templates"; import { PartSchema } from "./model-types.js"; const ResourceInputSchema = z.object({ uri: z.string() }); const ResourceOutputSchema = z.object({ content: z.array(PartSchema) }); function defineResource(registry, opts, fn) { const action2 = dynamicResource(opts, fn); action2.matches = createMatcher(opts.uri, opts.template); registry.registerAction("resource", action2); return action2; } async function findMatchingResource(registry, input) { for (const actKeys of Object.keys(await registry.listResolvableActions())) { if (actKeys.startsWith("/resource/")) { const resource2 = await registry.lookupAction(actKeys); if (resource2.matches(input)) { return resource2; } } } return void 0; } function isDynamicResourceAction(t) { return isAction(t) && !t.__registry; } function resource(opts, fn) { return dynamicResource(opts, fn); } function dynamicResource(opts, fn) { const uri = opts.uri ?? opts.template; if (!uri) { throw new GenkitError({ status: "INVALID_ARGUMENT", message: `must specify either url or template options` }); } const matcher = createMatcher(opts.uri, opts.template); const act = action( { actionType: "resource", name: opts.name ?? uri, description: opts.description, inputSchema: ResourceInputSchema, outputSchema: ResourceOutputSchema, metadata: { resource: { uri: opts.uri, template: opts.template }, ...opts.metadata, type: "resource", dynamic: true } }, async (input, ctx) => { const templateMatch = matcher(input); if (!templateMatch) { throw new GenkitError({ status: "INVALID_ARGUMENT", message: `input ${input} did not match template ${uri}` }); } const parts = await fn(input, ctx); parts.content.map((p) => { if (!p.metadata) { p.metadata = {}; } if (p.metadata?.resource) { if (!p.metadata.resource.parent) { p.metadata.resource.parent = { uri: input.uri }; if (opts.template) { p.metadata.resource.parent.template = opts.template; } } } else { p.metadata.resource = { uri: input.uri }; if (opts.template) { p.metadata.resource.template = opts.template; } } return p; }); return parts; } ); act.matches = matcher; act.attach = (_) => act; return act; } function createMatcher(uriOpt, templateOpt) { if (uriOpt) { return (input) => input.uri === uriOpt; } if (templateOpt) { const template = uriTemplate(templateOpt); return (input) => template.fromUri(input.uri) !== void 0; } throw new GenkitError({ status: "INVALID_ARGUMENT", message: "must specify either url or template options" }); } export { ResourceInputSchema, ResourceOutputSchema, defineResource, dynamicResource, findMatchingResource, isDynamicResourceAction, resource }; //# sourceMappingURL=resource.mjs.map