Przeglądaj źródła

Merge pull request #10711 from jasonpnnl/send-usage-to-pipeline-outlet

fix: Include usage in chatCompleted handler for pipeline outlet functions
Timothy Jaeryang Baek 2 miesięcy temu
rodzic
commit
abf36c0645
1 zmienionych plików z 1 dodań i 0 usunięć
  1. 1 0
      src/lib/components/chat/Chat.svelte

+ 1 - 0
src/lib/components/chat/Chat.svelte

@@ -841,6 +841,7 @@
 				content: m.content,
 				info: m.info ? m.info : undefined,
 				timestamp: m.timestamp,
+				...(m.usage ? { usage: m.usage } : {}),
 				...(m.sources ? { sources: m.sources } : {})
 			})),
 			model_item: $models.find((m) => m.id === modelId),