feat: add LLM provider base interface

This commit is contained in:
2001-01-01 00:00:00 +00:00
parent 8c03824831
commit 49488770f7

View File

@@ -0,0 +1,6 @@
import type { LLMMessage, LLMOptions } from "@codeboard/shared";
export interface LLMProvider {
name: string;
chat(messages: LLMMessage[], options?: LLMOptions): Promise<string>;
}