Skip to content

Commit

Permalink
Update index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
nickscamara authored Apr 17, 2024
1 parent ed5dc80 commit 27674a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/api/src/scraper/WebScraper/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export type WebScraperOptions = {
maxCrawledLinks?: number;
limit?: number;
generateImgAltText?: boolean;
generateImgAltTextModel?: "gpt-4-turbo" | "anthropic";
generateImgAltTextModel?: "gpt-4-turbo" | "claude-3-opus";
};
concurrentRequests?: number;
};
Expand All @@ -30,7 +30,7 @@ export class WebScraperDataProvider {
private limit: number = 10000;
private concurrentRequests: number = 20;
private generateImgAltText: boolean = false;
private generateImgAltTextModel: "gpt-4-turbo" | "anthropic" = "gpt-4-turbo";
private generateImgAltTextModel: "gpt-4-turbo" | "claude-3-opus" = "gpt-4-turbo";

authorize(): void {
throw new Error("Method not implemented.");
Expand Down

0 comments on commit 27674a6

Please sign in to comment.