浏览代码

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

Tushar Selvakumar 2 月之前
父节点
当前提交
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>
 }