(prompt: string)
| 416 | } |
| 417 | |
| 418 | async callClassificationApi(prompt: string): Promise<ProviderClassificationResponse> { |
| 419 | if (!this.isInitialized) { |
| 420 | await this.initialize(); |
| 421 | } |
| 422 | return this.executePythonScript(prompt, undefined, 'call_classification_api'); |
| 423 | } |
| 424 | |
| 425 | async shutdown(): Promise<void> { |
| 426 | if (this.pool) { |
nothing calls this directly
no test coverage detected