ソースを参照

add logprobs in AiChoice

visuddhinanda 1 年間 前
コミット
6bdfe17de2
1 ファイル変更1 行追加0 行削除
  1. 1 0
      dashboard/src/components/api/ai.ts

+ 1 - 0
dashboard/src/components/api/ai.ts

@@ -16,6 +16,7 @@ export interface AiUsage {
 export interface AiChoice {
   index: number;
   message: AiMessage;
+  logprobs?: string | null; //volcengine
   finish_reason: string;
 }