Skip to content

Commit 9c6b7b9

Browse files
committed
chore: remove console.log
1 parent 22baa0e commit 9c6b7b9

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/lib/tokenizer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ export const getTokenCount = (messages: Array<Message>) => {
66
const input = messages.filter(
77
(m) => m.role !== "assistant" && typeof m.content === "string",
88
)
9-
console.log(input)
109
const output = messages.filter((m) => m.role === "assistant")
1110

1211
const inputTokens = countTokens(input)

0 commit comments

Comments
 (0)