| 78 | } |
| 79 | |
| 80 | export interface CachedResponse { |
| 81 | id: string; |
| 82 | cacheKey: string; |
| 83 | modelId: string; |
| 84 | completionId: string; |
| 85 | respPayload: Json; |
| 86 | inputTokens: number; |
| 87 | outputTokens: number; |
| 88 | projectId: string; |
| 89 | createdAt: Generated<Timestamp>; |
| 90 | } |
| 91 | |
| 92 | export interface CreditAdjustment { |
| 93 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected