UNPKG

ai-utils.js

Version:

Build AI applications, chatbots, and agents with JavaScript and TypeScript.

6 lines (5 loc) 254 B
import { ModelCallFinishedEvent, ModelCallStartedEvent } from "./ModelCallEvent.js"; export type ModelCallObserver = { onModelCallStarted?: (event: ModelCallStartedEvent) => void; onModelCallFinished?: (event: ModelCallFinishedEvent) => void; };