| 7 | } |
| 8 | |
| 9 | export interface GenerationCostSummary { |
| 10 | kind: "estimate" | "actual"; |
| 11 | approximate: boolean; |
| 12 | amountUsd: number; |
| 13 | display: string; |
| 14 | pricingModel: string; |
| 15 | usage: GenerationTokenUsage; |
| 16 | note?: string; |
| 17 | } |
| 18 | |
| 19 | export interface GenerationStageUsage { |
| 20 | stage: "estimate" | "explanation" | "graph_attempt"; |
nothing calls this directly
no outgoing calls
no test coverage detected