(costUsd: number)
| 1469 | } |
| 1470 | |
| 1471 | function formatCost(costUsd: number): string { |
| 1472 | if (costUsd < 0.01) return '<0.01'; |
| 1473 | return costUsd.toFixed(2); |
| 1474 | } |
| 1475 | |
| 1476 | function appendAssistantText(state: MakaPiTranscriptState, messageId: string, text: string): void { |
| 1477 | const last = state.entries[state.entries.length - 1]; |
no outgoing calls
no test coverage detected