Fix [TypesScript] [LLM Api] Chaining Model

- [+] fix(api.ts): make provider property optional in LLMModel interface
This commit is contained in:
H0llyW00dzZ 2023-12-25 01:09:21 +07:00
parent bda3098a31
commit 8ca525dc7a
No known key found for this signature in database
GPG Key ID: 05C7FFFC0845C930

View File

@ -46,7 +46,7 @@ export interface LLMUsage {
export interface LLMModel {
name: string;
available: boolean;
provider: LLMModelProvider;
provider?: LLMModelProvider;
}
export interface LLMModelProvider {