diff --git a/src/dto/crawler-options.ts b/src/dto/crawler-options.ts index 44cee6f..51de67e 100644 --- a/src/dto/crawler-options.ts +++ b/src/dto/crawler-options.ts @@ -128,7 +128,7 @@ class Viewport extends AutoCastable { schema: { type: 'string' } }, 'X-Proxy': { - description: `Use a proxy server provided by Jina AI.\n\nOptionally specify two-letter country code.`, + description: `Use a proxy server provided by us.\n\nOptionally specify two-letter country code.`, in: 'header', schema: { type: 'string' } }, diff --git a/src/services/lm.ts b/src/services/lm.ts index f7ff56b..9dc9c4e 100644 --- a/src/services/lm.ts +++ b/src/services/lm.ts @@ -80,7 +80,7 @@ export class LmControl extends AsyncService { prompt: `Extract the main content from the given HTML and convert it to Markdown format.\n\n${tripleBackTick}html\n${html}\n${tripleBackTick}\n`, options: { - // system: 'You are an AI assistant developed by Jina AI', + // system: 'You are an AI assistant developed by VENDOR_NAME', stream: true, modelSpecific: { top_k: 1, @@ -119,7 +119,7 @@ export class LmControl extends AsyncService { const it = this.commonLLM.iterRun('readerlm-v2', { prompt: `${instruction}\n\n${tripleBackTick}html\n${html}\n${tripleBackTick}\n${schema ? `The JSON schema:\n${tripleBackTick}json\n${schema}\n${tripleBackTick}\n` : ''}`, options: { - // system: 'You are an AI assistant developed by Jina AI', + // system: 'You are an AI assistant developed by VENDOR_NAME', stream: true, modelSpecific: { top_k: 1,