Load the model into memory. Must be called before summarize().
()
| 65 | export interface Summarizer { |
| 66 | /** Load the model into memory. Must be called before summarize(). */ |
| 67 | init(): Promise<void>; |
| 68 | |
| 69 | /** |
| 70 | * Generate a one-sentence summary for a code snippet. |
no outgoing calls