ソースを参照

feat: updated show response type to include capabilities (#222)

Tushar Selvakumar 1 ヶ月 前
コミット
83682a7990
1 ファイル変更2 行追加1 行削除
  1. 2 1
      src/interfaces.ts

+ 2 - 1
src/interfaces.ts

@@ -247,7 +247,8 @@ export interface ShowResponse {
   details: ModelDetails
   messages: Message[]
   modified_at: Date
-  model_info: Map<string, any>
+  model_info: Map<string, any>,
+  capabilities: string[],
   projector_info?: Map<string, any>
 }