UNPKG

pulse-ai-utils

Version:

Utility functions and helpers for AI-powered applications

8 lines (7 loc) 267 B
import { Request, Response } from 'express'; import { LLMBase } from '../helpers/llm-base'; export default class LLMQueryHandler { llmHelper: LLMBase; constructor(apiKey?: string, llmHelper?: LLMBase); query(req: Request, res?: Response): Promise<any>; }