Skip to main content

Interface

interface LLMProvider {
  complete(messages: Message[]): Promise<string>;
}
That single method is sufficient for integration with Agent and ReActLoop.