Skip to main content

Documentation Index

Fetch the complete documentation index at: https://icrl.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Interface

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