(part)
| 91 | return value |
| 92 | } |
| 93 | |
| 94 | function isInjectedSystemPart(part) { |
| 95 | return Boolean( |
| 96 | part && |
| 97 | typeof part === 'object' && |
| 98 | part.type === 'text' && |
| 99 | part.cache_control && |
| 100 | part.cache_control.type === 'ephemeral' && |
| 101 | typeof part.text === 'string' |
| 102 | ) |
| 103 | } |
| 104 | |
| 105 | function makeCliTextPart(text) { |
no outgoing calls
no test coverage detected