| 555 | async searchMusic(query: string, retryCount: number = 0): Promise<string> { |
| 556 | const model = await ConfigManager.get(CONFIG.KEYS.MODEL); |
| 557 | const url = `${this.baseUrl}/v1beta/models/${model}:generateContent`; |
| 558 | |
| 559 | // 获取准确率调节参数 |
| 560 | const temperature = parseFloat(await ConfigManager.get(CONFIG.KEYS.TEMPERATURE, "0.1")); |
nothing calls this directly
no outgoing calls
no test coverage detected