Nick: gpt-4o

This commit is contained in:
Nicolas 2024-11-20 12:25:50 -08:00
parent d49f62fb56
commit 28696da6b2
2 changed files with 2 additions and 1 deletions

View File

@ -63,7 +63,7 @@ export async function generateOpenAICompletions(logger: Logger, options: Extract
let warning: string | undefined;
const openai = new OpenAI();
const model: TiktokenModel = (process.env.MODEL_NAME as TiktokenModel) ?? "gpt-4o-mini";
const model: TiktokenModel = (process.env.MODEL_NAME as TiktokenModel) ?? "gpt-4o";
if (markdown === undefined) {
throw new Error("document.markdown is undefined -- this is unexpected");

View File

@ -86,6 +86,7 @@ export interface CrawlScrapeOptions {
country?: string;
languages?: string[];
};
mobile?: boolean;
skipTlsVerification?: boolean;
removeBase64Images?: boolean;
}