(content: MessagePart)
| 85 | } |
| 86 | |
| 87 | function countImageTokens(content: MessagePart): number { |
| 88 | if (content.type === "imageUrl") { |
| 89 | return 1024; |
| 90 | } |
| 91 | throw new Error("Non-image content type"); |
| 92 | } |
| 93 | |
| 94 | async function countTokensAsync( |
| 95 | content: MessageContent, |
no outgoing calls
no test coverage detected