mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-27 07:54:19 +00:00
9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
export interface ICreateLLMField {
|
|
name: string;
|
|
model_provider: string;
|
|
url: string;
|
|
api_key: string;
|
|
abilities: string[];
|
|
extra_args: string[];
|
|
}
|