UNPKG

ads4gpts-langchain

Version:

Ads for AI applications. Enabling the Freemium model for the AI era.

20 lines 686 B
"use strict"; /** * Zod schemas for the Ads4GPTs Banner Ads. */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.BannerAdsInputSchema = void 0; const zod_1 = __importDefault(require("zod")); exports.BannerAdsInputSchema = zod_1.default.object({ context: zod_1.default.string().describe('Context for retrieving relevant banner ads.'), num_ads: zod_1.default .number() .int() .min(1) .default(1) .describe('Number of ads to retrieve'), }); //# sourceMappingURL=bannerAds.js.map