| 20 | export type Claude3Message = Exclude<ChatGPTMessage, { role: "function" }>; |
| 21 | |
| 22 | export interface FunctionMessage { |
| 23 | role: "function"; |
| 24 | content: string; |
| 25 | name: string; |
| 26 | } |
| 27 | |
| 28 | export type GPTMessageInclSummary = |
| 29 | | { |
nothing calls this directly
no outgoing calls
no test coverage detected