I am having this error:
Nest can't resolve dependencies of the TavilyService (?). Please make sure that the argument Object at index [0] is available in the TavilyModule context.
However the TavilyService is well set as providers in the module:
import { Module } from '@nestjs/common';
import { TavilyService } from './tavily.service';
@Module({
providers: [TavilyService],
exports: [TavilyService],
})
export class TavilyModule {}
And the TavilyService well exported:
@Injectable()
export class TavilyService {
Does anyone have an idea in order to solve the issue ?