This commit is contained in:
yanlong.wang 2025-04-07 16:49:41 +08:00
parent b7d32b9cbc
commit 9c59e4b438
No known key found for this signature in database
GPG Key ID: C0A623C0BADF9F37
3 changed files with 5 additions and 5 deletions

View File

@ -41,7 +41,7 @@ import {
} from '../services/errors';
import { countGPTToken as estimateToken } from '../shared/utils/openai';
import { ProxyProvider } from '../shared/services/proxy-provider';
import { ProxyProviderService } from '../shared/services/proxy-provider';
import { FirebaseStorageBucketControl } from '../shared/services/firebase-storage-bucket';
import { JinaEmbeddingsAuthDTO } from '../dto/jina-embeddings-auth';
import { RobotsTxtService } from '../services/robots-text';
@ -87,7 +87,7 @@ export class CrawlerHost extends RPCHost {
protected puppeteerControl: PuppeteerControl,
protected curlControl: CurlControl,
protected cfBrowserRendering: CFBrowserRendering,
protected proxyProvider: ProxyProvider,
protected proxyProvider: ProxyProviderService,
protected lmControl: LmControl,
protected jsdomControl: JSDomControl,
protected snapshotFormatter: SnapshotFormatter,

View File

@ -12,7 +12,7 @@ import { ApplicationError } from 'civkit/civ-rpc';
import { ServiceBadApproachError, ServiceBadAttemptError } from '../errors';
import { parseJSONText } from 'civkit/vectorize';
import { retryWith } from 'civkit/decorators';
import { ProxyProvider } from '../../shared/services/proxy-provider';
import { ProxyProviderService } from '../../shared/services/proxy-provider';
@singleton()
export class GoogleSERP extends AsyncService {
@ -24,7 +24,7 @@ export class GoogleSERP extends AsyncService {
protected puppeteerControl: SERPSpecializedPuppeteerControl,
protected jsDomControl: JSDomControl,
protected curlControl: CurlControl,
protected proxyProvider: ProxyProvider,
protected proxyProvider: ProxyProviderService,
) {
const filteredDeps = isMainThread ? arguments : _.without(arguments, puppeteerControl);
super(...filteredDeps);

@ -1 +1 @@
Subproject commit 424f50ca8b6277d74185e16aa67ff2b366d9f727
Subproject commit 95c88c0da1058144a86b736fde6bec8a861c2800