UNPKG

@tanstack/ai

Version:

Core TanStack AI library - Open source AI SDK

15 lines (14 loc) 314 B
class BaseImageAdapter { constructor(config = {}, model) { this.kind = "image"; this.config = config; this.model = model; } generateId() { return `${this.name}-${Date.now()}-${Math.random().toString(36).substring(7)}`; } } export { BaseImageAdapter }; //# sourceMappingURL=adapter.js.map