(state: any)
| 3794 | } |
| 3795 | |
| 3796 | private getCurrentProfileId(state: any): string { |
| 3797 | return ( |
| 3798 | state?.listApiConfigMeta?.find((profile: any) => profile.name === state?.currentApiConfigName)?.id ?? |
| 3799 | "default" |
| 3800 | ) |
| 3801 | } |
| 3802 | |
| 3803 | private async handleContextWindowExceededError(): Promise<void> { |
| 3804 | const state = await this.providerRef.deref()?.getState() |
no outgoing calls
no test coverage detected