ads4gpts-langchain
Version:
Ads for AI applications. Enabling the Freemium model for the AI era.
15 lines • 369 B
TypeScript
/**
* Zod schemas for the Ads4GPTs Banner Ads.
*/
import z from 'zod';
export declare const BannerAdsInputSchema: z.ZodObject<{
context: z.ZodString;
num_ads: z.ZodDefault<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
context: string;
num_ads: number;
}, {
context: string;
num_ads?: number | undefined;
}>;
//# sourceMappingURL=bannerAds.d.ts.map