(str: string)
| 87 | } |
| 88 | |
| 89 | export function isJsonString(str: string) { |
| 90 | try { |
| 91 | JSON.parse(str); |
| 92 | } catch (e) { |
| 93 | return false; |
| 94 | } |
| 95 | return true; |
| 96 | } |
| 97 | |
| 98 | export function openAiCost( |
| 99 | messages: ChatGPTMessage[], |
no outgoing calls
no test coverage detected