(prompt: ChatGPTMessage[])
| 624 | } |
| 625 | |
| 626 | export function logPrompt(prompt: ChatGPTMessage[]): void { |
| 627 | console.log( |
| 628 | prompt.map((p) => `${p.role.toUpperCase()}\n${p.content}`).join("\n\n"), |
| 629 | ); |
| 630 | } |
| 631 | |
| 632 | export function range(start: number, end?: number): number[] { |
| 633 | /** Identical to basic usage of the Python range() function **/ |
no outgoing calls
no test coverage detected